/* ============================================================
   Webtenna — Stylesheet v3
   Warm light mode with strong brand identity
   Palette: indigo #5b4fcf · sky #4ba8d8 · coral #f06b4f
            warm neutrals · gradient accents throughout
   ============================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Brand gradient — used on hero, CTAs, highlights */
  --grad:         linear-gradient(120deg, #5b4fcf 0%, #4ba8d8 100%);
  --grad-soft:    linear-gradient(120deg, #ede9fb 0%, #ddf0fa 100%);
  --grad-bold:    linear-gradient(120deg, #4a40b8 0%, #3a96c6 100%);

  /* Core palette */
  --indigo:       #5b4fcf;
  --indigo-dark:  #4a40b8;
  --indigo-light: #ede9fb;
  --sky:          #4ba8d8;
  --sky-light:    #ddf0fa;
  --coral:        #f06b4f;
  --coral-light:  #fef0ec;
  --gold:         #f0a930;
  --green:        #2da870;
  --green-light:  #e6f7f0;

  /* Neutrals — warm-tinted */
  --bg-base:    #faf9f7;
  --bg-surface: #f3f1ee;
  --bg-card:    #ffffff;
  --bg-ink:     #1a1628;   /* near-black for footer/nav icon */

  /* Text */
  --text-primary:   #1a1628;
  --text-secondary: #56526e;
  --text-muted:     #9994b4;

  /* Borders */
  --border:     #e5e1f0;
  --border-mid: #cfc9e8;

  /* Radii */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;

  /* Shadows */
  --sh-card: 0 2px 16px rgba(91,79,207,0.07);
  --sh-lift: 0 8px 32px rgba(91,79,207,0.13);
  --sh-glow: 0 4px 24px rgba(91,79,207,0.22);

  /* Type */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;

  /* Backward-compat aliases so inline styles on pages don't break */
  --radius-sm:   var(--r-sm);
  --radius-md:   var(--r-md);
  --radius-lg:   var(--r-lg);
  --radius-xl:   var(--r-xl);
  --shadow-card: var(--sh-card);
  --shadow-lift: var(--sh-lift);
  --shadow-glow: var(--sh-glow);
  --accent:      var(--indigo);
  --accent-light: var(--indigo-light);
  --border-glow: var(--border-mid);
  --bg-card-alt: var(--bg-surface);
  --transition:  var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 4px; }

/* No dark blobs */
.bg-blobs { display: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Gradient text — the brand signature */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2.5px;
  background: var(--grad);
  border-radius: 2px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 28px; }
.section        { padding: 96px 0; }
.section--alt   { background: var(--bg-surface); }
.section--brand {
  /* Subtle diagonal colour wash */
  background: linear-gradient(160deg, #eeeafa 0%, #ddf0fa 100%);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.nav__logo img { width: 32px; height: 32px; object-fit: contain; }

/* Logo wordmark: gradient on the brand name */
.nav__logo .logo-word {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--text-primary); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; z-index: 110; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform var(--ease), opacity var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed; inset: 0;
  background: rgba(250,249,247,0.98);
  backdrop-filter: blur(18px);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.nav__mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--text-secondary); transition: color var(--ease);
}
.nav__mobile a:hover { color: var(--text-primary); }

/* Mobile nav action buttons — keep consistent sizing/spacing */
.nav__mobile .btn--login {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--r-md);
  color: var(--text-secondary);
  border-color: var(--border-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav__mobile .btn--login svg {
  width: 18px; height: 18px;
}
.nav__mobile .btn--primary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--r-md);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r-md);
  font-size: 0.92rem; font-weight: 600; letter-spacing: -0.01em;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 28px rgba(91,79,207,0.35);
}

.btn--outline {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1.5px solid var(--border-mid);
}
.btn--outline:hover { border-color: var(--indigo); color: var(--indigo); }

.btn--ghost { background: transparent; color: var(--text-secondary); padding: 10px 16px; }
.btn--ghost:hover { color: var(--text-primary); }

.btn--lg { padding: 15px 36px; font-size: 1rem; border-radius: var(--r-lg); }

/* White button — for use on coloured backgrounds */
.btn--white {
  background: #fff;
  color: var(--indigo);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.btn--white:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.18); }

/* ── Cards ───────────────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--r-lg);
}

.card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--sh-lift);
  transform: translateY(-3px);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;

  /* Warm ivory base with a brand-gradient wash bleeding in from top-left */
  background-color: #f7f5fd;
  background-image:
    radial-gradient(ellipse 80% 60% at -10% 0%, rgba(91,79,207,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 110% 20%, rgba(75,168,216,0.12) 0%, transparent 55%),
    radial-gradient(circle, #ccc7e8 1px, transparent 1px);
  background-size: auto, auto, 30px 30px;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg-base));
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Eyebrow badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid var(--border-mid);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--indigo);
  margin-bottom: 26px;
  box-shadow: 0 2px 8px rgba(91,79,207,0.1);
  backdrop-filter: blur(8px);
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.78); }
}

.hero__heading {
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero__sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero__trust {
  margin-top: 44px;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-size: 0.84rem;
}
.hero__trust-faces { display: flex; }
.hero__trust-face {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #f7f5fd;
  background: linear-gradient(135deg, var(--indigo-light), var(--sky-light));
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: var(--indigo);
}
.hero__trust-face:first-child { margin-left: 0; }

/* Hero visual */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__mockup { width: 100%; max-width: 460px; position: relative; }

.hero__browser {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lift), 0 2px 4px rgba(0,0,0,0.04);
}
.hero__browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: var(--bg-surface);
  border-bottom: 1.5px solid var(--border);
}
.hero__browser-dot { width: 9px; height: 9px; border-radius: 50%; }
.hero__browser-dot:nth-child(1) { background: #ff6b6b; }
.hero__browser-dot:nth-child(2) { background: #ffd166; }
.hero__browser-dot:nth-child(3) { background: #06d6a0; }
.hero__browser-url {
  flex: 1; margin-left: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 12px;
  font-size: 0.76rem; color: var(--text-muted); font-family: monospace;
}
.hero__browser-content { padding: 20px; }

/* Mock site internals */
.mock-site-header {
  background: linear-gradient(120deg, var(--indigo-light), var(--sky-light));
  border-radius: 8px; height: 44px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px; padding: 0 14px;
}
.mock-site-logo  { width: 22px; height: 22px; background: var(--grad); border-radius: 6px; }
.mock-site-nav   { display: flex; gap: 10px; margin-left: auto; }
.mock-site-nav-item { height: 7px; border-radius: 4px; background: var(--border-mid); }

.mock-site-hero  { background: var(--bg-surface); border-radius: 8px; padding: 16px; margin-bottom: 14px; }
.mock-site-hero h { height: 12px; background: var(--border-mid); border-radius: 4px; margin-bottom: 7px; display: block; }
.mock-site-hero p { height: 7px; background: var(--border); border-radius: 4px; margin-bottom: 5px; display: block; }
.mock-site-hero p:last-of-type { width: 60%; }
.mock-cta { margin-top: 12px; height: 28px; width: 90px; background: var(--grad); border-radius: 8px; }

.mock-site-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mock-card { background: var(--bg-surface); border-radius: 8px; padding: 10px; border: 1px solid var(--border); }
.mock-card-icon { width: 24px; height: 24px; border-radius: 6px; margin-bottom: 6px; }
.mock-card-line { height: 5px; background: var(--border-mid); border-radius: 3px; margin-bottom: 4px; }
.mock-card-line:last-child { width: 60%; background: var(--border); }

/* Floating badges */
.hero__float {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 9px 15px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--sh-lift);
  animation: float-y 4s ease-in-out infinite;
}
.hero__float--1 { top: -14px; right: -18px; animation-delay: 0s; }
.hero__float--2 { bottom: 18px; left: -20px; animation-delay: 1.8s; }
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.float-icon { font-size: 1rem; }

/* ── Stats strip — brand gradient background ─────────────────── */
.stats { position: relative; }

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--grad);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-glow);
}

.stats__item {
  padding: 36px 24px;
  text-align: center;
  position: relative;
}

/* Subtle divider between stat items */
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stats__num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: #fff;
  line-height: 1; margin-bottom: 6px;
}
.stats__label { font-size: 0.84rem; color: rgba(255,255,255,0.78); font-weight: 500; }

/* ── Services ────────────────────────────────────────────────── */
.services__header { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.services__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.services__header p  { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75; }

.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Each service card gets a distinct colour accent on the icon */
.service-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08); }

/* Icon colour variants */
.service-card__icon--indigo { background: var(--indigo-light); }
.service-card__icon--sky    { background: var(--sky-light); }
.service-card__icon--coral  { background: var(--coral-light); }

/* Coloured top border per card */
.service-card--indigo { border-top: 3px solid var(--indigo); }
.service-card--sky    { border-top: 3px solid var(--sky); }
.service-card--coral  { border-top: 3px solid var(--coral); }

.service-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }

/* Description grows to fill available height, pushing tag to bottom */
.service-card p  {
  font-size: 0.91rem; color: var(--text-secondary); line-height: 1.72;
  flex-grow: 1;
}

.service-card__tag {
  display: inline-block; margin-top: 18px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.03em;
  align-self: flex-start;
}
.service-card__tag--onetime {
  background: var(--green-light); color: var(--green); border: 1px solid #b8e8d4;
}
.service-card__tag--monthly {
  background: var(--indigo-light); color: var(--indigo); border: 1px solid var(--border-mid);
}
.service-card__tag--addons {
  background: #fff5e6; color: #c07a10; border: 1px solid #f5d8a0;
}

/* ── How It Works ────────────────────────────────────────────── */
.how__header { text-align: center; max-width: 520px; margin: 0 auto 52px; }
.how__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.how__header p  { color: var(--text-secondary); font-size: 1.05rem; }

.how__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.how__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--indigo), var(--sky));
  opacity: 0.25;
}
.how__step { text-align: center; position: relative; padding: 0 8px; }
.how__step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: #fff;
  margin: 0 auto 18px; position: relative; z-index: 1;
  box-shadow: 0 3px 14px rgba(91,79,207,0.3);
}
.how__step h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.how__step p  { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials__header { text-align: center; max-width: 520px; margin: 0 auto 44px; }
.testimonials__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* Quote grows to fill space, pushing author to bottom */
.testimonial-card__text  {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
  flex-grow: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-card__name { font-size: 0.88rem; font-weight: 700; }
.testimonial-card__role { font-size: 0.78rem; color: var(--text-muted); }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing__header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.pricing__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.pricing__header p  { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75; }

/* align-items: stretch so all three cards reach the same height */
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }

.pricing-card {
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: linear-gradient(160deg, #eeeafa 0%, #ddf0fa 100%);
  border-color: var(--indigo);
  box-shadow: var(--sh-glow);
}
.pricing-card--featured:hover { box-shadow: 0 12px 40px rgba(91,79,207,0.25); }

.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(91,79,207,0.3);
}
.pricing-card__name {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px;
}
.pricing-card__price { margin-bottom: 4px; }
.pricing-card__price .amount {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; line-height: 1; color: var(--text-primary);
}
.pricing-card__price .currency {
  font-size: 1.15rem; font-weight: 700; vertical-align: top; margin-top: 6px; display: inline-block; color: var(--text-secondary);
}
.pricing-card__price .period { font-size: 0.86rem; color: var(--text-muted); font-weight: 500; }
.pricing-card__desc {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
}
/* Features list grows, pushing the button/note to the card bottom */
.pricing-card__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex-grow: 1; }
.pricing-card__feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5;
}
.feat-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 0.6rem; color: #fff;
}
.pricing-card__note { margin-top: 14px; font-size: 0.77rem; color: var(--text-muted); text-align: center; font-style: italic; }
.pricing__footer {
  margin-top: 40px; text-align: center; padding: 24px 28px;
  border-radius: var(--r-lg); background: var(--bg-card); border: 1.5px solid var(--border);
  font-size: 0.92rem; color: var(--text-secondary);
}
.pricing__footer strong { color: var(--text-primary); }

/* ── CTA Banner — bold gradient ──────────────────────────────── */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  padding: 80px 48px; text-align: center;
  background: var(--grad);
  overflow: hidden;
}
/* Decorative rings — on-brand, not techy */
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin-bottom: 14px; color: #fff; }
.cta-banner p  { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 460px; margin: 0 auto 36px; line-height: 1.75; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.contact__info p  { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
.contact__detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--text-secondary); font-size: 0.92rem; }
.contact__detail:first-of-type { margin-top: 18px; }
.contact__detail-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  /* Filter trick to make coloured icon look intentional, not flat */
  filter: drop-shadow(0 2px 6px rgba(91,79,207,0.2));
}

.contact__form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 15px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(91,79,207,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--bg-ink); padding: 56px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer__brand img { width: 26px; height: 26px; filter: brightness(20); }
.footer__brand .logo-word { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer__brand-col p { font-size: 0.87rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 270px; }
.footer__col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.48); transition: color var(--ease); }
.footer__col ul a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; color: rgba(255,255,255,0.26); }
.footer__bottom a { color: rgba(255,255,255,0.26); transition: color var(--ease); }
.footer__bottom a:hover { color: rgba(255,255,255,0.55); }

/* ── Page Header ─────────────────────────────────────────────── */
.page-header {
  padding: 140px 0 80px; text-align: center; position: relative;
  background-color: #f7f5fd;
  background-image:
    radial-gradient(ellipse 70% 50% at -5% 0%, rgba(91,79,207,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 105% 0%, rgba(75,168,216,0.09) 0%, transparent 50%),
    radial-gradient(circle, #ccc7e8 1px, transparent 1px);
  background-size: auto, auto, 30px 30px;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--bg-base));
  pointer-events: none;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.page-header p  { font-size: 1.08rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto; line-height: 1.75; }

/* ── 404 ─────────────────────────────────────────────────────── */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.error-page__num {
  font-family: var(--font-display); font-size: clamp(6rem, 15vw, 10rem); font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.35; margin-bottom: 16px;
}
.error-page h2 { font-size: 1.8rem; margin-bottom: 12px; }
.error-page p  { color: var(--text-secondary); margin-bottom: 36px; }

/* ── Reveal ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }  .mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }  .mb-4  { margin-bottom: 16px; }
.w-full { width: 100%; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual       { display: none; }
  .hero__heading      { font-size: clamp(2rem, 5.5vw, 3rem); }
  .how__steps         { grid-template-columns: repeat(2,1fr); }
  .how__steps::before { display: none; }
  .stats__inner       { grid-template-columns: repeat(2,1fr); }
  .footer__inner      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section              { padding: 60px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger          { display: flex; }
  .services__grid       { grid-template-columns: 1fr; }
  .pricing__grid        { grid-template-columns: 1fr; }
  .testimonials__grid   { grid-template-columns: 1fr; }
  .contact__inner       { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner        { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom       { flex-direction: column; gap: 10px; text-align: center; }
  .form-row             { grid-template-columns: 1fr; }
  .cta-banner           { padding: 56px 24px; }
  .how__steps           { grid-template-columns: 1fr; }
  .page-header          { padding: 110px 0 56px; }
}
@media (max-width: 480px) {
  .hero__actions        { flex-direction: column; align-items: flex-start; }
  .btn--lg              { width: 100%; justify-content: center; }
  .stats__inner         { grid-template-columns: 1fr 1fr; }
  .cta-banner__actions  { flex-direction: column; }
}

/* ── Custom Dropdown (cselect) ───────────────────────────────── */

/*
  Pre-hide native selects that will be replaced by the custom dropdown.
  JS sets display:none inline after enhancement; this rule covers the
  brief period before JS runs so there's no flash of the native control.
*/
.form-group select {
  display: none;
}

.cselect {
  position: relative;
  width: 100%;
  user-select: none;
  font-family: var(--font-body);
}

.cselect__trigger {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.cselect__trigger:hover {
  border-color: var(--border-mid);
}

.cselect.is-open .cselect__trigger {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(91,79,207,0.1);
}

.cselect__trigger:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
}

.cselect__value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cselect__value--placeholder {
  color: var(--text-muted);
}

/* Animated chevron */
.cselect__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), color var(--ease);
}

.cselect.is-open .cselect__arrow {
  transform: rotate(180deg);
  color: var(--indigo);
}

/* Dropdown listbox */
.cselect__list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--bg-card);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(91,79,207,0.14), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 200;
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px;

  /* Animation */
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition:
    opacity 0.2s cubic-bezier(0.4,0,0.2,1),
    transform 0.2s cubic-bezier(0.4,0,0.2,1);
}

.cselect__list.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Custom scrollbar on the listbox */
.cselect__list::-webkit-scrollbar { width: 4px; }
.cselect__list::-webkit-scrollbar-track { background: transparent; }
.cselect__list::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }

/* Individual option */
.cselect__option {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.91rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
  list-style: none;
}

.cselect__option:hover,
.cselect__option.is-focused {
  background: var(--indigo-light);
  color: var(--indigo);
}

.cselect__option.is-selected {
  background: var(--indigo-light);
  color: var(--indigo);
  font-weight: 600;
  position: relative;
}

.cselect__option.is-selected::after {
  content: '✓';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  color: var(--indigo);
}

/* ── FAQ Accordion ───────────────────────────────────────────── */
details.faq-item,
details.card {
  /* Prevent default triangle */
}

details.faq-item > summary,
details.card > summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  user-select: none;
  padding: 0;
}

details.faq-item > summary::-webkit-details-marker,
details.card > summary::-webkit-details-marker { display: none; }

/* Animated toggle icon */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--indigo-light);
  color: var(--indigo);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--ease),
    color var(--ease),
    transform 0.3s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
}

.faq-icon--open {
  background: var(--indigo);
  color: #fff;
  transform: rotate(180deg);
}

/* Animated content panel */
.faq-panel {
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1);
}

.faq-panel > p {
  color: var(--text-secondary);
  font-size: 0.91rem;
  line-height: 1.78;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ── Client Login Modal ──────────────────────────────────────── */

/* Trigger button in nav */
.btn--login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid var(--border-mid);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  font-family: var(--font-body);
  white-space: nowrap;
}

.btn--login:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-light);
}

.btn--login svg {
  flex-shrink: 0;
  transition: transform var(--ease);
}

.btn--login:hover svg { transform: translateY(-1px); }

/* Full-screen modal backdrop */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1);
}

.modal.is-open {
  pointer-events: all;
  opacity: 1;
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 40, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Modal card */
.modal__card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  /* Fixed dimensions — never resizes between views */
  width: 440px;
  max-width: calc(100vw - 32px);
  height: 560px;
  box-shadow: 0 24px 80px rgba(91,79,207,0.18), 0 4px 24px rgba(0,0,0,0.1);
  transform: translateY(16px) scale(0.98);
  transition:
    transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
    opacity 0.25s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  overflow: hidden;
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal close button */
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.modal__close:hover {
  background: var(--indigo-light);
  color: var(--indigo);
  border-color: var(--border-mid);
}

/* Modal header */
.modal__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal__logo img {
  width: 30px; height: 30px;
  object-fit: contain;
}

.modal__heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.modal__sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Login form — grows to fill the view height */
#client-login-form,
#forgot-password-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#client-login-form .modal__submit,
#forgot-password-form .modal__submit {
  margin-top: auto;
}

/* Login form fields */
.modal .form-group { margin-bottom: 14px; }

.modal .form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 5px;
}

.modal .form-group input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}

.modal .form-group input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(91,79,207,0.1);
}

.modal .form-group input::placeholder { color: var(--text-muted); }

/* Password field with toggle */
.input-with-toggle { position: relative; }
.input-with-toggle input { padding-right: 44px; }

.input-toggle {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color var(--ease);
}
.input-toggle:hover { color: var(--text-primary); }

/* Error message */
.login-error {
  display: none;
  padding: 10px 14px;
  background: rgba(240,107,79,0.1);
  border: 1px solid rgba(240,107,79,0.3);
  border-radius: var(--r-sm);
  color: var(--coral);
  font-size: 0.84rem;
  margin-bottom: 16px;
  border-radius: 8px;
}

/* Forgot link */
.modal__forgot {
  display: block;
  text-align: right;
  font-size: 0.82rem;
  color: var(--indigo);
  margin-top: -8px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: opacity var(--ease);
}
.modal__forgot:hover { opacity: 0.75; }

/* Submit button */
.modal__submit {
  width: 100%;
  padding: 13px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(91,79,207,0.28);
  transition: filter var(--ease), box-shadow var(--ease), transform var(--ease);
}

.modal__submit:hover { filter: brightness(1.08); box-shadow: 0 6px 24px rgba(91,79,207,0.38); transform: translateY(-1px); }
.modal__submit:active { transform: translateY(0); }
.modal__submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Footer note — pushed to bottom of the flex view */
.modal__footer {
  margin-top: auto;
  padding-top: 16px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.modal__footer a {
  color: var(--indigo);
  text-decoration: none;
}

.modal__footer a:hover { text-decoration: underline; }

/* Divider */
.modal__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.modal__divider::before,
.modal__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Modal views — absolutely stacked so card size never changes ── */
.modal__view {
  position: absolute;
  inset: 0;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition:
    opacity 0.22s cubic-bezier(0.4,0,0.2,1),
    transform 0.22s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.modal__view.is-active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.modal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  font-family: var(--font-body);
  transition: color var(--ease);
}
.modal__back:hover { color: var(--text-primary); }
.modal__back svg { flex-shrink: 0; }

.forgot-success {
  display: none;
  padding: 14px 16px;
  background: var(--green-light);
  border: 1px solid #b8e8d4;
  border-radius: var(--r-sm);
  color: var(--green);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.forgot-success.is-visible { display: block; }

/* Spin animation for loading state */
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile modal — keep card centred, just tighten viewport padding */
@media (max-width: 480px) {
  .modal { padding: 16px; }
  .modal__card {
    height: 560px;
    border-radius: var(--r-lg);
  }
  .modal__view { padding: 36px 24px; }
  .modal__heading { font-size: 1.3rem; }
}

/* Responsive container padding */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .page-header { padding: 100px 0 48px; }
  .page-header h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .cta-banner { border-radius: var(--r-lg); padding: 44px 20px; }
  .card { border-radius: var(--r-md); }
}

/* Ensure mobile menu actions feel cohesive */
@media (max-width: 768px) {
  .nav__mobile {
    gap: 28px;
    padding: 100px 24px 48px;
    overflow-y: auto;
  }
  .nav__mobile a { font-size: 1.75rem; }
}

/* Better hero padding on small screens */
@media (max-width: 640px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 32px); padding-bottom: 60px; }
  .hero__heading { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .hero__sub { font-size: 1rem; }
  .hero__badge { font-size: 0.78rem; padding: 5px 14px 5px 8px; margin-bottom: 20px; }
  .hero__trust { margin-top: 32px; }
  .stats__item { padding: 26px 16px; }
  .stats__num  { font-size: 2rem; }
}

/* Contact page improvements */
@media (max-width: 768px) {
  .contact__inner { gap: 32px; }
  .contact-form-card { padding: 24px 20px; }
}

/* Footer tighter on mobile */
@media (max-width: 480px) {
  .footer { padding: 44px 0 28px; }
  .footer__inner { gap: 20px; }
  .footer__brand-col p { max-width: 100%; }
}