/* ============================================================
   CrisisConnect Limited — site.css
   Commercial platform site for crisisconnect.uk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Cabinet+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #1a3a5c;
  --navy-dark:   #0f2540;
  --navy-light:  #2a5a8c;
  --green:       #2d8c6e;
  --green-light: #3aaf8a;
  --green-pale:  #e8f5f0;
  --amber:       #e07b39;
  --cream:       #faf8f4;
  --warm-grey:   #f0ece6;
  --mid-grey:    #8a8580;
  --text:        #1e1e1e;
  --text-light:  #5a5550;
  --white:       #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Cabinet Grotesk', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow:      0 2px 16px rgba(26,58,92,0.08);
  --shadow-lg:   0 8px 40px rgba(26,58,92,0.14);
  --shadow-xl:   0 20px 60px rgba(26,58,92,0.18);

  --max-width:   1200px;
  --nav-height:  72px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text-light); line-height: 1.8; }
p + p { margin-top: 1rem; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.nav .container { height: 100%; display: flex; align-items: stretch; max-width: var(--max-width); width: 100%; }
.section { padding: 88px 0; }
.section--sm { padding: 52px 0; }
.section--lg { padding: 120px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; font-family: var(--font-body); transition: all 0.25s ease; white-space: nowrap; letter-spacing: 0.01em; }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,58,92,0.3); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,140,110,0.35); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--ghost { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { background: rgba(255,255,255,0.18); }
.btn--sm { padding: 10px 22px; font-size: 0.88rem; }
.btn--lg { padding: 17px 38px; font-size: 1.05rem; }
.btn--xl { padding: 20px 48px; font-size: 1.1rem; }

/* ── Navigation ─────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); display: flex; align-items: stretch; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); z-index: 1000; transition: box-shadow 0.3s, background 0.3s; }
.nav.scrolled { box-shadow: var(--shadow); }
.nav.nav--dark { background: rgba(15,37,64,0.97); }
.nav__inner { display: flex; align-items: center; height: 100%; gap: 24px; width: 100%; }
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 8px; }
.nav__logo img, .nav__logo svg { display: block; height: 36px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav__links a { padding: 8px 14px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: all 0.2s; }
.nav__links a:hover, .nav__links a.active { color: var(--navy); background: var(--warm-grey); }
.nav--dark .nav__links a { color: rgba(255,255,255,0.7); }
.nav--dark .nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav--dark .nav__hamburger span { background: var(--white); }
.nav__mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); padding: 16px 24px 28px; box-shadow: var(--shadow-lg); flex-direction: column; gap: 4px; z-index: 999; }
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 12px 16px; border-radius: var(--radius); font-weight: 500; color: var(--text); border-bottom: 1px solid var(--warm-grey); font-size: 0.95rem; }
.nav__mobile .btn { margin-top: 12px; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: calc(var(--nav-height) + 80px) 0 96px; background: var(--navy-dark); color: var(--white); position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__bg::before { content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(45,140,110,0.18) 0%, transparent 70%); top: -200px; right: -200px; }
.hero__bg::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(42,90,140,0.25) 0%, transparent 70%); bottom: -100px; left: -100px; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(45,140,110,0.2); color: rgba(255,255,255,0.9); padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; border: 1px solid rgba(45,140,110,0.4); }
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero h1 { color: var(--white); margin-bottom: 24px; font-weight: 700; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.65); font-weight: 300; }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.72); max-width: 520px; margin-bottom: 40px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden; }
.hero__stat { padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.12); text-align: center; }
.hero__stat:last-child { border-right: none; }
.hero__stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero__stat-num span { color: var(--green-light); }
.hero__stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 0.06em; }
.hero__visual { position: relative; }
.hero__screen { background: var(--navy); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.4); }
.hero__screen-bar { background: rgba(255,255,255,0.06); padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero__screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero__screen-dot:nth-child(1) { background: #ff5f57; }
.hero__screen-dot:nth-child(2) { background: #ffbd2e; }
.hero__screen-dot:nth-child(3) { background: #28ca42; }
.hero__screen-url { flex: 1; background: rgba(255,255,255,0.08); border-radius: 4px; padding: 4px 12px; font-size: 0.75rem; color: rgba(255,255,255,0.4); font-family: monospace; }
.hero__screen-body { padding: 24px; }
.hero__screen-body--compact { padding: 16px; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-title { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.dash-badge { background: var(--green); color: white; font-size: 0.7rem; padding: 3px 8px; border-radius: 50px; font-weight: 600; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.dash-stat { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 12px; border: 1px solid rgba(255,255,255,0.08); }
.dash-stat-n { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.dash-stat-l { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 3px; }
.dash-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.dash-module { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 8px 10px; display: flex; align-items: center; gap: 6px; }
.dash-module-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.dash-module-name { font-size: 0.7rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.hero__screen--compact { padding-top: 40px; }
.hero__float { position: absolute; background: var(--white); border-radius: var(--radius-lg); padding: 14px 18px; box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 12px; }
.hero__float--1 { bottom: -20px; left: -30px; }
.hero__float--2 { top: 60px; right: -24px; }
.hero__float-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hero__float-icon--green { background: var(--green-pale); color: var(--green); }
.hero__float-icon--navy { background: rgba(26,58,92,0.08); color: var(--navy); }
.hero__float-text { font-size: 0.82rem; }
.hero__float-label { font-weight: 600; color: var(--navy); display: block; line-height: 1.2; }
.hero__float-sub { color: var(--mid-grey); display: block; font-size: 0.75rem; }

/* ── Logo bar ─────────────────────────────────────────────── */
.logo-bar { padding: 32px 0; border-top: 1px solid rgba(26,58,92,0.08); border-bottom: 1px solid rgba(26,58,92,0.08); background: var(--cream); }
.logo-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-bar__label { font-size: 0.78rem; color: var(--mid-grey); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.logo-bar__org { font-family: var(--font-display); font-size: 1rem; color: var(--text-light); font-weight: 400; opacity: 0.7; }

/* ── Section headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header__eyebrow { display: inline-block; color: var(--green); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.section-header h2 { color: var(--navy); margin-bottom: 18px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.08rem; }
.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }

/* ── Cards ───────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid rgba(26,58,92,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card__icon { width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 1.4rem; }
.card__icon--green { background: var(--green-pale); color: var(--green); }
.card__icon--navy { background: rgba(26,58,92,0.08); color: var(--navy); }
.card__icon--amber { background: rgba(224,123,57,0.1); color: var(--amber); }
.card h3 { color: var(--navy); margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

/* ── Grids ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── Split ───────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--reverse .split__visual { order: -1; }
.split__content h2 { color: var(--navy); margin-bottom: 20px; }
.split__content p { margin-bottom: 16px; }
.split__visual { border-radius: var(--radius-xl); overflow: hidden; }

/* ── Module grid ─────────────────────────────────────────── */
.module-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.module-pill { background: var(--white); border: 1.5px solid rgba(26,58,92,0.1); border-radius: 50px; padding: 10px 18px; display: flex; align-items: center; gap: 8px; cursor: default; }
.module-pill i { color: var(--green); font-size: 0.9rem; }
.module-pill span { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.module-pill--network { border-color: var(--navy); background: rgba(26,58,92,0.04); }
.module-pill--network i { color: var(--navy); }

/* ── Feature list ────────────────────────────────────────── */
.feature-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-light); min-width: 0; }
.feature-list li a { color: inherit; text-decoration: underline; word-break: normal; }
.feature-list li > *:last-child { min-width: 0; flex: 1; }
.feature-list li::before { content: ''; width: 20px; height: 20px; min-width: 20px; background: var(--green-pale); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232d8c6e' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; margin-top: 2px; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--white); border-radius: var(--radius-xl); padding: 40px; border: 2px solid rgba(26,58,92,0.08); position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card--featured { border-color: var(--navy); background: var(--navy); color: var(--white); }
.pricing-card--featured h3 { color: var(--white); }
.pricing-card--featured p { color: rgba(255,255,255,0.7); }
.pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--white); padding: 5px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.04em; text-transform: uppercase; }
.pricing-card__tier { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.pricing-card--featured .pricing-card__tier { color: var(--green-light); }
.pricing-card h3 { margin-bottom: 12px; }
.pricing-card__price { margin: 24px 0; }
.pricing-card__amount { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.pricing-card--featured .pricing-card__amount { color: var(--white); }
.pricing-card__amount span { font-size: 1.2rem; font-weight: 400; }
.pricing-card__period { font-size: 0.85rem; color: var(--mid-grey); margin-top: 4px; }
.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,0.5); }
.pricing-card__features { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-light); }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.8); }
.pricing-card__features li::before { content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232d8c6e' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; background-color: var(--green-pale); margin-top: 1px; }
.pricing-card--featured .pricing-card__features li::before { background-color: rgba(45,140,110,0.25); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%233aaf8a' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E"); }
.pricing-card__cta { margin-top: 32px; display: block; text-align: center; }
.pricing-note { text-align: center; margin-top: 32px; color: var(--mid-grey); font-size: 0.88rem; }
.pricing-note a { color: var(--green); font-weight: 500; }

/* ── Module cards (modules page) ────────────────────────── */
.module-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(26,58,92,0.08); transition: all 0.25s; position: relative; overflow: hidden; }
.module-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); }
.module-card--network::before { background: var(--navy); }
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.module-card__icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.module-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.module-card p { font-size: 0.9rem; margin-bottom: 16px; }
.module-card__features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.module-card__features li { font-size: 0.83rem; color: var(--text-light); display: flex; gap: 8px; align-items: flex-start; }
.module-card__features li::before { content: '›'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.module-card__price { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(26,58,92,0.08); font-size: 0.85rem; color: var(--mid-grey); }
.module-card__price strong { color: var(--navy); }

/* ── Testimonial / quote ─────────────────────────────────── */
.quote-section { background: var(--navy); padding: 80px 0; }
.quote-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-inner blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.9rem); color: var(--white); line-height: 1.5; font-style: italic; font-weight: 300; margin-bottom: 28px; }
.quote-inner cite { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-style: normal; }

/* ── Stats band ──────────────────────────────────────────── */
.stats-band { background: var(--green); padding: 60px 0; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stats-band__item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.2); }
.stats-band__item:last-child { border-right: none; }
.stats-band__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stats-band__label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { background: var(--navy-dark); padding: 88px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 40px; font-size: 1.08rem; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-band--green { background: var(--green); }
.cta-band--green h2 { color: var(--white); }
.cta-band--green p { color: rgba(255,255,255,0.8); }

/* ── How it works ────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--green-pale), var(--green), var(--green-pale)); z-index: 0; }
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step__num { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--navy); }
.step h4 { color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.88rem; }

/* ── Accordion ───────────────────────────────────────────── */
.accordion { border: 1px solid rgba(26,58,92,0.1); border-radius: var(--radius-lg); overflow: hidden; }
.accordion__item { border-bottom: 1px solid rgba(26,58,92,0.08); }
.accordion__item:last-child { border-bottom: none; }
.accordion__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; font-size: 1rem; font-weight: 600; color: var(--navy); background: var(--white); text-align: left; gap: 16px; transition: background 0.2s; font-family: var(--font-body); }
.accordion__btn:hover { background: var(--cream); }
.accordion__btn i { font-size: 1rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.accordion__btn.open i { transform: rotate(45deg); }
.accordion__body { display: none; padding: 0 28px 22px; color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
.accordion__body.open { display: block; }

/* ── Form ────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form label { font-size: 0.85rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.form label .req { color: var(--green); }
.form input, .form textarea, .form select { padding: 13px 18px; border: 1.5px solid rgba(26,58,92,0.15); border-radius: var(--radius); font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; font-family: var(--font-body); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,140,110,0.12); }
.form textarea { resize: vertical; min-height: 130px; }
.form__success { display: none; background: var(--green-pale); border: 1.5px solid var(--green); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.form__success i { font-size: 2.5rem; color: var(--green); margin-bottom: 12px; }
.form__success h4 { color: var(--navy); margin-bottom: 6px; }

/* ── Page header ─────────────────────────────────────────── */
.page-header { padding: calc(var(--nav-height) + 56px) 0 56px; background: var(--navy); color: var(--white); }
.page-header__eyebrow { color: var(--green-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.72); max-width: 580px; font-size: 1.1rem; }

/* ── Trust signals ───────────────────────────────────────── */
.trust-item { display: flex; align-items: flex-start; gap: 16px; }
.trust-item__icon { width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.trust-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.trust-item p { font-size: 0.88rem; margin: 0; }

/* ── Prose ───────────────────────────────────────────────── */
.prose { max-width: 720px; }
.prose h2 { color: var(--navy); font-size: 1.5rem; margin: 44px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green-pale); }
.prose h3 { color: var(--navy); font-size: 1.1rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 12px 0 16px 20px; list-style: disc; }
.prose ul li { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 6px; }
.prose a { color: var(--green); text-decoration: underline; }

/* ── Entity badge ────────────────────────────────────────── */
.entity-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: var(--radius); font-size: 0.8rem; font-weight: 600; }
.entity-badge--ltd { background: rgba(26,58,92,0.08); color: var(--navy); border: 1px solid rgba(26,58,92,0.15); }
.entity-badge--cic { background: var(--green-pale); color: var(--green); border: 1px solid rgba(45,140,110,0.25); }
.footer .entity-badge--ltd { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.footer .entity-badge--cic { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.85); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer__brand img { height: 32px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.8); }
.footer__badges { display: flex; flex-direction: column; gap: 8px; }
.footer__col h5 { color: var(--white); font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.88rem; color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; }
.footer__bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--white); }

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-green { color: var(--green); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-green-pale { background: var(--green-pale); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.inline-block { display: inline-block; }
.spacer { padding: 8px 0; }

/* ── Animations ──────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  @media (max-width: 540px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
  .steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .steps::before { display: none; }
  .module-grid { grid-template-columns: repeat(3,1fr); }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stats-band__item { border-right: none; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stats-band__item:nth-child(even) { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__visual { order: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .section--lg { padding: 80px 0; }
  .module-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero__stat:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .module-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .grid-4 { grid-template-columns: 1fr; }
}

.pricing-card--platinum { background: var(--navy); border-color: var(--navy); }
.pricing-card--platinum h3 { color: white; }
.pricing-card--platinum p { color: rgba(255,255,255,0.7); }
.pricing-card--platinum .pricing-card__tier { color: var(--green-light); }
.pricing-card--platinum .pricing-card__amount { color: white; }
.pricing-card--platinum .pricing-card__amount span:first-child { color: rgba(255,255,255,0.6); }
.pricing-card--platinum .pricing-card__period { color: rgba(255,255,255,0.5); }
.pricing-card--platinum .pricing-card__features li { color: rgba(255,255,255,0.85); }
.pricing-card--platinum .pricing-card__features li::before { color: var(--green-light); }
.pricing-card__badge--gold { background: linear-gradient(135deg, #c0a030, #e8c84a); color: #1a1a00; }
