/* ============================================================
   DigiCampus — shared stylesheet (LIGHT THEME · ZINC)
   Font: Inter · Container: 1440px · Generous spacing.
   One source of truth for the whole marketing site.
   ============================================================ */

:root {
  /* ---- Type families ---- */
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* ---- Zinc neutral scale ---- */
  --zinc-50:  #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;

  /* ---- Semantic (zinc-based) ---- */
  --bg: #ffffff;
  --bg-soft: #fcf5eb;          /* warm cream — matches labelwala.store section background */
  --bg-softer: var(--zinc-100);
  --card: #ffffff;
  --line: var(--zinc-200);
  --line-strong: var(--zinc-300);

  --text: var(--zinc-900);
  --text-soft: var(--zinc-600);
  --muted: var(--zinc-500);

  /* Primary = zinc-900 (swap to brand color when logo is ready) */
  --primary: var(--zinc-900);
  --primary-hover: var(--zinc-800);
  --on-primary: #ffffff;
  --accent: var(--zinc-900);

  /* ---- Corporate navy accent (pricing & emphasis) ---- */
  --navy-50:  #eef2ff;
  --navy-100: #e0e7ff;
  --navy-600: #1e40af;
  --navy-700: #1d4ed8;
  --navy-800: #1e3a8a;
  --navy-900: #172554;
  --navy-ink: #0f172a;   /* slate-900, deep corporate base */
  --navy: var(--navy-800);
  --navy-soft: var(--navy-50);
  --navy-ring: rgba(30, 64, 175, 0.18);

  /* ---- Effects ---- */
  --shadow-sm: 0 1px 2px rgba(9, 9, 11, 0.04);
  --shadow: 0 8px 30px rgba(9, 9, 11, 0.06);
  --shadow-lg: 0 24px 60px rgba(9, 9, 11, 0.10);
  --radius: 18px;
  --radius-sm: 12px;

  /* ---- Layout ---- */
  --maxw: 1440px;
  --gutter: 48px;

  /* ---- Spacing scale (compact) ---- */
  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 28px; --s-7: 36px; --s-8: 48px; --s-9: 60px; --s-10: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.home { background: #F4EFEA; }   /* home page background */
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.accent-text { color: var(--text); } /* placeholder hook; becomes brand color w/ logo */

/* ---------- Flaticon UIcons (solid rounded) baseline ---------- */
i[class^="fi-sr-"], i[class*=" fi-sr-"],
.fi { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
i[class^="fi-sr-"]::before, i[class*=" fi-sr-"]::before { line-height: 1; display: block; }

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }

/* ---------- Buttons: per-character text-roll on hover ---------- */
/* Colour stays put. On hover each letter rolls up to reveal an identical copy,
   staggered per character. Markup built in main.js. */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 16px;
  border: 1px solid transparent; cursor: pointer; line-height: 1; white-space: nowrap;
  transition: box-shadow .28s ease;
}

/* Text-roll: each letter is a 2-line column clipped to one line; on hover it
   slides up to reveal an identical copy, staggered per character (--i). */
.btn-label { display: inline-flex; align-items: center; }
.btn-char { display: inline-block; overflow: hidden; height: 1.2em; vertical-align: top; }
.btn-char-inner {
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--i, 0) * 0.022s);
}
.btn-char-inner > span { display: block; height: 1.2em; line-height: 1.2em; }
.btn:hover .btn-char-inner { transform: translateY(-50%); }

/* Variant colours */
.btn-primary { background: var(--zinc-900); color: #fff; }
.btn-ghost   { background: #fff; border-color: var(--line-strong); color: var(--text); }
.btn-wa      { background: #25d366; color: var(--navy-ink); }
.btn-wa-white { background: #fff; color: var(--text); border-color: var(--line-strong); }
.btn-wa-white:hover { border-color: #25d366; }
.btn-wa-ic { width: 1.15em; height: 1.15em; flex: none; vertical-align: -0.2em; }
.btn-navy    { background: var(--navy-700); color: #fff; }
.btn-lg { padding: 17px 30px; font-size: 17px; }

/* ---------- Header (floating rounded pill) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  padding: 16px var(--gutter);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 32px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  background: #fff;
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-soft); font-weight: 500; font-size: 16px; transition: color .12s ease; }
.nav-links a:hover { color: var(--text); }

/* Modules dropdown */
.dropdown { position: relative; }
.dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.dropdown > a .caret { font-size: 14px; color: var(--muted); transition: transform .18s ease; }
.dropdown:hover > a .caret, .dropdown:focus-within > a .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 150%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 12px; min-width: 500px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .15s ease, transform .15s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
/* Invisible bridge across the gap so the cursor can travel from the link
   down to the menu without it auto-hiding mid-way. */
.dropdown-menu::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: -24px; height: 24px;
}
.dropdown-menu a {
  display: flex; gap: 12px; align-items: center; padding: 11px 14px; border-radius: 12px;
  color: var(--text); font-weight: 500; font-size: 15px;
}
.dropdown-menu a:hover { background: var(--zinc-50); }
.dropdown-menu .ic { font-size: 19px; }

/* Compact single-column dropdown (Industries, Resources, Company) */
.dropdown-menu.simple { grid-template-columns: 1fr; min-width: 230px; }

/* Mega menu (Modules) — 4-column grid, icon tile + title.
   Centered under the navbar (fixed to the viewport) rather than hanging off
   the left-aligned "Modules" link. */
.dropdown-menu.mega {
  grid-template-columns: repeat(4, minmax(0, 1fr)); min-width: 940px; padding: 16px; gap: 2px;
  /* .nav has a backdrop-filter, so it is the containing block for this fixed
     menu — top:100% therefore sits right at the bottom of the header pill. */
  position: fixed; top: 100%;
}
/* Bridge extends left so the cursor can reach the centered menu from the
   left-positioned trigger without it auto-closing. */
.dropdown-menu.mega::before { top: -48px; height: 48px; left: -300px; right: 0; }
.dropdown-menu.mega a { align-items: center; gap: 12px; padding: 12px 14px; }
.dropdown-menu.mega .mi-ic {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; font-size: 19px;
  background: var(--zinc-100); color: var(--primary);
  transition: background .15s ease, color .15s ease;
}
.dropdown-menu.mega a:hover .mi-ic { background: var(--primary); color: var(--on-primary); }
.dropdown-menu.mega strong { font-size: 15px; font-weight: 500; line-height: 1.2; }
/* Footer CTA spans all columns */
.dropdown-menu.mega .mega-cta {
  grid-column: 1 / -1; justify-content: center; gap: 8px;
  margin-top: 6px; padding: 13px; border-radius: 12px;
  background: var(--zinc-100); color: var(--primary); font-weight: 700; font-size: 14px;
}
.dropdown-menu.mega .mega-cta:hover { background: var(--zinc-200); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 28px; cursor: pointer; color: var(--text); }

/* ---------- Section scaffolding (labelwala rhythm: py-20/24) ---------- */
.section { padding: 80px 0; }                 /* py-20 */
.section-lg { padding: 96px 0; }              /* py-24 */
.section-sm { padding: 56px 0; }              /* py-14 */
.section-alt { background: var(--bg-soft); }  /* light-navy tint, alternate */
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--zinc-500);
  background: var(--zinc-100); padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
/* Type scale aligned to labelwala.store (Inter, larger headings) */
.section-title { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.15; } /* 30 → 36px */
.section-sub { color: var(--text-soft); font-size: 1.125rem; max-width: 640px; margin-top: 12px; line-height: 1.6; } /* 18px */
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: var(--s-7); }

/* ---------- Hero (Odoo-style, centered) ---------- */
.hero {
  /* Fill the full first fold (viewport minus the sticky header) */
  min-height: calc(100vh - 104px);
  display: flex; align-items: center;
  padding: var(--s-7) 0;
  background: #fff;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 100%;
}
/* Highlighted eyebrow pill */
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--primary);
  background: var(--zinc-100); border: 1px solid var(--zinc-200);
  padding: 8px 16px; box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-family: 'Caveat', cursive;
  font-size: clamp(3.25rem, 7vw, 5.5rem); line-height: 1.05;
  letter-spacing: 0; font-weight: 700;
} /* Caveat handwriting — larger to match its small x-height, exactly 2 lines */
/* Each segment stays on its own line — exactly 2 lines */
.hero h1 .h1-line { display: block; white-space: nowrap; }
.hero p.lead {
  font-size: 1.25rem; color: var(--text-soft); margin-top: var(--s-5);
  max-width: 620px; line-height: 1.55;
} /* 20px */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: var(--s-6); }
.hero-trust { margin-top: var(--s-5); color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.hero-trust .dot { width: 9px; height: 9px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }

/* Highlighted words — Odoo hand-drawn highlight SVG behind text */
.hero h1 .hl {
  position: relative; display: inline-block;
  padding: 0 .12em; color: inherit;
  isolation: isolate;
}
.hero h1 .hl::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.05em; top: 0.05em;
  background: url("/assets/img/highlights/yellow_highlight_bold_05.svg") no-repeat center / 100% 100%;
  z-index: -1; pointer-events: none;
}
.hero h1 .hl-amber::before {
  background-image: url("/assets/img/highlights/blue_highlight_01.svg");
}

/* Module launcher — horizontal cards (icon + title + 1-line description) */
.hero-apps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: var(--s-8); width: 100%; max-width: 1100px;
}
.hero-apps .app {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 14px 16px; border-radius: 16px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  color: var(--text-soft); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-apps .app:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.hero-apps .app-ic {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 24px; background: var(--zinc-100); color: var(--primary);
  transition: background .2s ease, color .2s ease;
}
.hero-apps .app:hover .app-ic { background: var(--primary); color: var(--on-primary); }
.hero-apps .app-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-apps .app-txt strong { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.2; }
.hero-apps .app-txt small { font-size: 13px; color: var(--muted); line-height: 1.35; }

/* Product mock (launcher grid) */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px;
  box-shadow: var(--shadow-lg);
}
.mock-bar { display: flex; gap: 7px; padding: 4px 4px 18px; }
.mock-bar span { width: 12px; height: 12px; border-radius: 999px; background: var(--line-strong); }
.mock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mock-tile {
  aspect-ratio: 1; border-radius: 16px; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 26px; background: var(--zinc-50);
}
.mock-tile small { display: block; font-size: 10px; color: var(--muted); margin-top: 5px; font-weight: 600; }
.mock-tile.accent { background: var(--zinc-900); color: #fff; border-color: transparent; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--zinc-900); color: #fff; }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 48px; padding: var(--s-5) var(--gutter); }
.trust-strip span { font-weight: 500; font-size: 16px; color: var(--zinc-100); display: flex; align-items: center; gap: 10px; }
.trust-strip span::before { content: "✓"; color: #fff; font-weight: 800; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: var(--s-5); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.module-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  /* labelwala card hover: lift 4px + soft shadow, .25s ease */
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.16); border-color: var(--line-strong); }

/* Module card (compact) */
.mod-card { display: flex; flex-direction: column; height: 100%; padding: 20px; }
.mod-ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-size: 21px; background: var(--zinc-100); margin-bottom: var(--s-3);
}
.mod-card h3 { font-size: 1.25rem; margin-bottom: 5px; } /* 20px */
.mod-card p { color: var(--text-soft); font-size: 0.9375rem; line-height: 1.5; } /* 15px */
.mod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: var(--s-3) 0 var(--s-4); }
.mod-tags span { font-size: 11px; font-weight: 500; color: var(--text-soft); background: var(--zinc-100); border-radius: 999px; padding: 4px 9px; }
.mod-more { margin-top: auto; font-weight: 600; font-size: 13.5px; color: var(--navy-800); }
.mod-more::after {
  content: "→"; display: inline-block; margin-left: 6px;
  transition: transform .25s ease;  /* labelwala arrow slide */
}
.mod-card:hover .mod-more { color: var(--navy-900); }
.mod-card:hover .mod-more::after { transform: translateX(4px); }

/* Outcome card */
.out-ic { font-size: 34px; margin-bottom: var(--s-4); }
.card h3 { letter-spacing: -0.02em; }

/* "Every plan includes" platform strip */
.platform-strip {
  margin-top: var(--s-7); background: var(--zinc-50); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 32px;
  display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap;
}
.platform-strip .lbl { font-weight: 600; font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.platform-strip .items { display: flex; flex-wrap: wrap; gap: 10px; }
.platform-strip .pi { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--text-soft); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; }
.platform-strip .pi i { font-size: 15px; }

/* Coming-soon badge (kept for optional future use) */
.mod-card .soon { position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 600; color: var(--zinc-500); background: var(--zinc-100); border-radius: 999px; padding: 4px 10px; }
.mod-card { position: relative; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); counter-reset: step; }
.step { background: var(--zinc-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 44px; height: 44px; border-radius: 12px; background: var(--zinc-900); color: #fff;
  font-weight: 800; font-size: 18px; display: grid; place-items: center; margin-bottom: var(--s-4);
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 16px; line-height: 1.6; }

/* ---------- Feature band (multi-campus) ---------- */
.band { background: var(--bg-soft); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
.band ul.checks { list-style: none; margin-top: var(--s-5); display: grid; gap: var(--s-4); }
.band ul.checks li { padding-left: 36px; position: relative; color: var(--text-soft); font-size: 17px; }
.band ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; color: #fff; font-weight: 800; font-size: 12px;
  width: 22px; height: 22px; border-radius: 999px; background: var(--zinc-900); display: grid; place-items: center;
}

/* ---------- Integrations ---------- */
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: var(--s-5); }
.logo-chip {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 18px 28px; font-weight: 600; font-size: 16px; color: var(--text-soft); box-shadow: var(--shadow-sm);
}
.logo-chip .ic { font-size: 22px; }

/* ---------- Who it's for ---------- */
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: var(--s-5); }
.pill-tag { background: #fff; border: 1px solid var(--line-strong); border-radius: 999px; padding: 12px 22px; font-weight: 500; font-size: 16px; color: var(--text-soft); }

/* ---------- Lead form ---------- */
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: start; }
.lead-aside .btn { width: 100%; margin-top: var(--s-5); }
.lead-aside .alt { margin-top: var(--s-5); color: var(--text-soft); font-size: 16px; }
.lead-aside .alt a { color: var(--zinc-900); font-weight: 600; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 36px; box-shadow: var(--shadow); }
.field { margin-bottom: var(--s-5); }
.field label { display: block; font-weight: 500; font-size: 15px; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 12px;
  font: inherit; font-size: 16px; background: var(--zinc-50); transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--zinc-900); background: #fff;
  box-shadow: 0 0 0 4px rgba(24, 24, 27, 0.08);
}
.field textarea { resize: vertical; min-height: 100px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: 14px; color: var(--muted); margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 36px 12px; }
.form-success.show { display: block; }
.form-success .tick { width: 62px; height: 62px; border-radius: 999px; background: #22c55e; color: #fff; font-size: 30px; display: grid; place-items: center; margin: 0 auto var(--s-4); }
.form-error { display: none; color: #dc2626; font-size: 15px; margin-top: var(--s-3); }
.form-error.show { display: block; }

/* ============================================================
   PRICING — group selector
   ============================================================ */
.pricing-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-7); align-items: start; }

/* Reassurance row under pricing title */
.reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: var(--s-5); }
.reassure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-soft); }
.reassure span i { color: var(--navy-600); font-size: 14px; }

/* Group cards — corporate */
.group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.group-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; cursor: pointer; user-select: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.group-card:hover { border-color: var(--navy-600); box-shadow: 0 4px 16px rgba(15,23,42,0.06); }
.group-card.selected {
  border-color: var(--navy-600); background: #fff;
  box-shadow: 0 0 0 3px var(--navy-ring), 0 8px 24px rgba(15,23,42,0.08);
}
.group-card .check {
  position: absolute; top: 22px; right: 22px; width: 24px; height: 24px; border-radius: 7px;
  border: 1.5px solid var(--line-strong); background: #fff; display: grid; place-items: center;
  color: #fff; font-size: 12px; transition: background .15s ease, border-color .15s ease;
}
.group-card.selected .check { background: var(--navy-600); border-color: var(--navy-600); }
.group-card .check i { opacity: 0; transition: opacity .15s ease; }
.group-card.selected .check i { opacity: 1; }

.group-head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--s-3); }
.group-ic {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy-soft); color: var(--navy-700);
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
}
.group-card.selected .group-ic { background: var(--navy-600); color: #fff; }
.group-card h3 { font-size: 1.25rem; margin: 0; } /* 20px */
.group-card .group-desc { color: var(--text-soft); font-size: 0.875rem; margin: -6px 0 var(--s-4); line-height: 1.5; } /* 14px */

/* Module feature checklist (replaces chips) */
.group-mods { list-style: none; display: grid; gap: 9px; margin: 0 0 var(--s-4); padding: 0; }
.group-mods li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text); font-weight: 500; }
.group-mods li i { color: var(--navy-600); font-size: 13px; flex-shrink: 0; }

.group-price { font-size: 13px; color: var(--muted); font-weight: 500; padding-top: var(--s-3); border-top: 1px solid var(--line); }
.group-price b { font-size: 24px; color: var(--text); font-weight: 800; letter-spacing: -0.02em; }

/* Full Suite card (spans both columns, navy) */
.group-card.full-suite {
  grid-column: 1 / -1; display: flex; align-items: center; gap: var(--s-5);
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  border-color: var(--navy-800); color: #fff; padding: 22px 26px;
}
.group-card.full-suite:hover { box-shadow: 0 10px 30px rgba(23,37,84,0.25); }
.group-card.full-suite .group-ic { background: rgba(255,255,255,0.14); color: #fff; flex-shrink: 0; }
.group-card.full-suite h3 { color: #fff; display: flex; align-items: center; }
.group-card.full-suite .group-desc { color: #c7d2fe; margin: 4px 0 0; }
.group-card.full-suite .fs-body { flex: 1; }
.group-card.full-suite .fs-price { text-align: right; flex-shrink: 0; }
.group-card.full-suite .fs-price b { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.group-card.full-suite .fs-price small { display: block; color: #c7d2fe; font-size: 12px; }
.group-card.full-suite .check { position: static; background: rgba(255,255,255,0.18); border-color: transparent; flex-shrink: 0; }
.group-card.full-suite.selected { box-shadow: 0 0 0 3px rgba(199,210,254,0.4), 0 14px 36px rgba(23,37,84,0.35); }
.group-card.full-suite.selected .check { background: #fff; }
.group-card.full-suite.selected .check i { color: var(--navy-800); }
.group-card.full-suite .save { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy-900); background: #c7d2fe; border-radius: 999px; padding: 4px 10px; margin-left: 10px; }

/* Summary panel (sticky) — corporate */
.summary {
  position: sticky; top: 100px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: 0 8px 30px rgba(15,23,42,0.07); overflow: hidden;
}
.summary-hd {
  background: var(--navy-ink); color: #fff; padding: 20px 26px;
  display: flex; align-items: center; gap: 10px;
}
.summary-hd i { color: #c7d2fe; }
.summary-hd h3 { font-size: 17px; margin: 0; color: #fff; }
.summary-bd { padding: 24px 26px; }
.summary-empty { color: var(--muted); font-size: 14.5px; padding: var(--s-3) 0; }
.summary-list { list-style: none; display: grid; gap: 0; margin-bottom: var(--s-4); }
.summary-list li { display: flex; justify-content: space-between; align-items: center; font-size: 15px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.summary-list li:first-child { padding-top: 0; }
.summary-list li span.g { font-weight: 600; }
.summary-list li span.p { color: var(--text-soft); font-variant-numeric: tabular-nums; }

/* Enabled module checklist */
.mod-status { display: grid; gap: 10px; margin: var(--s-5) 0; }
.mod-status .row { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--zinc-400); transition: color .15s ease; }
.mod-status .row i { width: 18px; }
.mod-status .row.on { color: var(--text); font-weight: 500; }
.mod-status .row.on i.dot { color: #16a34a; }
.mod-status .row .dot { color: var(--zinc-300); }

.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: var(--s-4) 0; border-top: 2px solid var(--navy-ink); margin-top: var(--s-2); }
.summary-total .label { font-weight: 600; font-size: 15px; }
.summary-total .amount { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy-ink); }
.summary-total .amount small { font-size: 13px; font-weight: 500; color: var(--muted); }
.summary .btn { width: 100%; margin-top: var(--s-3); }
.summary .btn-navy { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.summary .note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.summary .trust-row { display: grid; gap: 8px; margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.summary .trust-row .t { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-soft); }
.summary .trust-row .t i { color: #16a34a; font-size: 13px; }

@media (max-width: 980px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 560px) {
  .group-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--zinc-950); color: var(--zinc-300); padding: var(--s-9) 0 var(--s-6); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-7); }
.site-footer .brand-logo { filter: brightness(0) invert(1); }
.footer-tag { color: var(--zinc-400); font-size: 16px; margin-top: var(--s-4); max-width: 320px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--s-4); }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--zinc-400); font-size: 16px; transition: color .12s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: var(--s-7); padding-top: var(--s-5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--zinc-500); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  :root { --gutter: 32px; }
  .module-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1240px) {
  /* Avoid the wide 4-col mega menu overflowing on narrower desktops */
  .dropdown-menu.mega { grid-template-columns: repeat(2, minmax(0, 1fr)); min-width: 540px; }
}
@media (max-width: 1100px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .module-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .hero { min-height: 0; padding: var(--s-8) 0 var(--s-7); }
  .hero-apps { grid-template-columns: repeat(2, 1fr); }
  .band-grid, .lead-grid { grid-template-columns: 1fr; }
  .cols-3, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2.75rem, 11vw, 3.5rem); }
  .hero h1 .h1-line { display: inline; white-space: normal; }
  .hero-apps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --gutter: 22px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 96px; left: var(--gutter); right: var(--gutter); background: #fff;
    border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 8px 0 0; min-width: 0; grid-template-columns: 1fr; }
  .nav-links.open .dropdown-menu::before { display: none; }
}
@media (max-width: 700px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cols-4, .cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 400px) {
  .module-grid { grid-template-columns: 1fr; }
}
