/* =====================================================
   SendRix — Light Theme
   Blue: #1A6DFF  |  Purple: #7B2FBE  |  Bg: #F4F7FF
   ===================================================== */

:root {
  --blue:        #1A6DFF;
  --blue-dark:   #1258D6;
  --blue-light:  #EEF4FF;
  --purple:      #7B2FBE;
  --purple-light:#F3EEFF;
  --grad:        linear-gradient(135deg, #1A6DFF 0%, #7B2FBE 100%);
  --grad-soft:   linear-gradient(135deg, rgba(26,109,255,0.08) 0%, rgba(123,47,190,0.08) 100%);
  --navy:        #0D1540;
  --text:        #0F172A;
  --text-mid:    #334155;
  --text-muted:  #64748B;
  --bg:          #FFFFFF;
  --bg-alt:      #F4F7FF;
  --bg-card:     #FFFFFF;
  --border:      rgba(15,23,42,0.08);
  --border-blue: rgba(26,109,255,0.18);
  --shadow-sm:   0 2px 12px rgba(15,23,42,0.06);
  --shadow-md:   0 8px 32px rgba(15,23,42,0.10);
  --shadow-lg:   0 20px 60px rgba(15,23,42,0.12);
  --shadow-blue: 0 8px 32px rgba(26,109,255,0.25);
  --radius:      14px;
  --radius-lg:   22px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* NO scroll-behavior: smooth here — handled purely in JS to prevent auto-scroll-up bug */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  /* Prevent browser scroll-anchoring from jumping when typewriter changes h1 height */
  overflow-anchor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(26,109,255,0.15); }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s infinite;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,109,255,0.35); color: #fff; }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--bg-alt);
  border-color: rgba(15,23,42,0.2);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}
#navbar .navbar-brand img { height: 38px; }
#navbar .nav-link {
  color: var(--text-mid) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
#navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: all 0.25s ease;
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: var(--blue) !important;
  background: var(--blue-light);
}
#navbar .nav-link:hover::after,
#navbar .nav-link.active::after {
  left: 14px; right: 14px;
}
#navbar .navbar-toggler {
  border: 1.5px solid var(--border);
  padding: 6px 10px;
  border-radius: 10px;
}
#navbar .navbar-toggler:focus { box-shadow: none; }
#navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815,23,42,0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background: var(--bg);
}
/* Decorative blobs */
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,109,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,47,190,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,109,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,109,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  border: 1px solid var(--border-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease both;
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: pulse-dot 2s infinite;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0;
  color: var(--navy);
  animation: fadeInUp 0.7s 0.1s ease both;
}
/* Fixed-height typed line — "With" + single rotating word.
   Single words are short enough to never wrap at any viewport.
   `height` (not min-height) is a hard geometric lock: box never grows
   or shrinks regardless of text, so the hero height is mathematically fixed. */
.hero-typed-line {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  white-space: nowrap;
  overflow: visible;
  display: block;
  height: 1.25em;       /* hard lock: exactly 1 line, always */
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--blue);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 1s step-end infinite;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-actions {
  animation: fadeInUp 0.7s 0.4s ease both;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  min-width: 120px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInRight 0.9s 0.3s ease both; }
.hero-email-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-email-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}
.email-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.email-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.email-from { font-size: 0.86rem; font-weight: 600; color: var(--text); }
.email-time { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }
.email-subject { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.email-body { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.email-body p + p { margin-top: 8px; }
.email-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; flex-wrap: wrap; gap: 10px; }
.email-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad); color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(26,109,255,0.25);
}
.email-tags { display: flex; gap: 6px; }
.email-tag {
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0;
}
.email-tag.blue { background: var(--blue-light); color: var(--blue); border-color: var(--border-blue); }

/* Float cards */
.hero-float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text);
  animation: float 6s ease-in-out infinite;
}
.fc-1 { top: -18px; right: -12px; animation-delay: 0s; }
.fc-2 { bottom: 28px; right: -24px; animation-delay: 2s; }
.fc-3 { bottom: -12px; left: -16px; animation-delay: 4s; }
.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.float-icon.green  { background: #F0FDF4; }
.float-icon.blue   { background: var(--blue-light); }
.float-icon.purple { background: var(--purple-light); }
.float-value {
  font-size: 1.2rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.float-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; margin-top: 1px; }

/* ============================================================
   TRUSTED BY
   ============================================================ */
#trusted {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trusted-label {
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1px; white-space: nowrap;
}
.logos-track {
  display: flex; gap: 50px; align-items: center;
  animation: marquee 28s linear infinite; white-space: nowrap;
}
.logo-item {
  font-size: 1rem; font-weight: 700;
  color: rgba(15,23,42,0.2); white-space: nowrap;
  padding: 0 8px; transition: color 0.3s;
  letter-spacing: -0.3px;
}
.logo-item:hover { color: var(--blue); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header { margin-bottom: 56px; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; color: var(--navy); }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 520px; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { padding: 100px 0; background: var(--bg); }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-soft);
  border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-icon i {
  font-size: 1.45rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(26,109,255,0.3);
}
.service-card:hover .service-icon i {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
}
/* Orbit dot icons */
.orbit-dot i {
  font-size: 1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Why center card icon */
.why-rocket-icon {
  width: 60px; height: 60px;
  background: var(--grad);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 24px rgba(26,109,255,0.3);
}
.why-rocket-icon i { font-size: 1.6rem; color: #fff; }
.service-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.service-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.82rem; font-weight: 700;
  color: var(--blue); transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
#stats { padding: 0 0 100px; background: var(--bg); }
.stats-wrap {
  background: linear-gradient(135deg, #1A6DFF 0%, #7B2FBE 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.stats-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc { font-size: 0.875rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); height: 60px; margin: auto; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#process { padding: 100px 0; background: var(--bg-alt); }
.process-step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  height: 100%;
}
.process-step:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-number {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--grad);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px rgba(26,109,255,0.3);
}
.step-content h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 7px; color: var(--navy); }
.step-content p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.72; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why { padding: 100px 0; background: var(--bg); }
.why-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }
.why-center-card {
  width: 300px;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative; z-index: 2;
}
.why-orbit {
  position: absolute;
  width: 400px; height: 400px;
  border: 1.5px dashed var(--border-blue);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.why-orbit-2 {
  position: absolute;
  width: 540px; height: 540px;
  border: 1.5px dashed rgba(123,47,190,0.1);
  border-radius: 50%;
  animation: rotate 50s linear infinite reverse;
}
.orbit-dot {
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.orbit-dot:nth-child(1) { top: -21px; left: calc(50% - 21px); }
.orbit-dot:nth-child(2) { top: calc(50% - 21px); right: -21px; }
.orbit-dot:nth-child(3) { bottom: -21px; left: calc(50% - 21px); }
.orbit-dot:nth-child(4) { top: calc(50% - 21px); left: -21px; }

.feature-item {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: #F0FDF4; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #16A34A; font-size: 0.85rem; margin-top: 2px;
  border: 1px solid #BBF7D0;
}
.feature-text h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.feature-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding: 100px 0; background: var(--bg-alt); }
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-lg);
}
.testi-stars { color: #F59E0B; font-size: 0.82rem; margin-bottom: 16px; }
.testi-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { padding: 100px 0; background: var(--bg); }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: var(--border-blue); box-shadow: 0 4px 20px rgba(26,109,255,0.08); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 26px;
  color: var(--text); font-size: 0.95rem; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; font-size: 0.85rem; color: var(--text-muted);
}
.faq-item.open .faq-icon { background: var(--grad); border-color: transparent; transform: rotate(45deg); color: #fff; }
.faq-answer { padding: 0 26px; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
.faq-answer p { padding-bottom: 20px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CTA
   ============================================================ */
#cta { padding: 100px 0; background: var(--bg-alt); }
.cta-wrap {
  background: linear-gradient(135deg, #1A6DFF 0%, #7B2FBE 100%);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-blob-1 {
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.07); pointer-events: none;
}
.cta-blob-2 {
  position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.07); pointer-events: none;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.6px;
}
.cta-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 36px; }
.cta-form {
  display: flex; gap: 10px; max-width: 480px;
  margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.cta-form input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 14px 24px;
  color: #fff; font-size: 0.9rem; outline: none;
  transition: border-color 0.3s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.55); }
.cta-form input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.2); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 16px; }
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { padding: 72px 0 0; background: var(--navy); }
.footer-logo img { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 270px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-heading { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li + li { margin-top: 9px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: all 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 9px; }
.footer-contact-item i { color: rgba(26,109,255,0.8); width: 16px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0; margin-top: 50px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--grad);
  border: none; border-radius: 12px; color: #fff;
  font-size: 1rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  z-index: 500; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26,109,255,0.35);
}
#back-top.show { display: flex; }
#back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,109,255,0.45); }

/* ============================================================
   REVEAL / ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown  { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float       { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes rotate      { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes marquee     { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse-dot   { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.75); opacity: 0.6; } }
@keyframes blink       { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .stat-divider { display: none; }
  .hero-visual { margin-top: 50px; }
  .why-orbit, .why-orbit-2 { display: none; }
  .cta-wrap { padding: 52px 30px; }
  #navbar { background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
}
@media (max-width: 767px) {
  .hero-stat { min-width: 50%; border-bottom: 1px solid var(--border); }
  .hero-stat:nth-child(2n) { border-right: none; }
  .fc-2, .fc-3 { display: none; }
}
@media (max-width: 575px) {
  #hero { padding: 110px 0 70px; }
  .process-step { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
}
