/* ═══════════════════════════════════════════════════════════════
   Hisab91 — Premium Mobile-First Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & tokens ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a3a5c;
  --navy-dark:  #0d2238;
  --navy-deep:  #071829;
  --teal:       #2ab5a0;
  --teal-light: #3dd6bf;
  --teal-glow:  rgba(42,181,160,.35);
  --saffron:    #ff9933;
  --grad:       linear-gradient(135deg, #1a3a5c 0%, #2ab5a0 100%);
  --grad-r:     linear-gradient(135deg, #2ab5a0 0%, #1a3a5c 100%);
  --grad-v:     linear-gradient(180deg, #1a3a5c 0%, #2ab5a0 100%);
  --mesh:       radial-gradient(at 20% 30%, rgba(42,181,160,.18) 0px, transparent 50%),
                radial-gradient(at 80% 10%, rgba(26,58,92,.25) 0px, transparent 50%),
                radial-gradient(at 60% 80%, rgba(42,181,160,.12) 0px, transparent 50%);
  --grey:       #4a5568;
  --grey-mid:   #718096;
  --grey-light: #f0f4f8;
  --grey-ultra: #f7f9fc;
  --white:      #ffffff;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(26,58,92,.08);
  --shadow:     0 8px 32px rgba(26,58,92,.12);
  --shadow-lg:  0 20px 60px rgba(26,58,92,.20);
  --shadow-xl:  0 32px 80px rgba(26,58,92,.28);
  --shadow-teal:0 12px 40px rgba(42,181,160,.30);
}

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--grey); background: var(--white);
  line-height: 1.65; overflow-x: hidden;
}

/* ── Brand name highlight ────────────────────────────────────── */
.brand { font-weight: 800; color: var(--teal); font-style: normal; }
.brand-light { color: rgba(61,214,191,.85); }

/* ── Utility ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

.grad-text {
  background: linear-gradient(90deg, #1a3a5c 0%, #2ab5a0 45%, #1a7a6e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: .95rem;
  font-weight: 700; text-decoration: none; cursor: pointer;
  border: none; transition: all .25s ease;
  position: relative; overflow: hidden; letter-spacing: .01em;
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  transform: translateX(-100%); transition: transform .5s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.98); }

.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 20px rgba(42,181,160,.4);
  animation: saffronPulse 2.8s ease-in-out infinite;
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(42,181,160,.55);
  animation: none;
}

.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; box-shadow: var(--shadow); }

.btn-white { background: #fff; color: var(--navy); border: 2px solid #fff; }
.btn-white, .btn-white * { color: var(--navy) !important; }
.btn-white:hover { background: transparent; }
.btn-white:hover, .btn-white:hover * { color: #fff !important; }

.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ── Nav ─────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(26,58,92,.07);
  transition: box-shadow .3s, background .3s;
  animation: fadeIn .4s ease both;
}
nav.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 24px rgba(26,58,92,.10);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1160px; margin: 0 auto;
  min-height: 64px;
}
.nav-logo img { height: 40px; display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--grey); font-weight: 600; font-size: .88rem;
  transition: color .2s; position: relative; padding-bottom: 2px;
  letter-spacing: .02em;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  border-radius: 10px; transition: background .2s;
}
.hamburger:hover { background: var(--grey-light); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Policy back button */
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--navy); font-size: .88rem; font-weight: 600;
  padding: 8px 18px; border-radius: 50px; border: 2px solid var(--navy);
  transition: all .2s;
}
.nav-back:hover { background: var(--navy); color: #fff; }

/* ── Mobile drawer ───────────────────────────────────────────── */
.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid rgba(0,0,0,.06);
  padding: 16px 20px 24px; gap: 4px;
  box-shadow: 0 12px 32px rgba(26,58,92,.12);
}
.mobile-menu.open { display: flex; animation: slideDown .25s ease both; }
.mobile-menu a {
  text-decoration: none; color: var(--navy); font-weight: 600;
  font-size: 1rem; padding: 13px 16px; border-radius: 12px;
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--grey-light); }
.mobile-menu .btn { margin-top: 8px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: #ffffff;
  background-image:
    radial-gradient(at 15% 25%, rgba(42,181,160,.14) 0px, transparent 55%),
    radial-gradient(at 85% 15%, rgba(30,95,116,.10) 0px, transparent 50%),
    radial-gradient(at 60% 85%, rgba(42,181,160,.08) 0px, transparent 50%);
  background-size: 200% 200%;
  animation: heroBg 12s ease-in-out infinite alternate;
  padding: 80px 0 72px;
  overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,181,160,.10) 0%, transparent 65%);
  animation: blobPulse 7s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,95,116,.07) 0%, transparent 65%);
  animation: blobPulse 9s ease-in-out infinite reverse;
  pointer-events: none;
}
/* Floating background icons */
.hero-icons {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.hi {
  position: absolute;
  opacity: 0;
  background: transparent;
  border: 1.5px solid rgba(42,181,160,.2);
  border-radius: 16px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  animation: hiFloat 6s ease-in-out infinite;
  color: rgba(42,181,160,.45);
  font-size: 1.25rem;
}
.hi-1 { top: 12%; left: 3%;   animation-delay: 0s;    animation-duration: 7s; }
.hi-2 { top: 55%; left: 1%;   animation-delay: 1.2s;  animation-duration: 8s; font-size: 1.4rem; }
.hi-3 { top: 78%; left: 6%;   animation-delay: 2.4s;  animation-duration: 6.5s; }
.hi-4 { top: 8%;  right: 48%; animation-delay: 0.6s;  animation-duration: 9s; }
.hi-5 { top: 70%; right: 46%; animation-delay: 1.8s;  animation-duration: 7.5s; }
.hi-6 { top: 20%; right: 3%;  animation-delay: 3s;    animation-duration: 8s; }
.hi-7 { top: 50%; right: 1%;  animation-delay: 0.4s;  animation-duration: 7s; }
.hi-8 { top: 85%; right: 5%;  animation-delay: 2s;    animation-duration: 6s; }

@keyframes hiFloat {
  0%   { opacity: 0;   transform: translateY(12px) scale(.88); }
  15%  { opacity: 1; }
  50%  { transform: translateY(-10px) scale(1);   opacity: .85; }
  85%  { opacity: 1; }
  100% { opacity: 0;   transform: translateY(12px) scale(.88); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,181,160,.12); color: var(--teal);
  border: 1px solid rgba(42,181,160,.25);
  border-radius: 50px; padding: 7px 18px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  margin-bottom: 22px; animation: fadeUp .5s ease both;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; color: var(--navy-dark);
  margin-bottom: 20px; font-weight: 900;
  animation: fadeUp .6s .08s ease both;
  letter-spacing: -.01em;
}
.hero p {
  font-size: 1.05rem; margin-bottom: 36px;
  color: var(--grey); line-height: 1.75;
  animation: fadeUp .6s .18s ease both; max-width: 460px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .6s .28s ease both;
}

/* Hero dashboard card */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: scaleIn .9s .15s ease both;
}
.dashboard-card {
  background: #fff;
  border: 1.5px solid rgba(42,181,160,.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(42,181,160,.06);
  padding: 24px; width: 100%; max-width: 400px;
  animation: float 5s ease-in-out infinite;
  position: relative;
}
.dc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dc-title { font-size: .82rem; font-weight: 700; color: var(--navy-dark); }
.dc-badge {
  background: rgba(42,181,160,.12); color: var(--teal);
  padding: 3px 11px; border-radius: 50px; font-size: .7rem; font-weight: 700;
  border: 1px solid rgba(42,181,160,.2);
}
.dc-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.dc-stat {
  background: var(--grey-ultra); border-radius: 12px; padding: 14px;
  border: 1px solid rgba(26,58,92,.06);
}
.dc-stat-label { font-size: .68rem; color: var(--grey-mid); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
.dc-stat-value { font-size: 1.2rem; font-weight: 800; color: var(--navy-dark); }
.dc-stat-delta { font-size: .68rem; color: var(--teal); font-weight: 600; margin-top: 2px; }
.dc-bar-label { font-size: .72rem; font-weight: 700; color: var(--grey-mid); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.dc-bars { display: flex; flex-direction: column; gap: 8px; }
.dc-bar-row { display: flex; align-items: center; gap: 10px; }
.dc-bar-name { font-size: .68rem; width: 56px; color: var(--grey-mid); }
.dc-bar-track { flex: 1; height: 6px; background: rgba(26,58,92,.08); border-radius: 3px; overflow: hidden; }
.dc-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%); animation: barGrow 1.4s .5s ease both; }
.dc-bar-pct { font-size: .68rem; color: var(--teal); font-weight: 700; width: 28px; text-align: right; }

/* Floating pills */
.float-pill {
  position: absolute; right: -16px; top: 24px;
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(42,181,160,.12);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: .75rem; white-space: nowrap;
  animation: pillPop .7s .8s ease both;
}
.float-pill-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(42,181,160,.12);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  color: var(--teal);
}
.float-pill-label { font-weight: 700; color: var(--navy-dark); font-size: .78rem; }
.float-pill-sub { color: var(--teal); font-size: .68rem; font-weight: 600; }

/* ── Logos strip ─────────────────────────────────────────────── */
.logos-strip {
  padding: 20px 0; background: var(--grey-ultra);
  border-bottom: 1px solid rgba(26,58,92,.06);
}
.logos-strip-inner {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap; padding: 0 20px;
}
.logos-strip-label { font-size: .75rem; color: #aaa; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-right: 8px; }
.logo-pill {
  background: #fff; border: 1px solid rgba(26,58,92,.1);
  border-radius: 50px; padding: 7px 18px;
  font-size: .78rem; font-weight: 700; color: var(--grey-mid);
  transition: all .2s; box-shadow: var(--shadow-sm);
}
.logo-pill:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-teal); }

/* ── Section base ────────────────────────────────────────────── */
section { padding: 88px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(42,181,160,.10); color: var(--teal);
  border: 1px solid rgba(42,181,160,.2);
  border-radius: 50px; padding: 6px 16px;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 14px;
  transition: box-shadow .2s;
}
.section-label:hover { box-shadow: 0 0 0 4px rgba(42,181,160,.12); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900; color: var(--navy-dark);
  line-height: 1.15; margin-bottom: 14px; letter-spacing: -.01em;
}
.section-sub { font-size: 1rem; color: var(--grey-mid); max-width: 540px; margin-bottom: 52px; line-height: 1.75; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto 52px; }

/* ── Features ────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid rgba(26,58,92,.07);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease; border-radius: var(--radius) var(--radius) 0 0;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42,181,160,.2);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; font-size: 1.35rem; margin-bottom: 18px;
  box-shadow: var(--shadow-teal); color: #fff;
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 8px 24px rgba(42,181,160,.4); }
.feature-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 9px; }
.feature-card p { font-size: .88rem; line-height: 1.7; color: var(--grey-mid); }

/* ── How It Works ────────────────────────────────────────────── */
.hiw-section { background: var(--grey-ultra); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 76px; left: calc(100% / 6); right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(42,181,160,.25) 50%, var(--teal) 100%);
  pointer-events: none; z-index: 0;
}
.step {
  text-align: center; padding: 36px 24px 28px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1.5px solid rgba(26,58,92,.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-visual {
  position: relative; display: inline-flex;
  margin: 0 auto 24px; z-index: 1;
}
.step-icon-bg {
  width: 80px; height: 80px; border-radius: 22px;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; box-shadow: var(--shadow-teal);
  transition: transform .3s, box-shadow .3s;
}
.step:hover .step-icon-bg { transform: scale(1.08) rotate(-4deg); box-shadow: 0 10px 32px rgba(42,181,160,.5); }
.step-num {
  position: absolute; top: -10px; right: -10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy-dark); color: #fff;
  font-size: .75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; box-shadow: var(--shadow-sm); z-index: 2;
}
.step h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 10px; }
.step p { font-size: .87rem; color: var(--grey-mid); line-height: 1.75; margin-bottom: 18px; }
.step-outcome {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(42,181,160,.08); color: var(--teal);
  border: 1px solid rgba(42,181,160,.2);
  border-radius: 50px; padding: 6px 14px;
  font-size: .75rem; font-weight: 700;
}
.hiw-bottom { text-align: center; margin-top: 48px; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.pricing-card {
  border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1.5px solid rgba(26,58,92,.08);
  background: #fff; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  overflow: visible;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-features { flex: 1; }

.pricing-card.featured {
  background: linear-gradient(135deg, #1e5f74 0%, #2ab5a0 100%);
  border-color: transparent;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(42,181,160,.3);
  position: relative;
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

/* Glow ring behind featured card */
.pricing-card.featured::after {
  content: '';
  position: absolute; inset: -6px; border-radius: calc(var(--radius-lg) + 6px);
  background: var(--grad); z-index: -1;
  opacity: .4; filter: blur(18px);
  animation: gradMove 5s ease infinite; background-size: 200% 200%;
}

.plan-badge {
  display: inline-block; border-radius: 50px; padding: 5px 14px;
  font-size: .68rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 18px;
  background: rgba(42,181,160,.1); color: var(--teal);
  border: 1px solid rgba(42,181,160,.2);
}
.pricing-card.featured .plan-badge {
  background: rgba(255,255,255,.2); color: #fff;
  border-color: rgba(255,255,255,.35);
}

.price { font-size: 2.8rem; font-weight: 900; color: var(--navy-dark); line-height: 1; margin-bottom: 4px; }
.price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-card.featured .price { color: #fff; }

.price-period { font-size: .82rem; color: var(--grey-mid); margin-bottom: 22px; }
.pricing-card.featured .price-period { color: rgba(255,255,255,.6); }

.pricing-divider { border: none; border-top: 1px solid rgba(26,58,92,.07); margin: 20px 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,.12); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--grey); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.82); }

.check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(42,181,160,.12); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 0; font-weight: 800;
}
.check::before { content: "\2713"; font-size: .75rem; font-weight: 900; }
.pricing-card.featured .check { background: rgba(255,255,255,.2); color: #fff; }

.pricing-cta { margin-top: 28px; }
.pricing-cta .btn { width: 100%; justify-content: center; display: flex; white-space: nowrap; padding: 13px 20px; }

.soon {
  display: inline-block; font-size: .6rem; font-weight: 800;
  background: rgba(255,153,51,.12); color: #b86b00;
  border: 1px solid rgba(255,153,51,.25);
  border-radius: 50px; padding: 1px 7px; margin-left: 5px;
  vertical-align: middle; letter-spacing: .05em; text-transform: uppercase;
}
.pricing-card.featured .soon { background: rgba(255,255,255,.15); color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.2); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--grey-ultra); position: relative; overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff;
  border: 1.5px solid rgba(26,58,92,.07);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42,181,160,.25);
}
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: .88rem; line-height: 1.78; color: var(--grey); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 800; font-size: .88rem;
}
.author-name { font-weight: 700; color: var(--navy-dark); font-size: .88rem; }
.author-role { font-size: .74rem; color: var(--grey-mid); }

/* ── CTA banner ──────────────────────────────────────────────── */
.cta-section { padding: 80px 0; background: var(--grey-ultra); }
.cta-box {
  background: linear-gradient(135deg, #1e5f74 0%, #2ab5a0 100%);
  border-radius: var(--radius-xl); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 16px 48px rgba(42,181,160,.25);
}
.cta-box::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  animation: blobPulse 6s ease-in-out infinite;
}
.cta-box::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  animation: blobPulse 8s ease-in-out infinite reverse;
}
.cta-box h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900; color: #fff;
  margin-bottom: 14px; position: relative; z-index: 1; letter-spacing: -.01em;
}
.cta-box p {
  color: rgba(255,255,255,.88); font-size: 1rem;
  margin-bottom: 36px; position: relative; z-index: 1; max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,.55);
  padding: 60px 0 28px;
}
footer.footer-simple {
  padding: 20px; text-align: center; font-size: .8rem;
}
footer.footer-simple a { color: var(--teal); text-decoration: none; }
footer.footer-simple a:hover { text-decoration: underline; }

.footer-grid {
  display: grid; grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 44px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: .84rem; line-height: 1.75; max-width: 220px; }
.footer-col h4 {
  font-size: .72rem; font-weight: 800; color: rgba(255,255,255,.9);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none; color: rgba(255,255,255,.45);
  font-size: .84rem; transition: color .2s, padding-left .2s;
}
.footer-col ul a:hover { color: var(--teal); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.08);
}
.footer-socials a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); border-color: transparent; }

/* ═══════════════════════════════════════════════════════════════
   Policy pages
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy-dark); padding: 56px 24px 44px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,181,160,.15) 0%, transparent 70%);
  animation: blobPulse 5s ease-in-out infinite;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900; color: #fff;
  margin-bottom: 8px; animation: fadeUp .5s ease both; position: relative; z-index: 1;
}
.page-hero p { color: rgba(255,255,255,.6); font-size: .9rem; animation: fadeUp .5s .1s ease both; position: relative; z-index: 1; }

.content-wrap { max-width: 720px; margin: 0 auto; padding: 52px 24px 80px; }

.highlight-box {
  background: rgba(42,181,160,.07); border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0; padding: 14px 18px; margin-bottom: 40px;
  font-size: .9rem; color: var(--navy-dark); animation: fadeUp .5s .2s ease both;
}
.policy-section { margin-bottom: 38px; animation: fadeUp .5s ease both; }
.policy-section h2 {
  font-size: 1.05rem; font-weight: 800; color: var(--navy-dark);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 2px solid rgba(42,181,160,.18);
}
.policy-section p { font-size: .92rem; margin-bottom: 10px; }
.policy-section ul {
  padding-left: 18px; display: flex; flex-direction: column; gap: 6px;
  font-size: .92rem; margin-top: 8px;
}
.policy-section a { color: var(--teal); }

/* ═══════════════════════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes gradMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pillPop {
  0%   { opacity: 0; transform: translateX(24px) scale(.86); }
  60%  { transform: translateX(-4px) scale(1.04); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1);    opacity: 1;  }
  50%       { transform: scale(1.14); opacity: .7; }
}
@keyframes heroBg {
  0%   { background-position: 0% 0%; }
  33%  { background-position: 60% 40%; }
  66%  { background-position: 100% 60%; }
  100% { background-position: 30% 100%; }
}
@keyframes barGrow {
  from { width: 0 !important; }
}
@keyframes saffronPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(42,181,160,.4), 0 0 0 0 rgba(255,153,51,.3); }
  50%       { box-shadow: 0 4px 20px rgba(42,181,160,.4), 0 0 0 10px rgba(255,153,51,0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger */
.stagger-children > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.04s; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.13s; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.22s; }
.stagger-children.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.31s; }
.stagger-children.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.40s; }
.stagger-children.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.49s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 0; }
  .hero-visual       { display: none; }
  .hero              { padding: 64px 0 56px; }
  .steps             { grid-template-columns: 1fr; gap: 16px; }
  .steps::before     { display: none; }
  .hiw-bottom        { margin-top: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 10px 16px; min-height: 56px; }
  .nav-logo img { height: 34px; }

  /* Hero — full-width bold mobile */
  .hero { padding: 52px 0 48px; text-align: center; background: #ffffff; }
  .hero-icons { display: none; }
  .hero-badge { margin: 0 auto 18px; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero p { font-size: .95rem; margin-left: auto; margin-right: auto; text-align: center; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  /* Logo strip — horizontal scroll */
  .logos-strip { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .logos-strip-inner { flex-wrap: nowrap; justify-content: flex-start; padding: 0 20px; gap: 10px; }
  .logos-strip-label { flex-shrink: 0; }
  .logo-pill { flex-shrink: 0; }

  /* Sections */
  section { padding: 56px 0; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub { font-size: .9rem; }

  /* Features — 1 col on mobile */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 22px 18px; display: flex; gap: 16px; align-items: flex-start; }
  .feature-icon { width: 44px; height: 44px; border-radius: 12px; font-size: 1.2rem; flex-shrink: 0; margin-bottom: 0; }
  .feature-card h3 { font-size: .95rem; margin-bottom: 5px; }
  .feature-card p  { font-size: .84rem; }

  /* Steps — mobile */
  .steps { grid-template-columns: 1fr; }
  .step { padding: 24px 20px; display: flex; gap: 20px; align-items: flex-start; text-align: left; }
  .step-visual { margin: 0; flex-shrink: 0; }
  .step-icon-bg { width: 60px; height: 60px; border-radius: 16px; font-size: 1.5rem; }
  .step-num { top: -8px; right: -8px; width: 24px; height: 24px; font-size: .68rem; }
  .step p { margin-bottom: 12px; }

  /* Pricing — full width stack */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 16px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-card.featured { transform: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 22px 18px; }

  /* CTA */
  .cta-box { padding: 44px 24px; border-radius: var(--radius-lg); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  /* Policy pages */
  .content-wrap { padding: 36px 18px 60px; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.65rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
