/* ===================================================
   GSTFile.in — Main Stylesheet
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1D3A;
  --navy-mid:   #132649;
  --navy-light: #1E3A5F;
  --teal:       #00C5A1;
  --teal-dark:  #009E82;
  --teal-light: #E4F9F5;
  --teal-glow:  rgba(0,197,161,0.18);
  --gold:       #F59E0B;
  --text:       #1A2B4A;
  --muted:      #64748B;
  --border:     #E2EAF4;
  --white:      #FFFFFF;
  --bg-soft:    #F5F8FF;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow:     0 4px 24px rgba(11,29,58,0.09);
  --shadow-lg:  0 12px 48px rgba(11,29,58,0.14);
  --shadow-teal:0 8px 32px rgba(0,197,161,0.28);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

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

/* ─── UTILITIES ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 96px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--teal);
  background: var(--teal-light); padding: 5px 14px;
  border-radius: 50px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  color: var(--navy); margin-bottom: .9rem;
}
.section-title span { color: var(--teal); }
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; line-height: 1.75;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .92rem; padding: 13px 26px;
  border-radius: 10px; border: none; cursor: pointer;
  transition: all .22s ease; white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal); color: var(--navy);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: var(--teal); color: var(--teal);
  background: rgba(0,197,161,0.06);
}
.btn-navy {
  background: var(--navy); color: #fff;
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,29,58,0.28);
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 1.5rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(9,23,46,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  border-bottom-color: rgba(255,255,255,0.06);
}
.navbar-inner {
  max-width: 1180px; margin: 0 auto; padding: 0;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
}
.brand-logo-wrap {
  width: 40px; height: 40px;
}
.brand-name {
  font-family: 'Syne', sans-serif; font-size: 1.4rem;
  font-weight: 800; color: #fff; letter-spacing: -.5px;
}
.brand-name em { color: var(--teal); font-style: normal; }
.brand-tld { color: rgba(255,255,255,0.45); font-size: 1rem; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: .875rem;
  font-weight: 500; padding: 8px 13px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.09); }
.nav-links .nav-cta .btn { padding: 9px 20px; font-size: .875rem; }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 6px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(9,23,46,0.98);
  backdrop-filter: blur(14px);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex; align-items: center;
  color: rgba(255,255,255,0.8);
  padding: 13px 0; font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav a:last-child { border: none; }
.mobile-nav .mob-cta {
  margin-top: 1rem;
  display: flex; justify-content: center;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #071528 0%, var(--navy) 45%, #0d3558 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4; pointer-events: none;
}
.hero-orb-1, .hero-orb-2 {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(0,197,161,0.13) 0%, transparent 68%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(0,100,200,0.1) 0%, transparent 70%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,197,161,0.1); border: 1px solid rgba(0,197,161,0.25);
  color: var(--teal); padding: 6px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 1.4rem;
}
.pulse-dot {
  width: 7px; height: 7px; background: var(--teal);
  border-radius: 50%; animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.6);opacity:.5}
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff; margin-bottom: 1.3rem; line-height: 1.15;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.68);
  max-width: 530px; line-height: 1.75; margin-bottom: 2rem;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-bottom: 2.25rem;
}
.hero-stat strong {
  display: block; font-family: 'Syne',sans-serif;
  font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1;
}
.hero-stat small {
  font-size: .78rem; color: rgba(255,255,255,0.48);
  margin-top: 3px; display: block;
}
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.12); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 2rem; display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: .8rem;
}
.hero-trust-icons { display: flex; align-items: center; gap: -6px; }
.hero-trust-icons span {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy-light); border: 2px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: var(--teal);
  margin-right: -6px;
}

/* Hero Signup Card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}
.hero-card-head { text-align: center; margin-bottom: 1.5rem; }
.hero-card-head h3 { color: #fff; font-size: 1.2rem; margin-bottom: .3rem; }
.hero-card-head p { color: rgba(255,255,255,0.45); font-size: .82rem; }
.free-tag {
  display: inline-block; background: var(--teal);
  color: var(--navy); font-size: .7rem; font-weight: 800;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: .6rem;
}
.form-field { margin-bottom: .85rem; }
.form-field label {
  display: block; font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,0.5); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: .6px;
}
.form-field input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: #fff; padding: 11px 13px; border-radius: 9px;
  font-size: .9rem; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s, background .2s; outline: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.28); }
.form-field input:focus {
  border-color: var(--teal);
  background: rgba(0,197,161,0.05);
}
.input-icon-wrap { position: relative; }
.input-icon-wrap .bi {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%); color: rgba(255,255,255,0.3);
  font-size: .95rem;
}
.input-icon-wrap input { padding-left: 36px; }
.form-note {
  text-align: center; font-size: .73rem;
  color: rgba(255,255,255,0.32); margin-top: .7rem;
}
.form-note i { color: var(--teal); }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: #071528;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.1rem 0;
}
.trust-strip-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.5); font-size: .82rem; font-weight: 500;
  padding: .5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item .bi { color: var(--teal); font-size: 1rem; }

/* ─── SERVICES ─── */
.services-section { background: var(--bg-soft); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(0,197,161,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.icon-teal { background: var(--teal-light); color: var(--teal); }
.icon-blue { background: #EEF4FF; color: #4F6EF7; }
.icon-gold { background: #FEF3C7; color: #D97706; }
.service-card h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: .55rem; }
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--white); }
.steps-wrap {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; position: relative;
}
.steps-connector {
  position: absolute; top: 40px;
  left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(0,197,161,.25));
}
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal); color: var(--navy);
  font-family: 'Syne',sans-serif; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 10px rgba(0,197,161,0.1);
}
.step-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; }
.step-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ─── FEATURES ─── */
.features-section { background: var(--bg-soft); }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-bottom: 5rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-row.reverse .feature-body { order: 1; }
.feature-visual {
  background: linear-gradient(135deg, #e8f5f3 0%, #d4f0ea 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 1.5px solid rgba(0,197,161,0.2);
  position: relative; overflow: hidden;
}
.feature-visual-inner {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.feature-visual-icon { font-size: 3.5rem; line-height: 1; }
.feature-visual-badge {
  background: var(--teal); color: var(--navy);
  font-size: .72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: .5px;
}
.feature-tag {
  display: inline-block; background: var(--teal-light);
  color: var(--teal-dark); font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: .9rem;
}
.feature-body h3 { font-size: 1.9rem; color: var(--navy); margin-bottom: .85rem; }
.feature-body p { color: var(--muted); font-size: .97rem; margin-bottom: 1.4rem; line-height: 1.75; }
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--muted); margin-bottom: .65rem;
}
.check-list li .bi { color: var(--teal); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ─── PLATFORMS ─── */
.platforms-section { background: var(--white); }
.platforms-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.platform-card {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.platform-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.platform-emoji { font-size: 2.5rem; margin-bottom: .75rem; }
.platform-card h5 { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.platform-card p { font-size: .83rem; color: var(--muted); }

/* ─── PRICING ─── */
.pricing-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0e2f56 100%);
  position: relative; overflow: hidden;
}
.pricing-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.pricing-orb-1 {
  width: 500px; height: 500px; top: -150px; left: -150px;
  background: radial-gradient(circle, rgba(0,197,161,0.12) 0%, transparent 68%);
}
.pricing-orb-2 {
  width: 400px; height: 400px; bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(79,110,247,0.1) 0%, transparent 70%);
}
.pricing-section .section-title { color: #fff; }
.pricing-section .section-sub { color: rgba(255,255,255,0.5); }
.pricing-section .section-label { background: rgba(0,197,161,0.12); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; position: relative; z-index: 1;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 2.5rem 2.25rem;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.price-card.popular {
  background: rgba(0,197,161,0.07);
  border-color: var(--teal);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal); color: var(--navy);
  font-size: .72rem; font-weight: 800;
  padding: 5px 18px; border-radius: 50px;
  white-space: nowrap; text-transform: uppercase; letter-spacing: .5px;
}
.price-plan-name {
  color: rgba(255,255,255,0.55); font-size: .82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: .5rem;
}
.price-desc { color: rgba(255,255,255,0.4); font-size: .85rem; margin-bottom: 1.5rem; }
.price-amount {
  display: flex; align-items: flex-end; gap: 6px;
  margin-bottom: .3rem;
}
.price-currency {
  font-family: 'Syne',sans-serif; font-size: 1.4rem;
  color: #fff; line-height: 1; margin-bottom: 10px;
}
.price-number {
  font-family: 'Syne',sans-serif; font-size: 3.2rem;
  font-weight: 800; color: #fff; line-height: 1;
}
.price-period {
  color: rgba(255,255,255,0.35); font-size: .83rem; margin-bottom: 2rem;
}
.price-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.78); font-size: .88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-features li:last-child { border: none; }
.price-features li .bi { color: var(--teal); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }
.price-btn-primary {
  width: 100%; padding: 14px; background: var(--teal); color: var(--navy);
  font-family: 'Syne',sans-serif; font-weight: 700; font-size: .95rem;
  border: none; border-radius: 10px; cursor: pointer;
  transition: background .2s, transform .2s;
}
.price-btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.price-btn-outline {
  width: 100%; padding: 13px; background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2); font-family: 'Syne',sans-serif;
  font-weight: 700; font-size: .95rem; border-radius: 10px; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.price-btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.pricing-note {
  text-align: center; color: rgba(255,255,255,0.3);
  font-size: .82rem; margin-top: 2rem;
  position: relative; z-index: 1;
}
.pricing-note i { color: var(--teal); }

/* ─── TEAM ─── */
.team-section { background: var(--bg-soft); }
.team-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.team-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(0,197,161,0.35); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), #c4f2ea);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne',sans-serif; font-size: 1.3rem;
  font-weight: 800; color: var(--teal-dark);
  border: 2px solid rgba(0,197,161,0.2);
}
.team-card h5 { font-size: .97rem; color: var(--navy); margin-bottom: .25rem; }
.team-card .role { font-size: .8rem; color: var(--teal); font-weight: 600; }

/* ─── FAQ ─── */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.faq-card {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
  transition: border-color .2s;
}
.faq-card:hover { border-color: rgba(0,197,161,0.4); }
.faq-card h5 {
  font-size: .97rem; color: var(--navy);
  margin-bottom: .6rem; display: flex; align-items: flex-start; gap: 10px;
}
.faq-q-mark {
  width: 22px; height: 22px; background: var(--teal); color: var(--navy);
  border-radius: 6px; font-size: .7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.faq-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, #00a887 100%);
  padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy); margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-band p {
  color: rgba(11,29,58,0.65); font-size: 1.05rem;
  max-width: 520px; margin: 0 auto 2rem;
  position: relative; z-index: 1;
}
.cta-band .btn { position: relative; z-index: 1; }

/* ─── CONTACT ─── */
.contact-section { background: var(--bg-soft); }
.contact-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 3rem 2.5rem;
  text-align: center; box-shadow: var(--shadow);
  max-width: 620px; margin: 0 auto;
}
.contact-card > p { color: var(--muted); margin-bottom: 1.75rem; line-height: 1.7; }
.contact-meta {
  display: flex; justify-content: center; gap: 2.5rem;
  flex-wrap: wrap; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.contact-meta-item {}
.contact-meta-item small {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px; color: var(--muted); margin-bottom: .3rem;
}
.contact-meta-item a, .contact-meta-item span {
  font-size: .92rem; font-weight: 600; color: var(--navy);
}
.contact-meta-item a { color: var(--teal); }

/* ─── FOOTER ─── */
footer {
  background: #071528;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem;
}
.footer-brand p { color: rgba(255,255,255,0.42); font-size: .87rem; margin-top: .9rem; line-height: 1.7; }
footer h6 {
  color: rgba(255,255,255,0.28); font-size: .7rem;
  text-transform: uppercase; letter-spacing: 1.8px;
  margin-bottom: 1.1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: .55rem; }
footer ul a { color: rgba(255,255,255,0.55); font-size: .87rem; transition: color .2s; }
footer ul a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  color: rgba(255,255,255,0.5); font-size: .87rem; margin-bottom: .6rem;
}
.footer-contact-item .bi { color: var(--teal); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); margin-left: 1.25rem; font-size: .8rem; transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ─── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.72); z-index: 9999;
  align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem; width: 100%; max-width: 440px;
  position: relative; animation: modalPop .3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
@keyframes modalPop { from{opacity:0;transform:scale(.92)translateY(16px)} to{opacity:1;transform:none} }
.modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--bg-soft); border: none; width: 32px; height: 32px;
  border-radius: 8px; cursor: pointer; font-size: 1rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: var(--border); }
.modal-box h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: .4rem; }
.modal-box > p { color: var(--muted); font-size: .88rem; margin-bottom: 1.5rem; }
.modal-box .form-field label { color: var(--muted); }
.modal-box .form-field input {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  color: var(--text);
}
.modal-box .form-field input::placeholder { color: #94a3b8; }
.modal-box .form-field input:focus {
  border-color: var(--teal); background: var(--teal-light);
}
.modal-box .input-icon-wrap .bi { color: var(--muted); }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; background: var(--teal);
  color: var(--navy); border-radius: 10px; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-teal); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; z-index: 900;
  text-decoration: none;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .feature-row { gap: 3rem; }
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { padding: 100px 0 70px; }
  .steps-wrap { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse .feature-visual { order: 0; }
  .feature-row.reverse .feature-body { order: 0; }
  .feature-visual { display: none; }
  .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-item { padding: .5rem 1rem; }
  .hero-stat-divider { display: none; }
}
@media (max-width: 540px) {
  section { padding: 68px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .contact-meta { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 .5rem; }
}

/* ═══════════════════════════════════════
   LEGAL PAGES (Terms, Privacy, Refund)
════════════════════════════════════════ */

/* Page Hero */
.legal-hero {
  background: linear-gradient(145deg, #071528 0%, var(--navy) 55%, #0d3558 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,197,161,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.legal-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
}
.legal-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,0.45);
}
.legal-breadcrumb a { color: var(--teal); text-decoration: none; }
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-breadcrumb .sep { opacity: .4; }
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin-bottom: .75rem;
}
.legal-hero h1 em { font-style: normal; color: var(--teal); }
.legal-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem; max-width: 560px; line-height: 1.7;
}
.legal-meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.legal-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: rgba(255,255,255,0.42);
}
.legal-meta-item .bi { color: var(--teal); font-size: .9rem; }

/* Main Layout */
.legal-body {
  padding: 72px 0 96px;
  background: var(--bg-soft);
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Sticky TOC */
.legal-toc {
  position: sticky; top: 88px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.legal-toc h6 {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 7px;
}
.legal-toc h6 .bi { color: var(--teal); }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: .2rem; }
.toc-list a {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: .85rem;
  padding: 7px 10px; border-radius: 8px;
  transition: color .2s, background .2s;
  text-decoration: none; line-height: 1.4;
}
.toc-list a:hover,
.toc-list a.active {
  color: var(--teal);
  background: var(--teal-light);
}
.toc-list a .bi { font-size: .7rem; flex-shrink: 0; opacity: .5; }

/* Content Card */
.legal-content-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow);
}

/* Sections */
.legal-section {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.legal-section:first-child {
  padding-top: 0; margin-top: 0; border-top: none;
}
.legal-section-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--teal);
  color: var(--navy); font-size: .75rem; font-weight: 800;
  border-radius: 8px; flex-shrink: 0;
}
.legal-section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.1rem;
}
.legal-section-head h2 {
  font-size: 1.25rem; color: var(--navy); margin: 0;
}
.legal-section p {
  color: var(--muted); font-size: .93rem;
  line-height: 1.8; margin-bottom: .9rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol {
  padding-left: 0; list-style: none;
  margin-bottom: .9rem;
}
.legal-section ul li,
.legal-section ol li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--muted); font-size: .93rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  line-height: 1.65;
}
.legal-section ul li:last-child,
.legal-section ol li:last-child { border: none; }
.legal-section ul li .bi { color: var(--teal); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.legal-section ol { counter-reset: ol-counter; }
.legal-section ol li { counter-increment: ol-counter; }
.legal-section ol li::before {
  content: counter(ol-counter);
  min-width: 22px; height: 22px;
  background: var(--teal-light); color: var(--teal-dark);
  border-radius: 6px; font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

/* Highlight box */
.legal-highlight {
  background: var(--teal-light);
  border: 1.5px solid rgba(0,197,161,0.25);
  border-left: 4px solid var(--teal);
  border-radius: 10px; padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
}
.legal-highlight p {
  margin: 0; font-size: .9rem;
  color: var(--text); line-height: 1.7;
}
.legal-highlight strong { color: var(--navy); }

/* Warning box */
.legal-warning {
  background: #FEF3C7;
  border: 1.5px solid rgba(245,158,11,0.3);
  border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
}
.legal-warning p { margin: 0; font-size: .9rem; color: #78350F; line-height: 1.7; }

/* Contact box */
.legal-contact-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 2rem 2.25rem;
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.legal-contact-box .bi {
  font-size: 2rem; color: var(--teal); flex-shrink: 0;
}
.legal-contact-box h4 { color: #fff; font-size: 1.05rem; margin-bottom: .3rem; }
.legal-contact-box p { color: rgba(255,255,255,0.55); font-size: .87rem; margin: 0; }
.legal-contact-box a { color: var(--teal); text-decoration: none; }
.legal-contact-box a:hover { text-decoration: underline; }
.legal-contact-right { margin-left: auto; }

/* Footer for legal pages reuses main footer, no changes needed */

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-content-card { padding: 2rem 1.5rem; }
}
@media (max-width: 540px) {
  .legal-hero { padding: 120px 0 50px; }
  .legal-contact-box { flex-direction: column; }
  .legal-contact-right { margin-left: 0; }
}
