/* ========================================
   RayWay Landing — 2026 Edition
   ======================================== */

:root {
  --c-amber: #f59e0b;
  --c-amber-hover: #d97706;
  --c-amber-soft: rgba(245, 158, 11, .08);
  --c-amber-glow: rgba(245, 158, 11, .18);
  --c-text: #18181b;
  --c-bg: #fafaf9;
  --c-surface: #fff;
  --c-muted: #71717a;
  --c-muted-light: #a1a1aa;
  --c-border: rgba(0, 0, 0, .06);
  --c-border-hover: rgba(0, 0, 0, .12);
  --c-success: #22c55e;
  --c-danger: #ef4444;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-display-cyr: 'Poiret One', cursive;
  --font-body-cyr: 'Raleway', sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---- UKRAINIAN FONT OVERRIDE ---- */
html[lang="uk"] {
  --font-display: 'Poiret One', cursive;
  --font-body: 'Raleway', sans-serif;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px }
::-webkit-scrollbar-track { background: transparent }
::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 99px }
::-webkit-scrollbar-thumb:hover { background: var(--c-amber) }
* { scrollbar-width: thin; scrollbar-color: #d4d4d8 transparent }

/* ---- BASE ---- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--c-bg);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
}

::selection {
  background: var(--c-amber);
  color: var(--c-text);
}

i {
  text-align: center;
}

.container { max-width: 1200px }

/* ---- HERO INTRO ANIMATION ---- */
@keyframes heroSweep {
  0%   { transform: translateX(-100%); opacity: 1 }
  60%  { opacity: 1 }
  100% { transform: translateX(100%); opacity: 0 }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); filter: blur(4px) }
  to   { opacity: 1; transform: translateY(0); filter: blur(0) }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(.96); filter: blur(6px) }
  to   { opacity: 1; transform: scale(1); filter: blur(0) }
}

@keyframes shimmer {
  0%   { background-position: -200% center }
  100% { background-position: 200% center }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-8px) }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--c-amber-glow) }
  50%      { box-shadow: 0 0 40px 8px var(--c-amber-glow) }
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 14px 40px;
  transition: all .4s var(--ease-out);
  animation: heroFadeUp .8s var(--ease-out) .2s both;
}

@media (max-width: 768px) {
  .site-nav { padding: 8px 12px }
}

.site-nav .nav-inner {
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 18px;
  padding: 10px 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 32px rgba(0, 0, 0, .03);
  transition: all .4s var(--ease-out);
}

@media (max-width: 768px) {
  .site-nav .nav-inner { padding: 10px 16px; border-radius: 14px }
}

.site-nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 12px 40px rgba(0, 0, 0, .06);
  border-color: var(--c-border);
}

.site-nav .nav-link {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: .02em;
  transition: color .25s;
  padding: 6px 2px;
  position: relative;
  text-decoration: none;
}

.site-nav .nav-link:hover { color: var(--c-text) }

.site-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

.site-nav .nav-link:hover::after { transform: scaleX(1) }

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: -.03em;
}

.nav-logo img { 
  height: 34px;
  margin-right: 12px 
}
.nav-logo span { color: var(--c-amber) }

.nav-cta {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  background: var(--c-text);
  color: var(--c-surface);
  padding: 9px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  letter-spacing: .01em;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), background .25s, color .25s;
}

.nav-cta:hover {
  background: var(--c-amber);
  color: var(--c-text);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px var(--c-amber-glow);
}

.nav-cta:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 2px 6px var(--c-amber-glow);
  transition-duration: .1s;
}

.nav-lang {
  font-size: .75rem;
  color: var(--c-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
  background: var(--c-amber-soft);
  padding: 4px 10px;
  border-radius: 50px;
}

.nav-lang:hover { color: var(--c-text); background: var(--c-amber-glow) }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-bg) url("../img/hero-image.446c22567074.png") no-repeat right center / cover;
  padding-left: 30px;
  padding-right: 30px;
}

/* Overlay to keep text readable over background image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 250, 249, .96) 0%,
    rgba(250, 250, 249, .88) 35%,
    rgba(250, 250, 249, .55) 65%,
    rgba(250, 250, 249, .3) 100%
  );
  pointer-events: none;
}

@media (max-width: 991px) {
  .hero::before {
    background: linear-gradient(
      to right,
      rgba(250, 250, 249, .96) 0%,
      rgba(250, 250, 249, .8) 100%
    );
  }
}

/* Light ray sweep */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(245, 158, 11, .12) 45%,
    rgba(245, 158, 11, .2) 50%,
    rgba(245, 158, 11, .12) 55%,
    transparent 70%);
  animation: heroSweep 1.4s var(--ease-out) .1s both;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero { 
  padding: 130px 30px 70px; min-height: auto 
}
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 50px;
  padding: 6px 18px 6px 8px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--c-muted);
  margin-bottom: 28px;
  animation: heroFadeUp .8s var(--ease-out) .5s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-amber);
  animation: pulseGlow 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, .4);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.06;
  letter-spacing: -.04em;
  animation: heroFadeUp .9s var(--ease-out) .6s both;
}

/* Shimmer on the brand name in hero */
.hero-sub {
  font-size: 1.1rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
  animation: heroFadeUp .9s var(--ease-out) .8s both;
}

.hero-actions {
  animation: heroFadeUp .9s var(--ease-out) 1s both;
}

.hero-video-wrap {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1s var(--ease-out) .9s both;
}

.hero-video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
  background: var(--c-surface);
  box-shadow: 0 4px 6px rgba(0, 0, 0, .03), 0 20px 60px rgba(0, 0, 0, .06);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}

.hero-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, .03), 0 24px 72px rgba(0, 0, 0, .1);
}

/* Amber glow behind video */
.hero-video::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--c-amber-glow), transparent 60%);
  z-index: -1;
}

.hero-video-inner {
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.hero-video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating stat pills around video */
.hero-float {
  position: absolute;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  z-index: 3;
  animation: floatSoft 4s ease-in-out infinite;
  white-space: nowrap;
}

.hero-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}

.hero-float-1 {
  top: 8%;
  right: -16px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 12%;
  left: -20px;
  animation-delay: 1.5s;
}

.hero-float-1 .hero-float-icon { background: rgba(34, 197, 94, .1); color: #16a34a }
.hero-float-2 .hero-float-icon { background: var(--c-amber-soft); color: var(--c-amber-hover) }

@media (max-width: 991px) {
  .hero-float { display: none }
}

/* Changing words */
.word-track {
  display: block;
  min-height: 1.15em;
  position: relative;
  color: var(--c-amber);
}

.word-track span {
  display: block;
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(100%) scale(.95);
  filter: blur(4px);
  transition: none;
}

.word-track span.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  position: relative;
  animation: wordIn .5s var(--ease-out);
}

.word-track span.exit {
  opacity: 0;
  position: absolute;
  animation: wordOut .35s ease-in forwards;
}

@keyframes wordIn {
  from { opacity: 0; transform: translateY(50%) scale(.95); filter: blur(4px) }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) }
}

@keyframes wordOut {
  from { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) }
  to   { opacity: 0; transform: translateY(-40%) scale(.95); filter: blur(4px) }
}

/* Hero buttons */
.btn-hero {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), background .25s, color .25s, border-color .25s;
}

/* Arrow nudge on hover */
.btn-hero i,
.btn-hero .fa-arrow-right {
  transition: transform .35s var(--ease-spring);
}

.btn-hero:hover i,
.btn-hero:hover .fa-arrow-right {
  transform: translateX(4px);
}

.btn-hero-primary {
  background: var(--c-amber);
  color: var(--c-text);
  border: none;
  box-shadow: 0 2px 8px var(--c-amber-glow);
}

.btn-hero-primary:hover {
  background: var(--c-text);
  color: var(--c-surface);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

.btn-hero-primary:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 2px 8px var(--c-amber-glow);
  transition-duration: .1s;
}

.btn-hero-ghost {
  background: transparent;
  color: var(--c-muted);
  border: 1.5px solid var(--c-border-hover);
}

.btn-hero-ghost:hover {
  color: var(--c-text);
  border-color: var(--c-text);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.btn-hero-ghost:active {
  transform: translateY(0) scale(.97);
  box-shadow: none;
  transition-duration: .1s;
}

/* ---- SECTIONS ---- */
.sec {
  padding-top: 130px;
  padding-bottom: 130px;
  position: relative;
}

section {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 768px) {
    .sec { 
        padding-top: 80px;
        padding-bottom: 80px;
    }

    section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.sec-alt {
  background: var(--c-surface);
}

.sec-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sec-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
}

.sec-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 540px;
}

/* ---- BENEFITS ---- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-border);
}

.benefit-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--c-border);
  transition: all .3s var(--ease-out);
  position: relative;
}

.benefit-row:hover {
  padding-left: 12px;
}

.benefit-row:hover .benefit-num {
  color: var(--c-text);
  background: var(--c-amber);
}

.benefit-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-amber-soft);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all .3s var(--ease-out);
  letter-spacing: 0;
}

.benefit-content h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.benefit-content p {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

@media (min-width: 768px) {
  .benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: none;
    gap: 0;
  }
  .benefit-row {
    border-bottom: 1px solid var(--c-border);
    border-top: 1px solid var(--c-border);
    margin-top: -1px;
  }
  .benefit-row:nth-child(odd) {
    border-right: 1px solid var(--c-border);
    padding-right: 36px;
  }
  .benefit-row:nth-child(even) {
    padding-left: 36px;
  }
  .benefit-row:hover {
    padding-left: 12px;
  }
  .benefit-row:nth-child(even):hover {
    padding-left: 48px;
  }
}

/* ---- MODULES ---- */
#modules, #contact {
  background-image: radial-gradient(circle, rgba(0, 0, 0, .16) 1.3px, transparent 1.3px);
  background-size: 24px 24px;
}

.mod-block {
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.mod-block:last-child { margin-bottom: 0 }

.mod-num {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -20px;
  left: 12px;
  user-select: none;
  pointer-events: none;
}

html[lang="uk"] .mod-num {
  top: -2px;
}

.mod-num-right { left: auto; right: 12px }

@media (max-width: 768px) {
  .mod-num { font-size: 3.5rem; top: -10px; right: 12px; left: auto }
}

.mod-inner {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s var(--ease-out);
}

.mod-inner:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, .06);
  border-color: var(--c-border-hover);
}

.mod-text {
  padding: 40px 36px;
}

@media (max-width: 768px) {
  .mod-text { padding: 28px 24px }
}

.mod-label {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 12px;
  display: block;
}

.mod-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.mod-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.mod-feat-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--c-amber-soft);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  margin-top: 1px;
}

.mod-feat span {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.55;
}

.mod-img {
  border-radius: 0;
  background: linear-gradient(135deg, var(--c-bg) 0%, rgba(245,158,11,.04) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.mod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mod-subtext p {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- STEPS ---- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

@media (max-width: 768px) {
  .steps-row { grid-template-columns: 1fr; gap: 0 }
}

.step-item {
  padding: 40px 36px;
  position: relative;
  border-left: 1px solid var(--c-border);
  transition: background .3s var(--ease-out);
}

.step-item:first-child { border-left: none }

@media (max-width: 768px) {
  .step-item {
    border-left: none;
    border-bottom: 1px solid var(--c-border);
    padding: 32px 0;
  }
  .step-item:last-child { border-bottom: none }
}

.step-item:hover { background: rgba(245, 158, 11, .03) }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-amber);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  transition: all .3s var(--ease-out);
}

.step-item:hover .step-num {
  transform: translateX(4px);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 280px;
}

/* ---- CONTACT ---- */
.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .03);
}

.contact-info-side {
  background: var(--c-bg);
  padding: 48px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
}

@media (max-width: 991px) {
  .contact-info-side { border-radius: var(--radius) var(--radius) 0 0 }
}

@media (max-width: 768px) {
  .contact-info-side { padding: 32px 24px }
}

.contact-form-side {
  padding: 48px;
}

@media (max-width: 768px) {
  .contact-form-side { padding: 32px 24px }
}

.contact-form .form-control,
.contact-form .form-select {
  font-family: var(--font-body);
  border: 1.5px solid var(--c-border-hover);
  border-radius: var(--radius-xs);
  padding: 13px 16px;
  font-size: .9rem;
  background: var(--c-bg);
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 4px var(--c-amber-soft);
  background: var(--c-surface);
}

.contact-form .form-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 6px;
  color: var(--c-text);
}

.contact-form .form-check-input:checked {
  background-color: var(--c-amber);
  border-color: var(--c-amber);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-xs);
  background: var(--c-amber-soft);
  color: var(--c-amber-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all .3s var(--ease-out);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--c-amber);
  color: var(--c-text);
}

.contact-info-label {
  font-size: .7rem;
  color: var(--c-muted-light);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-info-value {
  font-weight: 600;
  font-size: .92rem;
}

.btn-submit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  background: var(--c-text);
  color: var(--c-surface);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  width: 100%;
  cursor: pointer;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), background .25s, color .25s;
}

.btn-submit:hover {
  background: var(--c-amber);
  color: var(--c-text);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px var(--c-amber-glow);
}

.btn-submit:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 2px 6px var(--c-amber-glow);
  transition-duration: .1s;
}

/* ---- FAQ ---- */
.faq-search {
  position: relative;
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .85rem;
  color: var(--c-muted-light);
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 14px 18px 14px 46px;
  border: 1.5px solid var(--c-border-hover);
  border-radius: 50px;
  background: var(--c-surface);
  color: var(--c-text);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

.faq-search-input:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 4px var(--c-amber-soft);
}

.faq-search-input::placeholder {
  color: var(--c-muted-light);
}

.faq-no-results {
  text-align: center;
  font-size: .88rem;
  color: var(--c-muted);
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--c-border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  transition: color .25s;
}

.faq-q:hover {
  color: var(--c-amber-hover);
}

.faq-arrow {
  font-size: .7rem;
  color: var(--c-muted-light);
  transition: transform .3s var(--ease-out), color .25s;
  min-width: 16px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--c-amber);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .35s var(--ease-out);
  padding: 0 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 0 20px;
}

.faq-a p {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--c-surface);
  color: var(--c-text);
  padding: 80px 30px 40px;
  border-top: 1px solid var(--c-border);
}

.site-footer a {
  color: var(--c-muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color .25s;
}

.site-footer a:hover { color: var(--c-text) }

.footer-label {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-muted-light);
  margin-bottom: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.03em;
}

.footer-logo img { height: 28px }
.footer-logo span { color: var(--c-amber) }
.footer-copy { font-size: .78rem; color: var(--c-muted-light) }

/* ---- POLICY MODAL ---- */
.policy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.policy-overlay.open { display: flex }

.policy-box {
  background: var(--c-surface);
  border-radius: var(--radius);
  max-width: 600px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  padding: 44px;
  position: relative;
}

.policy-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--c-muted);
  cursor: pointer;
  transition: all .25s var(--ease-out);
}

.policy-close:hover {
  background: var(--c-amber);
  color: var(--c-text);
  border-color: var(--c-amber);
}

/* ---- SCROLL REVEAL ---- */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.rv-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.rv-l.vis {
  opacity: 1;
  transform: translateX(0);
}

.rv-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.rv-r.vis {
  opacity: 1;
  transform: translateX(0);
}

/* ---- OFFCANVAS ---- */
.offcanvas {
  background: var(--c-surface);
  z-index: 1060;
  border: none;
}

.offcanvas-backdrop { z-index: 1055 }

.offcanvas a {
  color: var(--c-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color .2s;
}

.offcanvas a:hover { color: var(--c-text) }
.offcanvas .nav-cta { color: var(--c-surface) }
.offcanvas .nav-cta:hover { color: var(--c-text) }

.mob-link {
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid var(--c-border);
}

/* ---- PRICING ---- */
#pricing {
  background-image: radial-gradient(circle, rgba(0, 0, 0, .16) 1.3px, transparent 1.3px);
  background-size: 24px 24px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-muted);
}

.pricing-switch {
  position: relative;
  width: 48px;
  height: 26px;
  display: inline-block;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--c-border-hover);
  border-radius: 50px;
  cursor: pointer;
  transition: background .3s var(--ease-out);
}

.pricing-switch-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-surface);
  top: 3px;
  left: 3px;
  transition: transform .3s var(--ease-spring);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.pricing-switch input:checked + .pricing-switch-slider {
  background: var(--c-amber);
}

.pricing-switch input:checked + .pricing-switch-slider::before {
  transform: translateX(22px);
}

.pricing-save-badge {
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--c-amber);
  color: var(--c-text);
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .02em;
}

.pricing-trial {
  margin: 12px 0 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-amber-hover);
  letter-spacing: .01em;
}

/* Cards */
.pricing-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all .35s var(--ease-out);
}

.pricing-card:hover {
  border-color: var(--c-border-hover);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .06);
}

.pricing-card-featured {
  border-color: var(--c-amber);
  box-shadow: 0 4px 24px var(--c-amber-glow);
}

.pricing-card-featured:hover {
  border-color: var(--c-amber);
  box-shadow: 0 16px 56px var(--c-amber-glow);
}

.pricing-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--c-amber);
  color: var(--c-text);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  display: block;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  transition: all .3s var(--ease-out);
}

.pricing-currency {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-muted);
}

.pricing-period {
  font-size: .85rem;
  color: var(--c-muted-light);
}

.pricing-plan-desc {
  font-size: .82rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}

/* Features */
.pricing-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--c-text);
}

.pricing-feat i {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--c-amber-soft);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
}

.pricing-extend {
  font-size: .8rem;
  color: var(--c-amber-hover);
  font-weight: 500;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
  line-height: 1.5;
}

.pricing-feat-sms {
  color: var(--c-muted);
  font-size: .82rem;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.pricing-feat-sms i {
  background: var(--c-amber-soft);
  color: var(--c-amber);
}

/* CTA */
.pricing-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid var(--c-border-hover);
  color: var(--c-text);
  background: transparent;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), background .25s, color .25s, border-color .25s;
}

.pricing-cta:hover {
  background: var(--c-text);
  color: var(--c-surface);
  border-color: var(--c-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.pricing-cta:active {
  transform: translateY(0) scale(.97);
  transition-duration: .1s;
}

.pricing-cta-featured {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: var(--c-text);
  box-shadow: 0 2px 8px var(--c-amber-glow);
}

.pricing-cta-featured:hover {
  background: var(--c-text);
  color: var(--c-surface);
  border-color: var(--c-text);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

/* Add-ons */
.pricing-addons {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
}

.pricing-addons h5 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.pricing-addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .pricing-addons-grid { grid-template-columns: repeat(2, 1fr) }
  .pricing-addons { padding: 24px }
}

@media (max-width: 480px) {
  .pricing-addons-grid { grid-template-columns: 1fr }
}

.pricing-addon {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  transition: all .25s var(--ease-out);
}

.pricing-addon:hover {
  border-color: var(--c-border-hover);
  background: var(--c-bg);
}

.pricing-addon-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--c-amber-soft);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

.pricing-addon-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-addon-name {
  font-size: .82rem;
  font-weight: 600;
}

.pricing-addon-price {
  font-size: .78rem;
  color: var(--c-muted);
  font-weight: 500;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  .rv, .rv-l, .rv-r { opacity: 1; transform: none; transition: none }
  .word-track span.active, .word-track span.exit { animation: none }
  .bento-card:hover, .step-card:hover { transform: none }
  .btn-hero:hover, .btn-hero:active,
  .btn-submit:hover, .btn-submit:active,
  .nav-cta:hover, .nav-cta:active { transform: none }
  .btn-hero i, .btn-hero .fa-arrow-right { transition: none }
  .hero::after { animation: none; display: none }
  .hero h1, .hero-sub, .hero-actions, .hero-badge, .hero-video-wrap, .site-nav {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero-float { animation: none }
}
