/* ============================================
   BITAN REMOTE SOLUTION - Light Theme + Animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg:            #f4f7fb;
  --bg-soft:       #ffffff;
  --bg-card:       #ffffff;
  --bg-card-hi:    #ffffff;
  --line:          #e3e9f2;
  --line-soft:     #eef2f8;
  --text:          #16203a;
  --text-soft:     #51607d;
  --text-dim:      #8c98ad;
  --accent:        #0fae8e;        /* deep teal - readable on light */
  --accent-bright: #2bd9b6;        /* bright teal - for gradients/bg */
  --accent-2:      #3b6fe0;        /* blue */
  --accent-glow:   rgba(15, 174, 142, 0.30);
  --warn:          #e8973a;
  --danger:        #e25555;
  --radius:        18px;
  --radius-sm:     12px;
  --maxw:          1180px;
  --shadow-sm:     0 4px 14px -6px rgba(22, 32, 58, 0.12);
  --shadow:        0 22px 48px -18px rgba(22, 32, 58, 0.22);
  --shadow-lg:     0 38px 80px -24px rgba(22, 32, 58, 0.30);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmospheric animated background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(680px circle at 10% 6%, rgba(59,111,224,0.10), transparent 60%),
    radial-gradient(720px circle at 92% 14%, rgba(43,217,182,0.13), transparent 60%),
    radial-gradient(900px circle at 50% 112%, rgba(59,111,224,0.08), transparent 60%);
  z-index: -2;
  pointer-events: none;
  animation: bgShift 18s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%,1.5%,0) scale(1.06); }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,32,58,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,32,58,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent-text { color: var(--accent); }
.gradient-text {
  background: linear-gradient(115deg, var(--accent) 8%, var(--accent-2) 92%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradFlow 6s ease infinite;
}
@keyframes gradFlow {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--line);
  animation: slideDown 0.6s cubic-bezier(0.22,1,0.36,1);
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-2));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px -6px var(--accent-glow);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.brand:hover .brand-mark { transform: rotate(-12deg) scale(1.08); }
.brand-mark svg { width: 21px; height: 21px; }
.brand small { display: block; font-size: 0.62rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0.14em; text-transform: uppercase; margin-top: -2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  position: relative;
  padding: 9px 15px;
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: scaleX(1); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 140%; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-2));
  color: #042b22;
  box-shadow: 0 12px 28px -10px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 38px -10px var(--accent-glow); }
.btn-ghost {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px) scale(1.02); border-color: var(--accent); box-shadow: var(--shadow); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

.nav-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 9px;
  width: 42px; height: 42px;
  cursor: pointer;
  color: var(--text);
  transition: transform 0.2s;
}
.nav-toggle:hover { transform: scale(1.06); }
.nav-toggle svg { width: 20px; height: 20px; margin: 0 auto; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 92px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
/* staggered entrance */
.hero-text > * { opacity: 0; animation: heroIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.10s; }
.hero-text > *:nth-child(2) { animation-delay: 0.20s; }
.hero-text > *:nth-child(3) { animation-delay: 0.30s; }
.hero-text > *:nth-child(4) { animation-delay: 0.40s; }
.hero-text > *:nth-child(5) { animation-delay: 0.50s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-visual { opacity: 0; animation: heroVisualIn 1s cubic-bezier(0.22,1,0.36,1) 0.35s forwards; }
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(34px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%      { box-shadow: 0 0 0 7px rgba(15,174,142,0); }
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 1.14rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-meta strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  display: block;
  color: var(--accent);
}
.hero-meta span { font-size: 0.85rem; color: var(--text-dim); }

/* Hero visual mockup */
.hero-visual { position: relative; }
.window {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.hero-visual:hover .window { transform: translateY(-6px) rotate(-0.6deg); }
.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.window-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.window-bar .d:nth-child(1) { background: #ff5f57; }
.window-bar .d:nth-child(2) { background: #febc2e; }
.window-bar .d:nth-child(3) { background: #28c840; }
.window-bar .title { margin-left: 10px; font-size: 0.8rem; color: var(--text-dim); }
.window-body { padding: 22px; }

.id-row { display: flex; gap: 12px; margin-bottom: 16px; }
.id-box {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.id-box label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); }
.id-box .val {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 4px;
  color: var(--accent);
}
.id-box.alt .val { color: var(--accent-2); }
.connect-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
}
.connect-bar .field { flex: 1; font-size: 0.9rem; color: var(--text-dim); }
.connect-bar .go {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-2));
  color: #042b22;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 8px;
}
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.float-card .ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-1 { top: -22px; right: -18px; animation: floaty 5s ease-in-out infinite; }
.float-2 { bottom: -24px; left: -22px; animation: floaty 5s ease-in-out infinite 1.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-13px) rotate(1.5deg); }
}

/* ============ SECTIONS ============ */
.section { padding: 84px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 54px;
}
.section-head .pill { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

.kicker {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ============ FEATURE GRID ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s, border-color 0.32s;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(43,217,182,0.08), rgba(59,111,224,0.06));
  opacity: 0;
  transition: opacity 0.32s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(15,174,142,0.35);
  box-shadow: var(--shadow);
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43,217,182,0.16), rgba(59,111,224,0.16));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.card:hover .ico { transform: scale(1.12) rotate(-8deg); }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { color: var(--text-soft); font-size: 0.96rem; }

/* ============ COMPARISON BAND ============ */
.compare {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-col {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s;
}
.compare-col:hover { transform: translateY(-4px); }
.compare-col.bad { background: var(--bg-card); box-shadow: var(--shadow-sm); }
.compare-col.good {
  background: linear-gradient(160deg, rgba(43,217,182,0.12), rgba(59,111,224,0.08));
  border-color: rgba(15,174,142,0.4);
  box-shadow: var(--shadow);
}
.compare-col h3 { font-size: 1.25rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.compare-col ul { list-style: none; }
.compare-col li {
  display: flex; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.97rem;
  color: var(--text-soft);
}
.compare-col li:last-child { border-bottom: none; }
.tick { color: var(--accent); flex-shrink: 0; font-weight: 700; }
.cross { color: var(--danger); flex-shrink: 0; font-weight: 700; }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.step:hover::before { transform: scaleX(1); }
.step .num {
  counter-increment: step;
  font-family: 'Sora', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}
.step .num::before { content: "0" counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.94rem; }

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  background: linear-gradient(140deg, #16203a, #1d2c52);
  border-radius: 24px;
  padding: 56px 44px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(360px circle at 20% 30%, rgba(43,217,182,0.30), transparent 60%),
    radial-gradient(360px circle at 80% 70%, rgba(59,111,224,0.30), transparent 60%);
  animation: ctaGlow 10s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  0%   { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(6%,-4%) rotate(8deg); }
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; color: #fff; }
.cta-band p { color: #b9c4dc; font-size: 1.06rem; max-width: 520px; margin: 0 auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ============ PAGE HEADER ============ */
.page-head {
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-head h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 14px;
  animation: heroIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.page-head p {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto;
  animation: heroIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.22s both;
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  animation: heroIn 0.6s ease 0s both;
}
.breadcrumb a:hover { color: var(--accent); }

/* ============ DOWNLOAD PAGE ============ */
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s, border-color 0.32s;
}
.dl-card:hover { transform: translateY(-8px); border-color: rgba(15,174,142,0.4); box-shadow: var(--shadow); }
.dl-card .os-ico {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43,217,182,0.14), rgba(59,111,224,0.14));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.dl-card:hover .os-ico { transform: scale(1.1) rotate(-6deg); }
.dl-card .os-ico svg { width: 32px; height: 32px; }
.dl-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.dl-card .ver { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 18px; }
.dl-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.dl-card .req { font-size: 0.78rem; color: var(--text-dim); }

/* ============ PRICING ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.featured {
  background: linear-gradient(165deg, rgba(43,217,182,0.12), rgba(59,111,224,0.08));
  border-color: rgba(15,174,142,0.45);
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-2));
  color: #042b22;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .ptag { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 20px; }
.price-card .amount {
  font-family: 'Sora', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.price-card .amount small { font-size: 0.95rem; color: var(--text-dim); font-weight: 500; }
.price-card .per { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 22px; }
.price-card ul { list-style: none; margin-bottom: 26px; flex: 1; }
.price-card li {
  display: flex; gap: 10px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--text-soft);
}
.price-card .btn { width: 100%; justify-content: center; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open { border-color: rgba(15,174,142,0.4); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 19px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .chev { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.34s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--text-soft); font-size: 0.96rem; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px; }
.contact-info .info-row {
  display: flex;
  gap: 15px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.contact-info .info-row:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact-info .info-row .ic {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(43,217,182,0.16), rgba(59,111,224,0.16));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info .info-row h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info .info-row a, .contact-info .info-row span { color: var(--text-soft); font-size: 0.92rem; }
.contact-info .info-row a:hover { color: var(--accent); }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field-group { margin-bottom: 18px; }
.field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--text-soft);
}
.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.field-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; text-align: center; }

/* ============ FEATURE SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.split:last-child { margin-bottom: 0; }
.split.reverse .split-text { order: 2; }
.split-text h3 { font-size: 1.7rem; margin-bottom: 14px; }
.split-text p { color: var(--text-soft); margin-bottom: 18px; }
.split-text ul { list-style: none; }
.split-text li {
  display: flex; gap: 11px;
  padding: 7px 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}
.split-visual {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 260px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.split:hover .split-visual { transform: translateY(-6px) scale(1.01); }
.split-visual svg { animation: floaty 6s ease-in-out infinite; }

/* ============ STATS BAND ============ */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center;
  padding: 26px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat strong {
  font-family: 'Sora', sans-serif;
  font-size: 2.3rem;
  display: block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { font-size: 0.88rem; color: var(--text-dim); }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 56px 0 26px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 38px;
}
.footer-brand p { color: var(--text-soft); font-size: 0.92rem; margin: 14px 0; max-width: 280px; }
.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: var(--text-soft);
  font-size: 0.92rem;
  transition: color 0.18s, padding-left 0.18s;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.footer-bottom .socials a:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(43,217,182,0.12), rgba(59,111,224,0.12));
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .grid-3, .steps, .dl-grid, .price-grid { grid-template-columns: 1fr; }
  .grid-4, .stat-band { grid-template-columns: repeat(2, 1fr); }
  .compare-grid, .contact-grid, .split { grid-template-columns: 1fr; gap: 26px; }
  .split.reverse .split-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px 24px 22px;
    gap: 4px;
    transform: translateY(-130%);
    transition: transform 0.34s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 14px; }
  .nav-links a::after { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: grid; place-items: center; }
}
@media (max-width: 540px) {
  .grid-4, .stat-band, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 56px; }
  .float-card { display: none; }
}
