


.rfx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--rfx-font-head);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.rfx-btn:active {
  transform: scale(0.95);
}

.rfx-btn-primary {
  background-color: #C72F00;
  color: var(--rfx-white);
}

.rfx-btn-primary:hover {
  background-color: #A02600;
}

.rfx-btn-outline {
  border: 2px solid var(--rfx-white);
  color: var(--rfx-white);
}

.rfx-btn-outline:hover {
  background-color: var(--rfx-white);
  color: var(--rfx-secondary);
}


.rfx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.rfx-header.rfx-hidden-up {
  transform: translateY(-100%);
}

.rfx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rfx-logo {
  display: flex;
  align-items: center;
}

.rfx-logo svg {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.rfx-logo:hover svg {
  transform: scale(1.05);
}

.rfx-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.rfx-nav-link {
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  color: var(--rfx-secondary);
}

.rfx-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--rfx-primary);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.rfx-nav-link:hover::after {
  transform: translateX(0);
}

.rfx-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rfx-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  cursor: pointer;
  z-index: 1001;
}

.rfx-burger span {
  width: 100%;
  height: 3px;
  background: var(--rfx-secondary);
  transition: 0.3s;
}


.rfx-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  visibility: hidden;
}

.rfx-mobile-menu.rfx-active {
  transform: translateY(0);
  visibility: visible;
}

.rfx-mobile-menu .rfx-nav-link {
  color: var(--rfx-white);
  font-size: 1.7rem;
  font-family: var(--rfx-font-head);
  opacity: 0;
  transform: translateY(20px);
}

.rfx-mobile-menu.rfx-active .rfx-nav-link {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}

.rfx-burger {
  position: relative;
  z-index: 1001;
}

.rfx-burger.rfx-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--rfx-secondary);
}

.rfx-burger.rfx-active span:nth-child(2) {
  opacity: 0;
}

.rfx-burger.rfx-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--rfx-secondary);
}


.rfx-footer {
  background-color: var(--rfx-secondary);
  color: var(--rfx-white);
  padding: 80px 0 40px;
}

.rfx-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.rfx-footer-brand {
  font-family: var(--rfx-font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--rfx-white);
  margin: 0 0 15px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.rfx-footer-heading {
  color: var(--rfx-accent);
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-family: var(--rfx-font-head);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.rfx-footer-col h4 {
  color: var(--rfx-accent);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.rfx-footer-col p:not(.rfx-footer-brand):not(.rfx-footer-heading),
.rfx-footer-col a {
  color: #C4C4C4;
  margin-bottom: 12px;
  display: block;
  font-size: 1rem;
  transition: color 0.3s;
  text-decoration: none;
}

.rfx-footer-col p.rfx-footer-brand,
.rfx-footer-col p.rfx-footer-heading {
  display: block;
}

.rfx-footer-col a:hover {
  color: var(--rfx-white);
}

.rfx-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.rfx-socials svg {
  width: 24px;
  height: 24px;
  fill: var(--rfx-white);
  transition: fill 0.3s, transform 0.3s;
}

.rfx-socials a:hover svg {
  fill: var(--rfx-accent);
  transform: translateY(-3px);
}

.rfx-footer-bottom {
  border-top: 1px solid var(--rfx-border-dark);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.875rem;
  color: #C4C4C4;
}

.rfx-footer-bottom p {
  color: #C4C4C4;
  margin: 0;
}

.rfx-footer-bottom a {
  color: #C4C4C4;
}

.rfx-footer-bottom a:hover {
  color: var(--rfx-white);
}

.rfx-footer-legal-link {
  color: inherit;
  text-decoration: none;
}

.rfx-footer-payments {
  display: flex;
  gap: 16px;
}

.rfx-footer-payments svg {
  height: 24px;
  fill: #BDBDBD;
  width: auto;
}


.rfx-cursor-dot,
.rfx-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rfx-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--rfx-primary);
}

.rfx-cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--rfx-primary);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}


.rfx-chatbot-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #C72F00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 10px 20px rgba(255, 59, 0, 0.3);
  animation: rfxPulse 2s infinite;
}

.rfx-chatbot-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--rfx-white);
}

.rfx-chat-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: var(--rfx-white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 900;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rfx-chat-panel.rfx-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.rfx-chat-header {
  background: var(--rfx-secondary);
  color: var(--rfx-white);
  padding: 16px;
  font-family: var(--rfx-font-head);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rfx-chat-close {
  cursor: pointer;
  fill: var(--rfx-white);
}

.rfx-chat-body {
  height: 400px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f9f9f9;
}

.rfx-chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.rfx-chat-msg-bot {
  background: #e9e9e9;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.rfx-chat-msg-user {
  background: var(--rfx-primary);
  color: var(--rfx-white);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.rfx-chat-input-area {
  display: flex;
  border-top: 1px solid var(--rfx-border);
  background: var(--rfx-white);
}

.rfx-chat-input {
  flex: 1;
  border: none;
  padding: 16px;
  font-family: inherit;
  outline: none;
}

.rfx-chat-send {
  background: none;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}

.rfx-chat-send svg {
  fill: var(--rfx-primary);
  width: 24px;
  height: 24px;
}


.rfx-form-group {
  position: relative;
  margin-bottom: 24px;
}

.rfx-form-control {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 2px solid var(--rfx-border);
  font-family: inherit;
  font-size: 1.1rem;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}

.rfx-form-control:focus {
  border-bottom-color: var(--rfx-primary);
}

.rfx-form-label {
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--rfx-text-muted);
  pointer-events: none;
  transition: all 0.3s;
}

.rfx-form-control:focus~.rfx-form-label,
.rfx-form-control:not(:placeholder-shown)~.rfx-form-label {
  top: -12px;
  font-size: 0.8rem;
  color: var(--rfx-primary);
}

.rfx-success-msg {
  display: none;
  background: var(--rfx-success);
  color: var(--rfx-secondary);
  padding: 16px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 16px;
  text-align: center;
}


.rfx-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--rfx-secondary);
  color: var(--rfx-white);
  padding: 24px;
  z-index: 10000;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@keyframes rfxPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 59, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 0, 0);
  }
}


@media (max-width: 991px) {

  .rfx-nav,
  .rfx-header-actions .rfx-btn {
    display: none;
  }

  .rfx-burger {
    display: flex;
  }

  .rfx-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .rfx-footer-grid {
    grid-template-columns: 1fr;
  }

  .rfx-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}