/* ==========================================
   GoCloud Email — Main Stylesheet
   Bootstrap 5 + Premium Enterprise Palette
   ========================================== */

/* ── COLOUR PALETTE ──────────────────────────────────
   BRAND CORE (Cobalt Sky — refreshed 2025)
   #1055E0  Electric Cobalt   (primary)        — more vibrant, premium
   #03195C  Deep Navy         (primary-dark)   — richer, more authoritative
   #7DC3F4  Sky Blue          (primary-light)  — cleaner tint

   EXTENDED ENTERPRISE
   #060D1E  Abyss             (--midnight)     hero/dark BGs — deeper, more luxury
   #1E2B3C  Ink               (--graphite)     refined charcoal
   #3D4E66  Slate             (--cloud-steel)  balanced mid-tone
   #1560F4  Vivid Blue        (--vivid)        high-contrast CTA
   #0EA5D8  Arctic Teal       (--teal)         accent variety
   #0E2F80  Royal             (--royal)        deep section BGs
   #F7A600  Amber Gold        (--gold)         featured/premium — warmer
   #EDF4FF  Frost             (--ice)          lightest bg tint
   ──────────────────────────────────────────────────── */

:root {
    /* ── Core Brand ── */
    --primary:       #1055E0;
    --primary-dark:  #03195C;
    --primary-light: #7DC3F4;
    --steel:         #607590;

    /* ── Extended Enterprise Palette ── */
    --midnight:      #060D1E;
    --graphite:      #1E2B3C;
    --cloud-steel:   #3D4E66;
    --vivid:         #1560F4;
    --teal:          #0EA5D8;
    --royal:         #0E2F80;
    --gold:          #F7A600;
    --gold-dark:     #D98E00;
    --ice:           #EDF4FF;

    /* ── RGB component tokens for rgba() theme-aware usage ── */
    --primary-rgb:        16, 85, 224;
    --primary-light-rgb:  125, 195, 244;
    --vivid-rgb:          21, 96, 244;
    --teal-rgb:           14, 165, 216;
    --gold-rgb:           247, 166, 0;
    --green-rgb:          5, 150, 105;

    /* ── Backgrounds ── */
    --white:         #FFFFFF;
    --bg:            #F4F7FF;
    --bg-2:          #EBF1FF;
    --bg-card:       #FFFFFF;

    /* ── Text ── */
    --text:          #090F1D;
    --text-2:        #2D3748;
    --text-3:        #607590;

    /* ── Borders ── */
    --border:        #DDE6F5;
    --border-blue:   rgba(16,85,224,0.18);

    /* ── Status ── */
    --green:         #059669;
    --yellow:        #D97706;
    --red:           #DC2626;

    /* ── Geometry ── */
    --r:             10px;
    --r-lg:          18px;

    /* ── Shadows — more dimensional ── */
    --shadow:        0 2px 16px rgba(16,85,224,0.07), 0 1px 4px rgba(6,13,30,0.04);
    --shadow-md:     0 8px 40px rgba(16,85,224,0.13), 0 2px 8px rgba(6,13,30,0.06);
    --shadow-blue:   0 8px 36px rgba(16,85,224,0.24);
    --shadow-dark:   0 20px 72px rgba(6,13,30,0.42);
    --shadow-gold:   0 8px 32px rgba(247,166,0,0.26);

    --transition:    all 0.22s ease;

    /* ── Typography Scale — refined ── */
    --fs-h1:        2.75rem;    /* 44px */
    --fs-h2:        2.125rem;   /* 34px */
    --fs-h3:        1.5rem;     /* 24px */
    --fs-h4:        1.25rem;    /* 20px */
    --fs-body:      1rem;       /* 16px */
    --fs-body-lg:   1.125rem;   /* 18px */
    --fs-small:     0.875rem;   /* 14px */
    --lh-heading:   1.18;
    --lh-body:      1.72;

    /* ── Font Families (overridden by admin preset) ── */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 88px; /* offset for fixed navbar */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
table { width: 100%; border-collapse: collapse; }

/* ── LAYOUT ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
.section      { padding: 88px 0; }
.section-alt  { background: var(--bg); }
.section-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text);
    margin-bottom: 0.5em;
    letter-spacing: -0.022em;
}
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.2;  letter-spacing: -0.025em; }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.28; letter-spacing: -0.018em; }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.35; letter-spacing: -0.012em; }
h5 { font-size: 1rem;         font-weight: 600; line-height: 1.4;  letter-spacing: -0.008em; }
h6 { font-size: 0.875rem;     font-weight: 600; line-height: 1.4;  letter-spacing: 0; }
p  { font-family: var(--font-body); color: var(--text-2); margin-bottom: 1rem; font-size: var(--fs-body); line-height: var(--lh-body); }
body { font-family: var(--font-body); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.82); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.07);
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-dark .section-label {
    color: var(--primary-light);
    background: rgba(125,195,244,0.12);
    border-color: rgba(125,195,244,0.2);
}
.section-title  { margin-bottom: 12px; }
.section-sub    { font-size: var(--fs-body-lg); color: var(--text-3); max-width: 640px; margin-bottom: 40px; }
.section-dark .section-sub { color: rgba(255,255,255,0.72); }
.text-center    { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r);
    font-size: 0.94rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.01em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--vivid) 0%, var(--primary) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(var(--vivid-rgb), 0.3), 0 1px 4px rgba(6,13,30,0.08);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0A4EC8 0%, #021550 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.35), 0 2px 8px rgba(6,13,30,0.1);
    color: var(--white);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.2);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: rgba(255,255,255,0.9);
    box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}
.btn-white:hover {
    background: var(--ice);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.28);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.45);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-sm    { padding: 9px 18px; font-size: 0.86rem; }
.btn-lg    { padding: 16px 38px; font-size: 1.02rem; letter-spacing: -0.015em; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: box-shadow 0.22s ease, background 0.22s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.99);
    box-shadow: 0 4px 28px rgba(var(--primary-rgb), 0.09), 0 1px 6px rgba(6,13,30,0.04);
    border-bottom-color: var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
}
.logo img { height: 40px; width: auto; display: block; }
.logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.logo span { color: var(--primary); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links li { position: relative; }
.nav-links a {
    display: block;
    padding: 8px 14px;
    color: var(--text-2);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: rgba(0,71,171,0.07); }
.nav-links .nav-cta {
    background: var(--primary);
    color: #fff;
    padding: 9px 20px;
    border-radius: var(--r);
    font-weight: 600;
    margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--primary-dark); color: #fff; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a::after {
    content: ' ▾';
    font-size: 0.75rem;
    opacity: 0.55;
    vertical-align: middle;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 6px 6px 8px;
    z-index: 200;
    /* Invisible bridge fills the gap so cursor can travel from trigger to menu */
    margin-top: 0;
    padding-top: 14px;
}
/* Bridge: invisible overlay above the menu to prevent mouseout-flicker */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 7px;
    color: var(--text-2);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
.dm-icon { font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text);
    padding: 8px;
}

/* ── MOBILE NAV ── */
.mobile-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 0 0 32px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-3);
    padding: 8px;
}
.mobile-nav-links { padding: 16px 20px; }
.mobile-nav-section { margin-bottom: 24px; }
.mobile-nav-section h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 8px;
    padding: 0 4px;
}
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    color: var(--text-2);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.mobile-nav-links a:hover { background: var(--bg); color: var(--primary); }
.mobile-nav-cta {
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── FLASH MESSAGES ── */
.flash {
    padding: 14px 18px;
    border-radius: var(--r);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.flash-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.flash-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.flash-info    { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }

/* ── HERO ── */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 72px 0 0;
    background: linear-gradient(160deg, #060D1F 0%, #0B1730 45%, #0A1628 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100vw;
    left: 0;
    box-sizing: border-box;
}
/* Animated orbs (homepage) */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.hero-orb-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(var(--vivid-rgb), 0.22) 0%, transparent 70%);
    top: -180px; right: -120px;
    animation: heroOrbFloat 9s ease-in-out infinite alternate;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); /* purple — no theme variable */
    bottom: 20px; left: -100px;
    animation: heroOrbFloat 11s ease-in-out infinite alternate;
    animation-delay: -3s;
}
.hero-orb-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.13) 0%, transparent 70%);
    top: 80px; left: 40%;
    animation: heroOrbFloat 13s ease-in-out infinite alternate;
    animation-delay: -6s;
}
@keyframes heroOrbFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(24px, -24px) scale(1.07); }
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.hero::after { display: none; }

/* Grid texture overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* 2-column hero layout */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { position: relative; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(130,200,229,0.15);
    border: 1px solid rgba(130,200,229,0.35);
    color: var(--primary-light);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.hero h1 .gradient-text {
    background: linear-gradient(90deg, var(--primary-light) 0%, #38D9F5 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero > .container .hero-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.trust-item .check {
    color: var(--primary-light);
    font-weight: 800;
}
/* ── Home hero stats strip — sits OUTSIDE .hero-inner, full container width ── */
.hero-stats {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 48px;
    position: relative;
    z-index: 1;
}
.hero-stat {
    flex: 1;
    padding: 20px 18px;
    border-right: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-num span { color: var(--primary-light); }
.hero-stat-lbl {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
}
/* Hero buttons on dark BG */
.hero .btn-primary {
    background: var(--vivid);
    border-color: var(--vivid);
    box-shadow: 0 6px 24px rgba(0,85,212,0.45);
}
.hero .btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.hero .btn-secondary {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}
.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ── HERO VISUAL (right column) ── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual svg {
    width: 100%;
    max-width: 560px;
    filter: drop-shadow(0 24px 64px rgba(0,0,0,0.4));
}

/* Floating cards on hero visual */
@keyframes floatUp   { 0%,100% { transform: translateY(0);   } 50% { transform: translateY(-12px); } }
@keyframes floatDown { 0%,100% { transform: translateY(0);   } 50% { transform: translateY(10px);  } }
@keyframes pulseRing { 0%,100% { opacity: 0.6; transform: scale(1);    } 50% { opacity: 1;   transform: scale(1.05); } }
@keyframes spinSlow  { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes dash      { to { stroke-dashoffset: -20; } }
.float-a { animation: floatUp   5s ease-in-out infinite; }
.float-b { animation: floatDown 4s ease-in-out infinite 0.5s; }
.float-c { animation: floatUp   6s ease-in-out infinite 1s; }
.pulse-ring { animation: pulseRing 3s ease-in-out infinite; }
.dash-anim  { animation: dash 2s linear infinite; }

@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero { min-height: auto; padding: 110px 0 60px; }
}
/* Legacy hero compatibility */
.hero-bg { display: none; }
.hero-grid { /* kept for overlay */ }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(130,200,229,0.15); border: 1px solid rgba(130,200,229,0.35); color: var(--primary-light); padding: 7px 16px; border-radius: 100px; font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary-light); display: inline-block; animation: pulseRing 2s ease-in-out infinite; }
.hero-inner h1 { color: #fff; }
.hero-inner p   { color: rgba(255,255,255,0.78); }

/* ── ENTERPRISE COLOUR UTILITIES ── */
/* Midnight dark sections */
.section-midnight {
    background: var(--midnight);
    color: #fff;
}
.section-midnight h1, .section-midnight h2,
.section-midnight h3, .section-midnight h4 { color: #fff; }
.section-midnight p { color: rgba(255,255,255,0.75); }

/* Graphite sections */
.section-graphite {
    background: var(--graphite);
    color: #fff;
}

/* Royal deep blue sections */
.section-royal {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--royal) 100%);
    color: #fff;
}
.section-royal h1, .section-royal h2,
.section-royal h3, .section-royal h4 { color: #fff; }
.section-royal p { color: rgba(255,255,255,0.78); }

/* Teal accent sections */
.section-teal {
    background: linear-gradient(135deg, #0A3B5C 0%, #0891B2 100%);
    color: #fff;
}

/* Gold accent badges */
.badge-gold {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    color: var(--gold-dark);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.badge-teal {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(8,145,178,0.1);
    border: 1px solid rgba(8,145,178,0.25);
    color: #0891B2;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.badge-vivid {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,85,212,0.1);
    border: 1px solid rgba(0,85,212,0.25);
    color: var(--vivid);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Icon boxes — extended palette */
.icon-teal    { background: rgba(8,145,178,0.1);    color: var(--teal); }
.icon-midnight{ background: rgba(11,26,53,0.08);    color: var(--midnight); }
.icon-gold    { background: rgba(245,158,11,0.1);   color: var(--gold-dark); }
.icon-graphite{ background: rgba(46,58,75,0.08);    color: var(--graphite); }

/* Enterprise card accents */
.card-featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.card-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.card-enterprise {
    border-color: var(--midnight);
    background: linear-gradient(135deg, var(--midnight) 0%, #0D2456 100%);
    color: #fff;
}
.card-enterprise h3 { color: #fff; }
.card-enterprise p  { color: rgba(255,255,255,0.75); }

/* ── CARDS ── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: var(--transition);
    height: 100%;
}
.card:hover {
    border-color: rgba(0,71,171,0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(0,71,171,0.1) 0%, rgba(130,200,229,0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--primary);
}
.card h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.card p  { font-size: 0.95rem; color: var(--text-3); margin-bottom: 16px; }
/* Compact feature-card grids — normalised to 1.25rem / 700 per typography standard */
.icon-box-card h3                { font-size: 1.25rem; font-weight: 700; line-height: 1.4; }
.solutions-home-grid .card h3    { font-size: 1.25rem; font-weight: 700; line-height: 1.4; }

/* ── PRICING CARDS ── */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: rgba(0,71,171,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.pricing-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-blue);
}
.pricing-card .badge-popular {
    position: absolute;
    top: -14px; right: 24px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
}
.pricing-card .plan-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}
.pricing-card h3 { font-size: var(--fs-h3); margin-bottom: 6px; }
.pricing-card .plan-desc { font-size: 0.875rem; color: var(--text-3); margin-bottom: 20px; }
.price-block { margin-bottom: 24px; }
.price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}
.price-amount sup { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 8px; }
.price-unit { font-size: 0.875rem; color: var(--text-3); margin-top: 4px; }
.plan-features { flex: 1; margin-bottom: 24px; }
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.875rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.plan-features .no::before { content: '—'; color: var(--text-3); }

/* ── BILLING TOGGLE ── */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 40px;
}
.toggle-switch {
    position: relative;
    width: 44px; height: 24px;
    cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 100px;
    transition: 0.3s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    left: 3px; top: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
input:checked + .toggle-slider { background: var(--primary); }
input:checked + .toggle-slider::before { transform: translateX(20px); }
.save-badge {
    background: rgba(5,150,105,0.1);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

/* ── FEATURE COMPARISON TABLE ── */
.comparison-table { overflow-x: auto; margin-top: 32px; }
.comparison-table table {
    min-width: 700px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.comparison-table thead tr {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.comparison-table thead th {
    padding: 16px 20px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody tr { border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--bg); }
.comparison-table td {
    padding: 14px 20px;
    font-size: 0.875rem;
    color: var(--text-2);
    text-align: center;
    vertical-align: middle;
}
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.check-yes { color: var(--green); font-size: 1rem; font-weight: 700; }
.check-no  { color: var(--text-3); font-size: 0.875rem; }

/* ── TABS ── */
.tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}
.tab-btn {
    padding: 10px 22px;
    border: none;
    background: none;
    color: var(--text-3);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    border-radius: 6px 6px 0 0;
}
.tab-btn:hover  { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(0,71,171,0.04); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── FILTER BUTTONS ── */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    color: var(--text-2);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover  { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── FAQ ── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: rgba(0,71,171,0.3); box-shadow: 0 4px 16px rgba(0,71,171,0.08); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-item.open .faq-question { background: var(--bg-2); color: var(--primary); }
.faq-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    background: var(--bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ── FORMS ── */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-control,
.form-select {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,71,171,0.1);
}
.form-control::placeholder { color: var(--text-3); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-group { margin-bottom: 20px; }
.form-text  { font-size: 0.875rem; color: var(--text-3); margin-top: 5px; }

/* ── CONTACT / PROCESS FORMS ── */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(0,71,171,0.1) 0%, rgba(130,200,229,0.15) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--primary);
}
.contact-info-item strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.contact-info-item span  { font-size: 0.875rem; color: var(--text-2); }

/* ── TESTIMONIALS ── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-light);
    position: absolute;
    top: 16px; left: 24px;
    font-family: Georgia, serif;
    opacity: 0.5;
}
.testimonial-text { font-size: 0.95rem; color: var(--text-2); margin-bottom: 20px; padding-top: 28px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.author-info strong { display: block; font-size: 0.875rem; color: var(--text); }
.author-info span   { font-size: 0.875rem; color: var(--text-3); }

/* ── TRUST BADGES / LOGOS ── */
.trust-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.trust-item {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-item span { font-size: 1.2rem; }

/* ── PROCESS STEPS ── */
.step-list { counter-reset: steps; }
.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}
.step-item::before {
    display: none;
}
.step-num {
    counter-increment: steps;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,71,171,0.3);
}
.step-content h4 { margin-bottom: 6px; }
.step-content p  { font-size: 0.875rem; margin-bottom: 0; }

/* ── STATS BAR ── */
.stat-card {
    text-align: center;
    padding: 28px 20px;
}
.stat-card strong {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.section-dark .stat-card strong { color: var(--primary-light); }
.stat-card span { font-size: 0.875rem; color: var(--text-3); font-weight: 500; }
.section-dark .stat-card span { color: rgba(255,255,255,0.65); }

/* ── INDUSTRY / USE CASE CARDS ── */
.industry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.industry-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.industry-card .ic-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}
.industry-card h4 { margin-bottom: 8px; }
.industry-card p  { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* ── PLAN WIZARD ── */
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}
.wizard-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
}
.wizard-dot.active { background: var(--primary); transform: scale(1.3); }
.wizard-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    margin-bottom: 10px;
    transition: var(--transition);
}
.wizard-option:hover { border-color: var(--primary); background: var(--bg); }
.wizard-option.selected { border-color: var(--primary); background: rgba(0,71,171,0.05); }
.wizard-option-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.wizard-option-text strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 2px; }
.wizard-option-text span   { font-size: 0.875rem; color: var(--text-3); }

/* ── ADDON SELECTOR ── */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    transition: var(--transition);
}
.addon-item:hover { border-color: var(--primary); }
.addon-item.selected { border-color: var(--primary); background: rgba(0,71,171,0.05); }
.addon-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; }
.addon-item-info span { display: block; font-size: 0.875rem; color: var(--text-3); }
.addon-item-info strong { font-size: 0.875rem; }
.addon-price { font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-left: auto; white-space: nowrap; }

/* ── STICKY CTA ── */
.sticky-cta {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 500;
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1565C0 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(130,200,229,0.15);
    border-radius: 50%;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
/* about.php section headings — shared class replaces per-element inline font-size */
.about-section-h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-1);
}
.about-section-h2--light { color: #fff; }

/* about.php why-grid cards — theme-level card title & body typography */
.why-grid h4 {
    font-size: var(--fs-h4);   /* 1.25rem */
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin: 0;
}
.why-grid p {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-3);
    line-height: 1.65;
    margin: 0;
}
.cta-section p  { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-section .cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FOOTER ── */
.footer {
    background: linear-gradient(135deg, #000050 0%, var(--primary-dark) 100%);
    color: rgba(255,255,255,0.85);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: var(--primary-light); }
.footer-brand .logo img { filter: brightness(0) invert(1); }
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 4px; }
.footer-col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    padding: 5px 0;
    display: block;
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--primary-light); }
.footer-contact a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-legal a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-legal a:hover { color: var(--primary-light); }

/* ── PAGE HEADER ── */
.page-header {
    padding: 136px 0 64px;
    background: linear-gradient(135deg, #F0F5FF 0%, #E8F0FD 100%);
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(130,200,229,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: 14px; }
.page-header .lead {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 640px;
    margin-bottom: 28px;
}

/* ── BADGE & CHIP ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.badge-primary { background: rgba(0,71,171,0.1); color: var(--primary); }
.badge-success { background: rgba(5,150,105,0.1); color: var(--green); }
.badge-warning { background: rgba(217,119,6,0.1); color: var(--yellow); }
.badge-light   { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* ── SCROLL ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── DIVIDERS ── */
.divider {
    width: 48px; height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
    margin: 16px 0 24px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
    background: linear-gradient(135deg, rgba(0,71,171,0.06) 0%, rgba(130,200,229,0.1) 100%);
    border: 1px solid rgba(0,71,171,0.15);
    border-radius: var(--r-lg);
    padding: 28px;
}

/* ── ICON LIST ── */
.icon-list { list-style: none; padding: 0; }
.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.icon-list li:last-child { border-bottom: none; }
.icon-list li .li-icon { color: var(--primary); font-size: 0.875rem; flex-shrink: 0; margin-top: 2px; }

/* ── GRID HELPERS ── */
.g-4-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.g-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g-2-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .g-4-col { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    :root {
        --fs-h1: 2.125rem;   /* 34px */
        --fs-h2: 1.75rem;    /* 28px */
        --fs-h3: 1.375rem;   /* 22px */
        --fs-h4: 1.125rem;   /* 18px */
        --lh-heading: 1.2;
    }
    .section { padding: 60px 0; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-ctas { flex-direction: column; }
    .hero-stats { gap: 20px; }
    .g-3-col, .g-4-col { grid-template-columns: 1fr; }
    .g-2-col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .tab-nav { gap: 4px; }
    .tab-btn { padding: 8px 14px; font-size: 0.875rem; }
    .filter-group { justify-content: flex-start; }
    .sticky-cta { bottom: 16px; right: 16px; }
    .contact-card { padding: 24px; }
    .pricing-card { padding: 24px; }
}
@media (max-width: 480px) {
    :root {
        --fs-h1: 1.875rem;   /* 30px */
        --fs-h2: 1.5rem;     /* 24px */
        --fs-h3: 1.25rem;    /* 20px */
        --fs-h4: 1.0625rem;  /* 17px */
        --lh-heading: 1.22;
    }
    .container { padding: 0 16px; }
    .btn-lg { padding: 13px 24px; font-size: 1rem; }
    .billing-toggle { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── UTILITIES ── */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.text-primary { color: var(--primary) !important; }
.text-steel   { color: var(--steel) !important; }
.text-muted   { color: var(--text-3) !important; }
.text-white   { color: #fff !important; }
.bg-primary   { background: var(--primary) !important; }
.bg-light     { background: var(--bg) !important; }
.rounded      { border-radius: var(--r) !important; }
.shadow       { box-shadow: var(--shadow) !important; }

/* ── TYPOGRAPHY UTILITY CLASSES ── */
.text-hero {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-h2), 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.text-section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.25;
}
.text-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: 1.3;
}
.text-body-lg {
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    line-height: var(--lh-body);
}
.text-label {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.text-muted-custom { color: var(--text-3); }

/* ── COMPACT CARD COMPONENT CLASSES ── */
/* Use these on h3/h4 elements inside compact feature-card sections.
   They intentionally sit BELOW the large content H3 (1.5rem / --fs-h3). */
.feature-card-title,
.compact-card-title,
.step-card-title {
    font-size: 1.25rem;    /* --fs-h4 / 20px */
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-heading);
}

/* ── TYPOGRAPHY PRESET CLASSES (applied to <body> by admin) ── */
/* Corporate Sans: Inter for both headings and body */
.tp-corporate-sans {
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Executive Modern: Manrope headings, Inter body */
.tp-executive-modern {
    --font-heading: 'Manrope', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Enterprise Classic: Source Sans 3 for both */
.tp-enterprise-classic {
    --font-heading: 'Source Sans 3', sans-serif;
    --font-body:    'Source Sans 3', sans-serif;
}
/* Product Professional: IBM Plex Sans for both */
.tp-product-professional {
    --font-heading: 'IBM Plex Sans', sans-serif;
    --font-body:    'IBM Plex Sans', sans-serif;
}
/* Premium Clean: Plus Jakarta Sans for both */
.tp-premium-clean {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;
}
/* Trusted Business: Lato for both */
.tp-trusted-business {
    --font-heading: 'Lato', sans-serif;
    --font-body:    'Lato', sans-serif;
}

/* ═══════════════════════════════════════════
   LEGACY CLASS COMPATIBILITY LAYER
   Maps old HTML class names → new Cobalt Sky styles
   ═══════════════════════════════════════════ */

/* ── GRADIENT TEXT ── */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── HERO BADGE (old .badge style) ── */
.hero .badge,
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,71,171,0.08);
    border: 1px solid rgba(0,71,171,0.18);
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(5,150,105,0.25);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(5,150,105,0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(5,150,105,0.1); }
}

/* ── SECONDARY BUTTON ── */
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-secondary.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-secondary.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-secondary.btn-block { width: 100%; justify-content: center; }

/* ── HERO LAYOUT ── */
.hero-bg   { display: none; }
.hero-grid { display: none; }
.hero-inner { position: relative; z-index: 1; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 12px;
}
.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    color: var(--text-3);
    font-weight: 500;
}
.hero-trust .trust-item .check {
    color: var(--green);
    font-weight: 700;
    font-size: 0.875rem;
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item {
    padding: 12px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-3);
    font-weight: 500;
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: 1rem; font-weight: 400; color: var(--text-3); }

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

/* ── ICON BOX ── */
.icon-box {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.icon-blue   { background: rgba(0,71,171,0.1);   }
.icon-cyan   { background: rgba(130,200,229,0.18); }
.icon-green  { background: rgba(5,150,105,0.1);  }
.icon-purple { background: rgba(124,58,237,0.1); }
.icon-orange { background: rgba(234,88,12,0.1);  }
.icon-red    { background: rgba(220,38,38,0.1);  }

/* ── TEXT ACCENT ── */
.text-accent { color: var(--primary); }
.text-accent:hover { color: var(--primary-dark); }

/* ── COMPARE TABLE ── */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table thead tr {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.compare-table thead th {
    padding: 16px 20px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg); }
.compare-table td {
    padding: 14px 20px;
    font-size: 0.875rem;
    color: var(--text-2);
    text-align: center;
    vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.ct-yes { color: var(--green); font-weight: 700; font-size: 1rem; }
.ct-no  { color: var(--text-3); }

/* ── STEPS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 24px; left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    z-index: 0;
    opacity: 0.3;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.step-card:hover {
    border-color: rgba(0,71,171,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.step-card .step-num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0,71,171,0.3);
}
.step-card h3 { margin-bottom: 8px; font-size: 1.25rem; font-weight: 700; line-height: 1.4; }
.step-card p  { font-size: 0.95rem; font-weight: 400; color: var(--text-3); line-height: 1.65; margin: 0; }

/* ── BILLING TOGGLE (old HTML structure) ── */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 40px;
    cursor: pointer;
    user-select: none;
}
.toggle-label { font-weight: 600; color: var(--text-3); transition: color 0.2s; }
.toggle-label.active { color: var(--primary); }
.toggle-track {
    width: 44px; height: 24px;
    background: var(--border);
    border-radius: 100px;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
}
.toggle-track.on { background: var(--primary); }
.toggle-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle-track.on .toggle-thumb { transform: translateX(20px); }
.annual-save {
    background: rgba(5,150,105,0.1);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 4px;
}

/* ── BILLING TOGGLE ── */
.billing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}
.billing-toggle {
    display: inline-flex;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    gap: 2px;
}
.billing-btn {
    padding: 9px 26px;
    border: none;
    background: transparent;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-3);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.billing-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 3px 12px rgba(0,71,171,0.28);
}
.billing-btn:not(.active):hover { color: var(--primary); background: rgba(0,71,171,0.06); }
.billing-save {
    display: inline-block;
    background: rgba(5,150,105,0.15);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}
.billing-btn.active .billing-save {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

/* ── PLAN CARDS (old HTML structure) ── */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.pricing-grid-5,
.pricing-grid-6 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.plan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    border-color: rgba(0,71,171,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.plan-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-blue);
}
.plan-card.featured::before {
    content: attr(data-badge);
    position: absolute;
    top: -14px; right: 24px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
}
.plan-card .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    margin-top: 10px;
}
.plan-card .plan-desc { font-size: 0.875rem; color: var(--text-3); margin-bottom: 20px; }
.plan-card .plan-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}
.plan-card .plan-price sup {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 6px;
    order: -1;
}
.plan-card .period {
    font-size: 0.875rem;
    color: var(--text-3);
    font-weight: 400;
    margin-top: auto;
    align-self: flex-end;
    padding-bottom: 4px;
}
.plan-card .plan-price-annual { font-size: 0.875rem; color: var(--text-3); margin-bottom: 16px; }
.plan-card .plan-features {
    flex: 1;
    margin: 20px 0;
    list-style: none;
    padding: 0;
}
.plan-card .plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.875rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.plan-card .plan-features li:last-child { border-bottom: none; }
.fi { font-size: 0.875rem; flex-shrink: 0; }
.fi-yes { color: var(--green); font-weight: 700; }
.fi-no  { color: var(--text-3); }

/* ── PILLS ── */
.pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.pill-blue   { background: rgba(0,71,171,0.1);    color: var(--primary); }
.pill-cyan   { background: rgba(130,200,229,0.2);  color: #0277A8; }
.pill-purple { background: rgba(124,58,237,0.1);  color: #7C3AED; }
.pill-green  { background: rgba(5,150,105,0.1);   color: var(--green); }
.pill-orange { background: rgba(234,88,12,0.1);   color: #EA580C; }
.pill-navy   { background: rgba(0,0,128,0.1);     color: var(--primary-dark); }

/* ── FADE-UP ANIMATION ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    /* CSS animation fallback: always visible after 1.5s even without JS */
    animation: fadeUpFallback 0s 1.5s forwards;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}
@keyframes fadeUpFallback {
    to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE GRID FIXES ── */
@media (max-width: 1100px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-4,
    .pricing-grid-5,
    .pricing-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .grid-5 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-grid-3 { grid-template-columns: 1fr; }
    .pricing-grid-4,
    .pricing-grid-5,
    .pricing-grid-6 { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-trust { gap: 12px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .grid-5 { grid-template-columns: 1fr; }
    .pricing-grid-4,
    .pricing-grid-5,
    .pricing-grid-6 { grid-template-columns: 1fr; }
}

/* ── FAQ (old .faq-q / .faq-a structure) ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open {
    border-color: rgba(0,71,171,0.3);
    box-shadow: 0 4px 16px rgba(0,71,171,0.08);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    gap: 16px;
    transition: var(--transition);
    user-select: none;
}
.faq-q h3 { font-size: inherit; font-weight: inherit; color: inherit; margin: 0; line-height: inherit; }
.faq-q:hover { background: var(--bg); }
.faq-item.open .faq-q { background: var(--bg-2); color: var(--primary); }
.faq-arrow {
    font-size: 1.1rem;
    color: var(--text-3);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
    padding: 0 22px;
}
.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 22px 20px;
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1565C0 100%);
    border-radius: var(--r-lg);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: rgba(130,200,229,0.12);
    border-radius: 50%;
    pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 600px; margin: 0 auto 36px; }
.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.cta-band .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.cta-band .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
}
@media (max-width: 768px) {
    .cta-band { padding: 36px 24px; }
    .cta-band-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════
   PAGE-SPECIFIC COMPONENTS
   Styles for inner page unique structures
   ═══════════════════════════════════════════ */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    padding: 48px 0 64px; /* was 136px; body now adds 88px */
    background: linear-gradient(135deg, #F0F5FF 0%, #E8F0FD 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(130,200,229,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero-bg { display: none; }
.page-hero-inner,
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 640px;
    margin-bottom: 28px;
}
.page-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.page-hero-dark {
    background: linear-gradient(135deg, #001245 0%, #0047AB 60%, #082F6E 100%);
    padding-bottom: 50px;
}
.page-hero-dark::after { display: none; }
.page-hero-dark .overline { color: var(--primary-light); }
.page-hero-dark h1,
.page-hero-dark p,
.page-hero-dark .lead { color: #fff; }
.page-hero-dark p,
.page-hero-dark .lead { color: rgba(255,255,255,0.75); }

/* ── BREADCRUMB ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-3);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: var(--text-3); }
.breadcrumb a + a::before,
.breadcrumb a + span::before,
.breadcrumb span + a::before,
.breadcrumb span + span::before {
    content: '/';
    margin: 0 4px 0 2px;
    color: var(--text-3);
}

/* ── RESOURCE HUBS ── */
.hub-filter-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.hub-filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.hub-filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-3);
    margin-right: 4px;
}
.hub-filter-chip {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    color: var(--text-2);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.hub-filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.hub-filter-chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.hub-section {
    padding: 60px 0 80px;
    background: #FAFBFD;
}
.hub-search {
    margin-bottom: 36px;
}
.hub-search-input {
    width: 100%;
    max-width: 420px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    background: #fff;
    color: var(--text);
}
.hub-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.hub-no-results {
    display: none;
    margin-top: 24px;
    text-align: center;
    padding: 40px 0;
    color: var(--text-3);
}
.hub-no-results-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hub-featured-stack {
    margin-bottom: 52px;
}
.hub-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hub-featured-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9DAFC0;
    margin-bottom: 20px;
}
.hub-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 40px 0;
}
.hub-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    color: var(--text-2);
    border: 1px solid var(--border);
}
.hub-page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.hub-cta-box {
    margin-top: 40px;
    background: linear-gradient(135deg,#001245,#0047AB);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}
.hub-cta-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.hub-cta-box p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.hub-search-card:hover { box-shadow: 0 4px 18px rgba(0,71,171,0.09) !important; }
.hub-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 18px;
}
.hub-card-grid--docs { grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 16px; }
.hub-chip-count { opacity: 0.55; }
.hub-chip-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 100px;
    background: #F0F4FF;
    color: var(--primary);
    font-size: 0.67rem;
    font-weight: 600;
    text-decoration: none;
}
.hub-chip-tag:hover {
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-dark);
}
.hub-card {
    background: #fff;
    border: 1px solid #DDE3EE;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.hub-card:hover {
    box-shadow: 0 10px 28px rgba(0,71,171,0.08);
    transform: translateY(-2px);
}
.hub-card-media {
    overflow: hidden;
    background: linear-gradient(135deg,#F0F4FF,#E6EEFF);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hub-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hub-card-media--article-lg {
    min-height: 280px;
    font-size: 5rem;
    background: linear-gradient(135deg,#001245,#0047AB);
    color: #fff;
}
.hub-card-media--article-md {
    height: 140px;
    font-size: 2.8rem;
}
.hub-card-media--article-sm {
    height: 110px;
    font-size: 2rem;
    background: linear-gradient(135deg,#F5F8FF,#EBF0FF);
}
.hub-card-media--event-hero {
    min-height: 240px;
    background: var(--primary);
    color: #fff;
}
.hub-card-media--event-strip {
    height: 90px;
}
.hub-card-media--event-mini {
    height: 80px;
}
.hub-card-media--event-upcoming {
    background: var(--primary);
    color: #fff;
}
.hub-card-media--event-past {
    background: #F0F4FF;
    color: var(--primary);
}
.hub-card-media--doc-hero {
    min-height: 220px;
    flex-direction: column;
    gap: 8px;
}
.hub-card-media--doc-feature {
    height: 100px;
    flex-direction: column;
    gap: 4px;
}
.hub-card-media--doc-compact {
    height: 72px;
    gap: 8px;
}
.hub-doc-icon {
    line-height: 1;
}
.hub-doc-icon--hero { font-size: 4.5rem; }
.hub-doc-icon--feature { font-size: 2.4rem; }
.hub-doc-icon--compact { font-size: 1.8rem; }
.hub-doc-format {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hub-doc-format--hero {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-top: 4px;
}
.hub-btn-inline--neutral {
    background: #374151;
}
.hub-btn-inline--neutral:hover {
    background: #1F2937;
}
.hub-button-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.hub-button-link:focus-visible {
    outline: 2px solid rgba(var(--primary-rgb), 0.35);
    outline-offset: 2px;
}
.hub-event-date {
    text-align: center;
}
.hub-event-date-month {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.hub-event-date-day {
    font-weight: 900;
    line-height: 1;
}
.hub-event-date-year {
    font-size: 0.82rem;
    font-weight: 600;
}
.hub-event-date--hero .hub-event-date-day { font-size: 5rem; }
.hub-event-date--feature .hub-event-date-month {
    font-size: 0.62rem;
    letter-spacing: normal;
}
.hub-event-date--feature .hub-event-date-day { font-size: 2.4rem; }
.hub-event-date--compact .hub-event-date-month {
    font-size: 0.58rem;
    letter-spacing: normal;
}
.hub-event-date--compact .hub-event-date-day { font-size: 2rem; }
.hub-event-date--light .hub-event-date-month,
.hub-event-date--light .hub-event-date-year {
    color: #6D8196;
}
.hub-event-date--light .hub-event-date-day { color: var(--primary); }
.hub-event-date--dark .hub-event-date-month,
.hub-event-date--dark .hub-event-date-year {
    color: rgba(255,255,255,0.68);
}
.hub-event-date--dark .hub-event-date-day { color: #fff; }
.hub-event-pill {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.15);
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hub-card-meta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: #6D8196;
}
.hub-card-location {
    font-size: 0.74rem;
    color: #6D8196;
    margin-bottom: 10px;
}
.hub-card-location--compact {
    font-size: 0.72rem;
    color: #9DAFC0;
}
.hub-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hub-card-body--featured {
    padding: 40px 44px;
    justify-content: space-between;
}
.hub-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.hub-card-tags--compact {
    gap: 5px;
    margin-bottom: 9px;
}
.hub-card-tags--small {
    gap: 4px;
    margin-bottom: 7px;
}
.hub-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.hub-card-title {
    color: #0A1628;
    line-height: 1.3;
    margin-bottom: 12px;
}
.hub-card-title--xl {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 14px;
}
.hub-card-title--md {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.38;
    margin-bottom: 8px;
    flex: 1;
}
.hub-card-title--sm {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
    flex: 1;
}
.hub-card-summary {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.68;
    margin-bottom: 20px;
}
.hub-card-summary--small {
    font-size: 0.78rem;
    color: #6D8196;
    line-height: 1.5;
    margin-bottom: 12px;
}
.hub-card-meta {
    font-size: 0.8rem;
    color: #6D8196;
}
.hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid #EEF0F5;
}
.hub-card-footer--compact {
    padding-top: 10px;
}
.hub-card-date {
    font-size: 0.72rem;
    color: #9DAFC0;
}
.hub-link-inline {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.hub-link-inline:hover { color: var(--primary-dark); }
.hub-link-inline--small { font-size: 0.78rem; }
.hub-link-inline--muted {
    font-weight: 600;
    color: #C5CEDB;
}
.hub-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 9px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
}
.hub-btn-inline:hover {
    background: var(--primary-dark);
    color: #fff;
}
.hub-cta-form {
    display: flex;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
}
.hub-cta-input {
    flex: 1;
    padding: 11px 16px;
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
    outline: none;
}
.hub-cta-link {
    padding: 11px 22px;
    background: #fff;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}
.hub-cta-link:hover {
    background: rgba(255,255,255,0.92);
    color: var(--primary-dark);
}
.hub-cta-link--wide {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 9px;
    font-size: 0.95rem;
    font-weight: 800;
}
.hub-doc-meta {
    font-size: 0.8rem;
    color: #6D8196;
}

/* ── LEGAL PAGES ── */
.legal-section {
    padding: 60px 0 80px;
    background: #FAFBFD;
}
.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
}
.legal-sidebar {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.legal-panel {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.legal-panel-title {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94A3B8;
    margin-bottom: 14px;
}
.legal-filter-shell {
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
}
.legal-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.legal-filter-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.legal-filter-note {
    font-size: 0.72rem;
    color: #94A3B8;
    padding: 0 4px;
    white-space: nowrap;
}
.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.legal-kicker-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.legal-note-box {
    margin-top: 32px;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.legal-note-box--warn {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
}
.legal-note-box--warn strong { color: #92400E; }
.legal-note-box--warn p { color: #78350F; margin: 0; font-size: 0.82rem; line-height: 1.6; }
.legal-section--soft {
    padding: 64px 0;
    background: #F8FAFD;
}
.legal-section--plain {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid #E2E8F0;
}
.legal-heading-block { margin-bottom: 32px; }
.legal-heading-block--wide { margin-bottom: 36px; }
.legal-heading {
    font-size: 1.45rem;
    font-weight: 900;
    color: #0A1628;
    margin: 0 0 6px;
}
.legal-heading-copy {
    font-size: 0.9rem;
    color: #6D8196;
    margin: 0;
    max-width: 540px;
}
.legal-doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.legal-doc-grid--compact {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.legal-doc-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.legal-doc-card:hover {
    box-shadow: 0 8px 32px rgba(0,71,171,0.10);
    transform: translateY(-2px);
}
.legal-doc-card--compact {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.legal-doc-card--compact:hover { box-shadow: 0 6px 24px rgba(0,71,171,0.10); }
.legal-doc-head {
    background: linear-gradient(135deg,#001245,#0047AB);
    padding: 28px 28px 20px;
}
.legal-doc-head--compact { padding: 16px 18px 12px; }
.legal-doc-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.legal-doc-topline--compact {
    margin-bottom: 8px;
    gap: 6px;
}
.legal-doc-audience {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
}
.legal-doc-audience--compact {
    padding: 2px 9px;
    font-size: 0.68rem;
}
.legal-doc-version {
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    white-space: nowrap;
}
.legal-doc-version--compact {
    color: rgba(255,255,255,0.4);
    font-size: 0.66rem;
}
.legal-doc-icon {
    line-height: 1;
    margin-bottom: 8px;
}
.legal-doc-icon--xl { font-size: 2.2rem; }
.legal-doc-icon--sm {
    font-size: 1.5rem;
    margin-bottom: 0;
}
.legal-doc-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
}
.legal-doc-title--compact {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
}
.legal-doc-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}
.legal-doc-subtitle--compact {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}
.legal-doc-body {
    padding: 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.legal-doc-body--compact { padding: 14px 18px 16px; }
.legal-doc-copy {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.75;
    margin: 0 0 18px;
}
.legal-doc-copy--compact {
    font-size: 0.8rem;
    color: #374151;
    line-height: 1.65;
    margin: 0 0 12px;
    flex-grow: 1;
}
.legal-doc-cover-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6D8196;
    margin-bottom: 10px;
}
.legal-doc-points {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.legal-doc-points--compact {
    margin: 0 0 12px;
    gap: 5px;
    flex-grow: 1;
}
.legal-doc-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: #374151;
}
.legal-doc-point--compact {
    gap: 6px;
    font-size: 0.77rem;
}
.legal-doc-point svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.legal-doc-point--compact svg { margin-top: 1px; }
.legal-doc-effective {
    font-size: 0.68rem;
    color: #94A3B8;
    margin-bottom: 8px;
}
.legal-doc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.legal-doc-actions--compact {
    gap: 8px;
    margin-top: auto;
}
.legal-doc-note {
    font-size: 0.72rem;
    color: #6D8196;
    margin: 8px 0 0;
    line-height: 1.5;
}
.legal-doc-btn {
    flex: 1;
    min-width: 100px;
    padding: 8px 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.legal-doc-btn:hover { background: var(--primary-dark); }
.legal-doc-link {
    padding: 8px 10px;
    border: 1.5px solid #E2E8F0;
    color: #374151;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}
.legal-doc-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.legal-cat-section { margin-bottom: 48px; }
.legal-cat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2E8F0;
}
.legal-cat-accent {
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg,#0047AB,#00C2FF);
    border-radius: 4px;
    flex-shrink: 0;
}
.legal-cat-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0A1628;
    margin: 0;
}
.legal-cat-count {
    background: #F1F5F9;
    color: #64748B;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
}
.legal-faq-section {
    padding: 60px 0;
    background: #fff;
}
.legal-faq-wrap { max-width: 780px; }
.legal-faq-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0A1628;
    text-align: center;
    margin: 0 0 36px;
}
.legal-faq-item {
    border-bottom: 1px solid #E2E8F0;
    padding: 18px 0;
}
.legal-faq-q {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0A1628;
    margin-bottom: 8px;
}
.legal-faq-a {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}
.policy-hero {
    padding: 56px 0;
}
.policy-kicker {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.policy-hero-title {
    font-size: clamp(1.6rem,3.5vw,2.4rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
    max-width: 720px;
}
.policy-hero-icon {
    margin-right: 10px;
}
.policy-updated {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.policy-content {
    min-width: 0;
}
.policy-nav-list,
.policy-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.policy-nav-list { gap: 3px; }
.policy-toc-list { gap: 1px; }
.policy-nav-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    text-decoration: none;
    transition: all .15s;
    color: #334155;
    font-weight: 500;
}
.policy-nav-link:hover {
    background: rgba(0,71,171,.05);
    color: var(--primary);
}
.policy-nav-link.is-active {
    background: rgba(0,71,171,.09);
    color: var(--primary);
    font-weight: 700;
}
.policy-nav-icon {
    font-size: 1rem;
}
.policy-toc-item--nested {
    padding-left: 12px;
}
.policy-toc-link {
    display: block;
    padding: 6px 10px;
    border-radius: 7px;
    text-decoration: none;
    line-height: 1.4;
    transition: all .15s;
    color: #334155;
    font-size: 0.82rem;
}
.policy-toc-link--nested {
    font-size: 0.77rem;
    color: #64748B;
}
.policy-toc-link--strong {
    font-weight: 500;
}
.policy-toc-link.active,
.policy-toc-link:hover {
    background: rgba(0,71,171,.07);
    color: var(--primary) !important;
    font-weight: 600 !important;
}
.policy-contact-copy {
    font-size: 0.8rem;
    color: #64748B;
    margin-bottom: 12px;
    line-height: 1.5;
}
.policy-contact-btn {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 0.82rem;
}
.policy-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0A1628;
    margin: 40px 0 16px;
    padding-top: 32px;
    border-top: 1px solid #E2E8F0;
}
.policy-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.policy-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A1628;
    margin: 28px 0 10px;
}
.policy-body p {
    color: #374151;
    line-height: 1.85;
    margin-bottom: 14px;
    font-size: 0.97rem;
}
.policy-body ul,
.policy-body ol {
    padding-left: 24px;
    margin-bottom: 14px;
}
.policy-body li {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 6px;
    font-size: 0.97rem;
}
.policy-body a {
    color: var(--primary);
    text-decoration: underline;
}
.policy-body strong { color: #0A1628; }

@media (max-width: 900px) {
    .hub-feature-grid { grid-template-columns: 1fr; }
    .hub-card-body--featured { padding: 28px 24px; }
    .hub-cta-form {
        flex-direction: column;
        max-width: 100%;
    }
    .legal-doc-grid { grid-template-columns: 1fr; }
    .legal-doc-grid--compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hub-cta-box { padding: 36px 24px; }
    .hub-card-grid,
    .hub-card-grid--docs { grid-template-columns: 1fr; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-sidebar { position: static; }
}
@media (max-width: 680px) {
    .legal-doc-grid--compact { grid-template-columns: 1fr; }
}
.breadcrumb span + span::before { content: '/'; margin-right: 6px; color: var(--border); }

/* ── OVERLINE ── */
.overline {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

/* ── CHECK LIST ── */
.check-list { list-style: none; padding: 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.875rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── ADDON CARD ── */
.addon-card {
    padding: 24px;
    border-radius: var(--r);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.addon-card:hover {
    border-color: rgba(0,71,171,0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.addon-card strong {
    display: block;
    margin: 12px 0 8px;
    color: var(--text);
    font-size: 1rem;
}
.addon-card p { font-size: 0.875rem; color: var(--text-3); margin: 0 0 12px; }
.addon-card .addon-price { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.addon-name { font-weight: 600; font-size: 0.875rem; color: var(--text); }
.specs-badge-row {
    display: inline-flex;
    gap: 12px;
    margin: 10px 0;
    flex-wrap: wrap;
}
.specs-badge-row span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.specs-badge-row span::after { content: '|'; margin-left: 12px; color: var(--border); }
.specs-badge-row span:last-child::after { content: ''; margin-left: 0; }

/* ── MANAGED CARDS ── */
.managed-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
}
.managed-cards .card { padding: 32px; }
.managed-cards h3 { margin-top: 0; font-size: 1.25rem; font-weight: 700; line-height: 1.4; }
.managed-cards ul { list-style: none; padding: 0; margin: 20px 0 0; }
.managed-cards li {
    padding: 8px 0;
    color: var(--text-2);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}
.managed-cards li:last-child { border-bottom: none; }
.managed-cards li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.managed-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
}
.managed-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

/* ── MODEL CARDS (managed-services) ── */
.model-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: var(--transition);
}
.model-card:hover {
    border-color: rgba(0,71,171,0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.model-card.featured { border-color: var(--primary); border-width: 2px; }
.model-icon { font-size: 2.2rem; margin-bottom: 16px; }
.model-features { list-style: none; padding: 0; margin: 16px 0; }
.model-features li {
    padding: 7px 0;
    font-size: 0.875rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.model-features li:last-child { border-bottom: none; }
.model-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.model-included { margin: 16px 0; }
.model-included strong { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); }
.model-ideal {
    background: var(--bg);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-2);
}
.model-ideal strong { color: var(--text); display: block; margin-bottom: 4px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── TRUST ITEMS (managed-services hero) ── */
.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}
.trust-items .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-2);
    font-weight: 500;
}

/* ── HYBRID COMPONENTS ── */
.hybrid-explainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
    align-items: stretch;
}
.hybrid-step {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}
.hybrid-step:hover { border-color: rgba(0,71,171,0.3); box-shadow: var(--shadow); }
.hybrid-step h3 { margin-top: 0; font-size: 1.25rem; font-weight: 700; line-height: 1.4; }
.hybrid-step p  { color: var(--text-3); font-size: 0.875rem; margin: 0; flex-grow: 1; }
.hybrid-step::after {
    content: '→';
    position: absolute;
    right: -28px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
    z-index: 2;
}
.hybrid-step:last-child::after { display: none; }
.hybrid-intro {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    margin: 40px 0;
    line-height: 1.8;
    color: var(--text-2);
    font-size: 0.95rem;
}
.usecase-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: var(--transition);
}
.usecase-card:hover {
    border-color: rgba(0,71,171,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.usecase-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 12px;
}
.usecase-card p { color: var(--text-3); font-size: 0.875rem; margin: 0; }

/* ── ARCHITECTURE DIAGRAM ── */
.architecture-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}
.arch-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    text-align: center;
}
.arch-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.arch-arrow { font-size: 2rem; color: var(--primary); }
.arch-label {
    font-size: 0.75rem;
    color: var(--text-3);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* ── PARTNER TIERS ── */
.partner-tier {
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.partner-tier:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
/* Legacy tier colours (kept for backwards compatibility) */
.tier-silver   { border-color: #9CA3AF; }
.tier-gold     { border-color: #D97706; background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%); }
.tier-platinum { border-color: var(--primary); background: linear-gradient(135deg, #EEF3FF 0%, #E8F0FD 100%); }

/* New 3-tier partner styles */
.tier-associate    { border-color: #CBD5E1; }
.tier-professional { border-color: var(--gold); background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%); }
.tier-enterprise   { border-color: var(--royal); background: linear-gradient(135deg, #EEF3FF 0%, #E8F0FD 100%); }

/* Featured tier card */
.partner-tier.featured {
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(245,158,11,0.18);
    transform: translateY(-6px);
    position: relative;
}
.partner-tier.featured::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: calc(var(--r-lg) + 1px);
    background: linear-gradient(135deg, var(--gold), var(--primary));
    z-index: -1;
    opacity: 0.25;
}

.tier-description { font-size: 0.875rem; color: var(--text-3); margin-bottom: 20px; }

/* Tier badge */
.tier-badge { margin-bottom: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.tier-badge-offset { margin-left: 6px; }
.partner-tier-grid { align-items: stretch; }
.partner-tier-icon {
    margin-bottom: 10px;
    font-size: 2rem;
}
.partner-tier-tagline {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.partner-tier-metrics {
    margin: 16px 0;
    padding: 12px 14px;
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
}
.partner-tier-metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.partner-tier-metric-row + .partner-tier-metric-row {
    margin-top: 6px;
}
.partner-tier-metric-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--admin-text3, #6D8196);
}
.partner-tier-metric-value {
    font-size: 1.5rem;
    font-weight: 800;
}
.partner-tier-metric-value--secondary {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text2, #374151);
}
.partner-tier-footer {
    margin-top: auto;
    padding-top: 20px;
}
.partner-tier-note {
    margin-top: 28px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--steel, #6D8196);
}
.section-header--light,
.section-header--light h2,
.section-header--light h3 {
    color: #fff;
}
.section-header--light p {
    color: rgba(255,255,255,0.7);
}
.gc-dark-hero-link {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}

/* Tier section divider */
.tier-section { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.tier-section h4.overline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin: 0 0 6px;
}
.tier-section p { font-size: 0.875rem; color: var(--text-2); margin: 0; }

/* Opportunity card */
.opportunity-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: var(--transition);
}
.opportunity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.opportunity-card h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.4; margin: 14px 0 8px; color: var(--text); }
.opportunity-card p  { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* Automation grid & check icon */
.automation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (max-width: 768px) { .automation-grid { grid-template-columns: 1fr; } }

.automation-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r);
    transition: var(--transition);
}
.section-midnight .automation-item { color: rgba(255,255,255,0.85); }
.section-midnight .automation-item:hover { background: rgba(255,255,255,0.11); border-color: var(--primary-light); }
/* Light background overrides for automation-item outside midnight sections */
.section:not(.section-midnight) .automation-item {
    background: var(--white);
    border-color: var(--border);
    color: var(--text-2);
}
.section:not(.section-midnight) .automation-item:hover { border-color: rgba(0,71,171,0.3); background: var(--bg); }

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--green, #059669);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}
.automation-item p { font-size: 0.875rem; margin: 0; line-height: 1.5; }

/* ── AUTOMATION ITEM ── */
.automation-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    transition: var(--transition);
}
.automation-item:hover { border-color: rgba(0,71,171,0.3); background: var(--bg); }
.automation-item .icon { font-size: 1.5rem; flex-shrink: 0; }
.automation-item strong { display: block; font-size: 0.875rem; color: var(--text); margin-bottom: 3px; }
.automation-item p { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* ── LICENSE PANELS ── */
.license-panels {
    position: relative;
}
.license-panel { display: none; }
.license-panel.active { display: block; }

/* ── CONSULTATION BOX ── */
.consultation-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--r-lg);
    padding: 40px;
    color: #fff;
    text-align: center;
}
.consultation-box h3 { color: #fff; margin-bottom: 12px; }
.consultation-box p  { color: rgba(255,255,255,0.82); margin-bottom: 28px; }

/* ── CTA BUTTONS ── */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

/* ── CATEGORY HEADING ── */
.category-heading {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0,71,171,0.07);
    padding: 6px 18px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
}

/* ── CASE CALLOUT ── */
.case-callout {
    background: var(--bg);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 18px 22px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ── SOLUTION FINDER ── */
.solution-finder {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--r-lg);
    padding: 36px;
    color: #fff;
}
.solution-finder h3 { color: #fff; margin-bottom: 12px; }
.solution-finder p  { color: rgba(255,255,255,0.82); margin-bottom: 0; }

/* ── PRICE CELL ── */
.price-cell {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* ── REQ (requirement items) ── */
.req {
    color: #E53E3E;
    font-weight: 700;
    font-size: 0.875rem;
    margin-left: 2px;
}

/* ── SUCCESS MESSAGE ── */
.success-message {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    border-radius: var(--r);
    padding: 20px 24px;
    text-align: center;
    font-weight: 500;
}
.success-message .icon { font-size: 2rem; display: block; margin-bottom: 10px; }

/* ── SOLUTION GUIDE ── */
.solution-guide {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

/* ── CHECKBOX GROUP ── */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    transition: var(--transition);
}
.checkbox-group label:hover { border-color: var(--primary); color: var(--primary); }
.checkbox-group input[type="checkbox"] { accent-color: var(--primary); }

/* ── RESPONSIVE FIXES FOR PAGE COMPONENTS ── */
@media (max-width: 768px) {
    .page-hero { padding: 32px 0 48px; } /* was 110px; body adds 88px */
    .managed-cards { grid-template-columns: 1fr; }
    .hybrid-explainer { grid-template-columns: 1fr; }
    .hybrid-step::after { display: none; }
    .managed-comparison { grid-template-columns: 1fr; }
    .architecture-diagram { grid-template-columns: 1fr; }
    .arch-center { flex-direction: row; justify-content: center; }
    .page-hero-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════
   SHARED DARK MARKETING HERO
   ════════════════════════════════════════════════════════ */
.gc-dark-hero {
    --gc-hero-accent: var(--vivid);
    --gc-hero-accent-rgb: var(--vivid-rgb);
    --gc-hero-highlight-end: var(--teal);
    position: relative;
    overflow: hidden;
    padding: 72px 0 0;
    background: linear-gradient(160deg, #060D1F 0%, #0B1730 45%, #0A1628 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100vw;
    left: 0;
    display: block;
    box-sizing: border-box;
}
.gc-dark-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.gc-dark-hero .container { position: relative; z-index: 1; }
.gc-dark-hero--gold {
    --gc-hero-accent: var(--gold);
    --gc-hero-accent-rgb: var(--gold-rgb);
    --gc-hero-highlight-end: var(--gold);
}
.gc-dark-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: gcDarkHeroOrbFloat 8s ease-in-out infinite alternate;
}
.gc-dark-hero-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(var(--vivid-rgb), 0.22) 0%, transparent 70%);
    top: -160px;
    right: -100px;
    animation-duration: 9s;
}
.gc-dark-hero-orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(var(--green-rgb), 0.14) 0%, transparent 70%);
    bottom: 40px;
    left: -80px;
    animation-duration: 11s;
    animation-delay: -3s;
}
.gc-dark-hero--gold .gc-dark-hero-orb-2 {
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.16) 0%, transparent 70%);
}
.gc-dark-hero-orb-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(var(--primary-light-rgb), 0.18) 0%, transparent 70%);
    top: 60px;
    left: 38%;
    animation-duration: 13s;
    animation-delay: -6s;
}
@keyframes gcDarkHeroOrbFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(24px, -24px) scale(1.06); }
}
.gc-dark-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(var(--gc-hero-accent-rgb), 0.15);
    border: 1px solid rgba(var(--gc-hero-accent-rgb), 0.35);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gc-hero-accent);
    margin-bottom: 22px;
}
.gc-dark-hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gc-hero-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gc-hero-accent);
    animation: gcDarkHeroBadgePulse 2s ease-in-out infinite;
}
@keyframes gcDarkHeroBadgePulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.5; transform: scale(0.8); }
}
.gc-dark-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.gc-dark-hero-highlight {
    background: linear-gradient(90deg, var(--gc-hero-accent) 0%, var(--primary-light) 50%, var(--gc-hero-highlight-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gc-dark-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.gc-dark-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.gc-dark-hero-stats {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.gc-dark-hero-stat {
    flex: 1;
    padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}
.gc-dark-hero-stat:last-child { border-right: none; }
.gc-dark-hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.gc-dark-hero-stat-num span { color: var(--gc-hero-accent); }
.gc-dark-hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .gc-dark-hero { padding: 48px 0 0; }
    .gc-dark-hero h1 { font-size: 2rem; }
    .gc-dark-hero-stats { flex-wrap: wrap; }
    .gc-dark-hero-stat {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .gc-dark-hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
}

/* ════════════════════════════════════════════════════════
   SOLUTION PAGE HERO
   ════════════════════════════════════════════════════════ */
.solution-hero {
    background: linear-gradient(160deg, #060D1F 0%, #0B1730 45%, #0A1628 100%);
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100vw;
    left: 0;
    box-sizing: border-box;
}
/* Grid overlay */
.solution-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
/* Animated orbs for solution pages */
.sol-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: solOrbFloat 9s ease-in-out infinite alternate;
}
.sol-orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(var(--vivid-rgb), 0.22) 0%, transparent 70%);
    top: -160px; right: -100px;
    animation-duration: 9s;
}
.sol-orb-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(139,92,246,0.16) 0%, transparent 70%); /* purple — no theme variable */
    bottom: 20px; left: -80px;
    animation-duration: 11s;
    animation-delay: -3s;
}
.sol-orb-3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.13) 0%, transparent 70%);
    top: 60px; left: 35%;
    animation-duration: 13s;
    animation-delay: -6s;
}
@keyframes solOrbFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(20px, -20px) scale(1.06); }
}
.solution-hero-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 1024px) { .solution-hero-inner { grid-template-columns: 1fr; } }
.solution-hero-content .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(var(--vivid-rgb), 0.15); border: 1px solid rgba(var(--vivid-rgb), 0.35);
    color: var(--primary-light); padding: 6px 14px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 18px;
}
.solution-hero-content h1 {
    font-size: 3rem;
    font-weight: 900; color: #fff; line-height: 1.1; margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.solution-hero-content p {
    font-size: 1rem; color: rgba(255,255,255,0.68); margin: 0 0 28px; max-width: 520px;
    line-height: 1.7;
}
.solution-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.solution-hero-stats {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 48px;
    position: relative;
    z-index: 1;
}
.solution-hero-stats .stat {
    flex: 1;
    padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}
.solution-hero-stats .stat:last-child { border-right: none; }
.solution-hero-stats .stat-val {
    font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1;
    letter-spacing: -0.02em; margin-bottom: 4px;
}
.solution-hero-stats .stat-val span { color: var(--primary-light); }
.solution-hero-stats .stat-lbl {
    font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 3px;
    text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500;
}
.solution-hero-visual {
    display: flex; align-items: center; justify-content: flex-end;
}
@media (max-width: 1024px) { .solution-hero-visual { display: none; } }
@media (max-width: 768px) {
    .solution-hero-content h1 { font-size: 2rem; }
    .solution-hero-stats { flex-wrap: wrap; }
    .solution-hero-stats .stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .solution-hero-stats .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
}

/* ════════════════════════════════════════════════════════
   PRODUCT SECTION
   ════════════════════════════════════════════════════════ */
.product-section {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    margin-bottom: 40px;
    background: var(--white);
    transition: box-shadow 0.3s;
}
.product-section:hover { box-shadow: var(--shadow-md); }

/* Product header */
.product-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.product-logo-wrap {
    width: 72px; height: 72px;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
    font-size: 1.4rem; font-weight: 800; color: var(--primary);
}
.product-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 6px; }
.product-header-content { flex: 1; min-width: 200px; }
.product-name {
    font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0 0 2px;
}
.product-provider {
    font-size: 0.875rem; color: var(--primary); font-weight: 600; margin: 0 0 8px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.product-desc {
    font-size: 0.875rem; color: var(--text-3); margin: 0; max-width: 900px; line-height: 1.55;
}
.product-feature-pills {
    width: 100%;
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid var(--border);
}
.product-feat-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px;
    background: rgba(0,71,171,0.06);
    color: var(--primary);
    border: 1px solid rgba(0,71,171,0.15);
    border-radius: 100px;
    font-size: 0.75rem; font-weight: 600;
}

/* Plans label */
.product-plans-more-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-3);
    margin: 28px 0 14px;
    padding-top: 20px; border-top: 1px solid var(--border);
}

/* Plan card in product context — smaller padding */
.product-plans-featured .plan-card,
.product-plans-more .plan-card {
    display: flex; flex-direction: column;
}

/* ════════════════════════════════════════════════════════
   PRICING GRID VARIANTS
   ════════════════════════════════════════════════════════ */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 16px 0;
}
@media (max-width: 900px) { .pricing-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .pricing-grid-3 { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════════════════════ */
.comparison-section { margin-top: 60px; }
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.comparison-table {
    width: 100%; border-collapse: collapse; min-width: 640px;
}
.comparison-table thead {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--royal) 100%);
    position: sticky; top: 0; z-index: 10;
}
.comparison-table thead th {
    padding: 18px 20px; text-align: left;
    font-size: 0.875rem; font-weight: 700; color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.comparison-table thead th:last-child { border-right: none; }
.comparison-table thead th.feat-col { min-width: 180px; }
.comparison-table thead th.prod-col { min-width: 160px; }
.comparison-table thead th small {
    display: block; font-size: 0.75rem;
    font-weight: 400; color: rgba(255,255,255,0.6); margin-top: 2px;
}
.comparison-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--bg); }
.comparison-table tbody td {
    padding: 14px 20px; font-size: 0.875rem; color: var(--text-2);
    border-right: 1px solid var(--border); vertical-align: middle;
}
.comparison-table tbody td:last-child { border-right: none; }
.comparison-table .feat-label {
    font-weight: 600; color: var(--text); font-size: 0.875rem;
    background: var(--bg);
}
.comparison-table .feat-val { text-align: center; }
.comparison-table .feat-val-yes { color: var(--green); font-weight: 700; }
.comparison-table .feat-val-no  { color: var(--text-3); }

/* ════════════════════════════════════════════════════════
   SOLUTION PAGE HERO SVG VISUALS
   ════════════════════════════════════════════════════════ */
.solution-visual-svg {
    width: 100%; max-width: 480px; height: auto;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.3));
}
.sv-card {
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}
.sv-pulse { animation: svPulse 3s ease-in-out infinite; }
.sv-float-a { animation: svFloat 4s ease-in-out infinite; }
.sv-float-b { animation: svFloat 4s ease-in-out infinite 1.5s; }
.sv-float-c { animation: svFloat 4s ease-in-out infinite 3s; }
@keyframes svPulse { 0%,100%{opacity:.6} 50%{opacity:1} }
@keyframes svFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ════════════════════════════════════════════════════════
   PRODUCTS NAV (anchor links to each product on page)
   ════════════════════════════════════════════════════════ */
.products-nav {
    display: flex; flex-wrap: wrap; gap: 10px;
    padding: 20px 0; margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.product-nav-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 100px;
    border: 1.5px solid var(--border);
    color: var(--text-2); font-size: 0.875rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
}
.product-nav-link:hover {
    border-color: var(--primary); color: var(--primary);
    background: rgba(0,71,171,0.04);
}

/* ============================================================
   SOLUTION TABS  (6-tab business-value section on solution pages)
   ============================================================ */
.solution-tabs-wrap {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    margin-bottom: 48px;
}
.solution-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}
.sol-tab-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 22px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: color .18s, border-color .18s, background .18s;
    white-space: nowrap;
}
.sol-tab-btn:hover { color: var(--primary); background: rgba(0,71,171,.04); }
.sol-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: #fff;
}
.sol-tab-icon { font-size: 1rem; line-height: 1; }
.solution-tab-content { padding: 36px 40px 32px; }
.sol-tab-panel { display: none; }
.sol-tab-panel.active { display: block; }

/* Contact page tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Tab inner layouts */
.stab-header { margin-bottom: 28px; }
.stab-header h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.stab-header p  { color: var(--text-2); font-size: 0.95rem; max-width: 680px; line-height: 1.65; }

/* Overview — For grid */
.stab-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.stab-for-card {
    display: flex;
    gap: 13px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}
.stab-for-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.stab-for-card strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.stab-for-card p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.5; }

/* Overview — bullets */
.stab-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.stab-bullets li { font-size: 0.875rem; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.stab-bullets li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* Why Choose — cards grid */
.stab-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.stab-why-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow .2s, transform .2s;
}
.stab-why-card:hover { box-shadow: 0 8px 24px rgba(0,71,171,.1); transform: translateY(-2px); }
.stab-why-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.stab-why-card h4 { font-size: 0.875rem; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.stab-why-card p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.55; }

/* Strategy — vertical list */
.stab-strategy-list { display: flex; flex-direction: column; gap: 14px; }
.stab-strategy-item {
    display: flex;
    gap: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    align-items: flex-start;
}
.stab-strategy-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.stab-strategy-item strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.stab-strategy-item p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.55; }

/* Advantages — 2-col grid */
.stab-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.stab-adv-item {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px 16px;
}
.stab-adv-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,71,171,.08); border-radius: 8px;
    color: var(--primary); font-size: 1rem; font-weight: 700;
}
.stab-adv-item strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-1); margin-bottom: 3px; }
.stab-adv-item p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.5; }

/* Tech Stack */
.stab-stack-grid { display: flex; flex-direction: column; gap: 20px; }
.stab-stack-label {
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
    color: var(--text-3); margin-bottom: 10px;
}
.stab-stack-items { display: flex; flex-wrap: wrap; gap: 8px; }
.stab-stack-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px; background: #fff;
    border: 1.5px solid var(--border); border-radius: 100px;
    font-size: 0.875rem; font-weight: 600; color: var(--text-1);
    transition: border-color .15s, background .15s;
}
.stab-stack-pill:hover { border-color: var(--primary); background: rgba(0,71,171,.04); }

/* ROI Metrics */
.stab-roi-metrics {
    display: flex; flex-wrap: wrap; gap: 20px;
    background: linear-gradient(135deg, var(--midnight), var(--royal));
    border-radius: 14px; padding: 28px 32px; margin-bottom: 24px;
}
.stab-roi-metric { flex: 1 1 140px; text-align: center; }
.stab-roi-val { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.stab-roi-lbl { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em; }
.stab-roi-note { font-size: 0.75rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.stab-roi-points { display: flex; flex-direction: column; gap: 12px; }
.stab-roi-point {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px 18px;
}
.stab-roi-point-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.stab-roi-point strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-1); margin-bottom: 3px; }
.stab-roi-point p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.5; }

@media (max-width: 768px) {
    .solution-tab-nav { overflow-x: auto; flex-wrap: nowrap; }
    .sol-tab-btn { padding: 12px 14px; font-size: 0.875rem; }
    .sol-tab-label { display: none; }
    .sol-tab-icon { font-size: 1.2rem; }
    .solution-tab-content { padding: 24px 20px; }
    .stab-roi-metrics { padding: 20px; }
    .stab-roi-val { font-size: 1.6rem; }
}

/* ============================================================
   DATA CENTRE FILTER BAR
   ============================================================ */
.dc-filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--surface-1, #f8fafc);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 20px;
}
.dc-filter-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-2, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    margin-right: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dc-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dc-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--border, #e2e8f0);
    background: var(--surface-2, #fff);
    color: var(--text-2, #475569);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.dc-pill:hover {
    border-color: var(--accent, #0891b2);
    color: var(--accent, #0891b2);
    background: rgba(8,145,178,0.06);
}
.dc-pill.active {
    background: var(--accent, #0891b2);
    border-color: var(--accent, #0891b2);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(8,145,178,0.25);
}
@media (max-width: 640px) {
    .dc-filter-bar { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 14px; }
    .dc-filter-pills { gap: 6px; }
    .dc-pill { font-size: 0.75rem; padding: 4px 12px; }
}

/* ============================================================
   PRODUCT TABS  (product-as-tabs within each solution page)
   ============================================================ */
.product-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.product-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}
.product-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0,71,171,.04);
}
.product-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,71,171,.3);
}
.ptab-logo {
    width: 22px; height: 22px; object-fit: contain;
    border-radius: 4px;
}
.ptab-initials {
    width: 22px; height: 22px;
    background: rgba(255,255,255,.25);
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.product-tab-btn:not(.active) .ptab-initials {
    background: rgba(0,71,171,.1);
    color: var(--primary);
}
.product-tab-panels { position: relative; }

/* Product Panel header */
.product-panel-header {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 28px;
}
.product-panel-meta { width: 100%; }

/* Title row — name/provider left, logo right */
.product-meta-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}
.product-meta-titles { flex: 1; min-width: 0; }
.product-panel-meta .product-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 2px; color: var(--text-1); }
.product-panel-meta .product-provider { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0; }
.product-panel-meta .product-desc { font-size: 0.875rem; color: var(--text-2); margin-bottom: 12px; margin-top: 8px; line-height: 1.6; }

/* Vendor logo — right side of title row */
.product-vendor-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    height: 68px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.product-vendor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
}

/* Show More Plans */
.show-more-wrap {
    display: flex;
    justify-content: center;
    margin: 24px 0 8px;
}
.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: all .18s;
    letter-spacing: .02em;
}
.show-more-btn:hover, .show-more-btn.expanded {
    background: var(--primary);
    color: #fff;
}
.show-more-icon { font-size: 0.75rem; transition: transform .2s; }
.show-more-btn.expanded .show-more-icon { transform: rotate(180deg); }
.more-plans-section { margin-top: 0; padding-top: 8px; }
.more-plans-label {
    font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .09em;
    color: var(--text-3); margin-bottom: 16px; margin-top: 16px;
    display: flex; align-items: center; gap: 10px;
}
.more-plans-label::after {
    content: ''; flex: 1; height: 1px;
    background: var(--border);
}

@media (max-width: 640px) {
    .product-tab-nav { gap: 6px; }
    .product-tab-btn { padding: 8px 14px; font-size: 0.875rem; }
    .ptab-label { max-width: 100px; overflow: hidden; text-overflow: ellipsis; }
    .product-panel-header { padding: 18px; }
}

/* ============================================================
   INDUSTRIES PAGE — split layout
   ============================================================ */
.industries-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    min-height: 520px;
}
.industries-nav {
    background: var(--bg-alt);
    border-right: 1px solid var(--border);
    padding: 8px 0;
    overflow-y: auto;
}
.ind-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 20px;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    text-align: left;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all .16s;
}
.ind-nav-btn:hover { background: rgba(0,71,171,.05); color: var(--primary); }
.ind-nav-btn.active {
    background: rgba(0,71,171,.07);
    border-left-color: var(--primary);
    color: var(--primary);
}
.ind-nav-icon { font-size: 1.1rem; flex-shrink: 0; }

.industries-content { background: #fff; padding: 36px 40px; }
.ind-panel { display: none; }
.ind-panel.active { display: block; }

/* Industry panel inner layout */
.ind-panel-hero {
    display: flex; align-items: flex-start; gap: 18px;
    margin-bottom: 28px; padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.ind-badge {
    width: 56px; height: 56px; flex-shrink: 0;
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
}
.ind-panel-hero h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.ind-panel-hero .ind-tagline { font-size: 1rem; color: var(--text-2); line-height: 1.55; margin: 0; }

.ind-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.ind-section-block {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
}
.ind-section-block h4 {
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; color: var(--text-3); margin-bottom: 12px;
}
.ind-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ind-check-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--text-2); }
.ind-check-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.ind-check-list li strong { display: block; color: var(--text-1, #fff); font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.ind-detail { display: block; font-size: 0.875rem; color: var(--text-3); line-height: 1.5; margin-top: 2px; }

.ind-compliance {
    background: linear-gradient(135deg, rgba(0,71,171,.06), rgba(8,145,178,.04));
    border: 1px solid rgba(0,71,171,.15);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 22px;
}
.ind-compliance h4 {
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; color: var(--primary); margin-bottom: 10px;
}
.ind-compliance-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ind-compliance-tag {
    display: inline-block; padding: 4px 12px;
    background: rgba(0,71,171,.08); border: 1px solid rgba(0,71,171,.2);
    border-radius: 100px; font-size: 0.75rem; font-weight: 700;
    color: var(--primary);
}

.ind-cta-row {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
}
.ind-rec-plan {
    font-size: 0.875rem; color: var(--text-2); flex: 1; min-width: 180px;
}
.ind-rec-plan strong { color: var(--text-1); }

/* Mobile accordion for industries nav */
@media (max-width: 900px) {
    .industries-layout { grid-template-columns: 1fr; }
    .industries-nav {
        display: flex; overflow-x: auto; overflow-y: hidden;
        border-right: none; border-bottom: 1px solid var(--border);
        padding: 10px 12px; gap: 6px; flex-wrap: nowrap;
    }
    .ind-nav-btn {
        border-left: none; border-bottom: 3px solid transparent;
        white-space: nowrap; border-radius: 100px;
        padding: 8px 16px; font-size: 0.875rem;
        flex-shrink: 0; width: auto;
    }
    .ind-nav-btn.active {
        background: var(--primary); color: #fff;
        border-bottom-color: transparent;
    }
    .industries-content { padding: 24px 20px; }
    .ind-sections-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SUPPORT PLANS PAGE
   ============================================================ */
.support-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.support-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex; flex-direction: column;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}
.support-card:hover { box-shadow: 0 12px 40px rgba(0,71,171,.1); transform: translateY(-3px); }
.support-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0,71,171,.15);
}
.support-card-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff;
    font-size: 0.75rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
    white-space: nowrap;
}
.support-tier-badge {
    display: inline-block; padding: 4px 14px;
    border-radius: 100px; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.support-tier-foundation { background: rgba(100,116,139,.1); color: #475569; }
.support-tier-business   { background: rgba(0,71,171,.1);    color: var(--primary); }
.support-tier-enterprise { background: rgba(245,158,11,.1);  color: var(--gold-dark); }
.support-card h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 6px; }
.support-card .support-tagline { font-size: 0.875rem; color: var(--text-2); margin-bottom: 20px; line-height: 1.55; }
.support-price { margin-bottom: 20px; }
.support-price .sp-val { font-size: 1.8rem; font-weight: 900; color: var(--text-1); }
.support-price .sp-sub { font-size: 0.875rem; color: var(--text-3); }
.support-divider { height: 1px; background: var(--border); margin: 16px 0; }
.support-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.support-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.875rem; color: var(--text-2); }
.support-features li .sf-check { color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.support-features li .sf-na    { color: var(--text-3); flex-shrink: 0; margin-top: 1px; }
.support-plans-empty {
    grid-column: 1 / -1;
    padding: 48px;
    text-align: center;
    color: var(--text-3);
}
.support-resp-row {
    display: flex; justify-content: space-between; align-items: baseline;
    background: var(--bg-alt); border-radius: 8px;
    padding: 10px 14px; margin-bottom: 8px;
}
.support-resp-row .sr-label { font-size: 0.75rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.support-resp-row .sr-value { font-size: 0.875rem; font-weight: 700; color: var(--text-1); }
@media (max-width: 900px) {
    .support-plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   SOFTWARE PAGES
   ============================================================ */
.software-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    background: rgba(0,71,171,.1); border: 1px solid rgba(0,71,171,.25);
    border-radius: 100px; font-size: 0.75rem; font-weight: 700;
    color: var(--primary); margin-bottom: 16px;
}
.software-hero-badge .software-parent-link {
    color: var(--text-3); text-decoration: none;
    transition: color .15s;
}
.software-hero-badge .software-parent-link:hover { color: var(--primary); }
.sw-subnav {
    display: flex; gap: 4px; flex-wrap: wrap;
    padding: 20px 0; border-bottom: 1px solid var(--border);
}
.sw-subnav-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px;
    background: var(--bg-alt); border: 1.5px solid var(--border);
    border-radius: 100px; font-family: inherit;
    font-size: 0.875rem; font-weight: 600; color: var(--text-2);
    text-decoration: none; transition: all .15s;
}
.sw-subnav-btn:hover { border-color: var(--primary); color: var(--primary); }
.sw-subnav-btn.active {
    background: var(--primary); border-color: var(--primary);
    color: #fff; box-shadow: 0 4px 12px rgba(0,71,171,.25);
}

/* ════════════════════════════════════════════════════════
   ENHANCED PLAN CARDS (Visual Upgrade)
   ════════════════════════════════════════════════════════ */

/* Tier-specific accent bar at top of plan card */
.plan-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    background: currentColor;
}

/* Tier color assignments */
.plan-card.tier-starter .plan-card-accent { background: #0891B2; }
.plan-card.tier-business .plan-card-accent { background: #0047AB; }
.plan-card.tier-professional .plan-card-accent { background: #7C3AED; }
.plan-card.tier-enterprise .plan-card-accent { background: #F59E0B; }
.plan-card.tier-growth .plan-card-accent { background: #06B6D4; }
.plan-card.tier-custom .plan-card-accent { background: #6366F1; }

/* Most Popular ribbon badge in top-right */
.plan-popular-ribbon {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

/* Enhanced plan card styling */
.plan-card {
    padding: 28px;
    border-radius: var(--r-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 71, 171, 0.4);
}

.plan-card.featured {
    box-shadow: 0 8px 24px rgba(0, 71, 171, 0.15);
    border-color: rgba(0, 71, 171, 0.3);
}

/* Price display with better hierarchy */
.plan-price {
    margin: 24px 0 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.price-num {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.price-unit {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-2);
    line-height: 1.2;
}

/* Yearly billing line — always visible below the monthly price */
.plan-yearly-price {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: baseline;
    align-items: baseline;
    gap: 2px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: -webkit-fit-content;
    width: fit-content;
    max-width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0891B2;          /* bright teal — distinct from monthly */
    background: rgba(8, 145, 178, 0.07);
    border-radius: 8px;
    padding: 5px 10px;
    margin: 4px 0 6px;
    line-height: 1.3;
}

.plan-yearly-price .price-symbol {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0891B2;
}

.plan-yearly-price .price-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0891B2;
    letter-spacing: -0.01em;
}

.plan-yearly-price .price-unit {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0E7490;
    margin-left: 1px;
}

/* Annual savings callout */
.annual-savings {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    margin-top: 6px;
    padding: 4px 8px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 4px;
    display: inline-block;
}

/* Annual-only plan card: "Yearly" prefix label */
.price-annual-prefix {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7C3AED;
    margin-bottom: 4px;
}

/* Annual-only price number: slightly different colour to signal commitment pricing */
.price-annual-only {
    color: #5B21B6;
}
.price-annual-only .price-symbol {
    color: #7C3AED;
}

/* Savings badge — sits below the yearly price line */
.plan-savings-badge {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 4px;
    width: -webkit-fit-content;
    width: fit-content;
    max-width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    color: #059669;
    background: rgba(5,150,105,0.1);
    border: 1px solid rgba(5,150,105,0.18);
    border-radius: 20px;
    padding: 3px 9px;
    margin-top: 0;
    margin-bottom: 10px;
    vertical-align: middle;
}

/* Visibility toggle pill (shared across admin list pages) */
.visibility-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border: none;
    outline: none;
}
.visibility-pill.shown {
    background: rgba(5,150,105,0.12);
    color: #059669;
}
.visibility-pill.hidden {
    background: rgba(107,114,128,0.1);
    color: #6B7280;
}

/* Feature list with better checkmark styling */
.plan-card .plan-features {
    margin: 20px 0;
    gap: 0;
}

.plan-card .plan-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}

.plan-card .plan-features li:last-child {
    border-bottom: none;
}

/* Suppress the CSS ::before tick — the .feat-checkmark span provides the checkmark */
.plan-card .plan-features li::before {
    display: none;
}

.feat-checkmark {
    color: var(--green);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA button styling */
.plan-cta {
    width: 100%;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.plan-card.featured .plan-cta {
    background: var(--primary);
    color: #fff;
    border: none;
}

.plan-card.featured .plan-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(0, 71, 171, 0.4);
}

.plan-card:not(.featured) .plan-cta {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.plan-card:not(.featured) .plan-cta:hover {
    background: rgba(0, 71, 171, 0.08);
    border-color: var(--primary-dark);
}

/* ════════════════════════════════════════════════════════
   ENHANCED PRODUCT TAB BUTTONS (Premium Selector Chips)
   ════════════════════════════════════════════════════════ */

.product-tab-btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.product-tab-btn:not(.active) {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text-2);
}

.product-tab-btn:not(.active):hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 71, 171, 0.04);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.1);
}

.product-tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.3);
}

/* Initials badge styling */
.ptab-initials {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.25s;
}

.product-tab-btn:not(.active) .ptab-initials {
    background: rgba(0, 71, 171, 0.08);
    color: var(--primary);
}

.product-tab-btn.active .ptab-initials {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Responsive adjustments for plan cards */
@media (max-width: 900px) {
    .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .plan-card { padding: 24px; }
    .price-num { font-size: 1.9rem; }
}

@media (max-width: 600px) {
    .pricing-grid-3 { grid-template-columns: 1fr; }
    .pricing-grid-4 { grid-template-columns: 1fr; }
    .plan-card { padding: 20px; }
    .price-symbol { font-size: 1.3rem; }
    .price-num { font-size: 1.6rem; }
    .plan-popular-ribbon { top: 12px; right: 12px; }
}

/* ============================================================
   SOLUTION TABS v2 — Premium Layouts
   ============================================================ */

/* ── Tab Wrapper ─────────────────────────────────────────── */
.stv2-wrap {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* ── Tab Navigation Bar ──────────────────────────────────── */
.stv2-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    overflow-x: auto;
    scrollbar-width: none;
}
.stv2-nav::-webkit-scrollbar { display: none; }

.stv2-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 8px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748B;
    white-space: nowrap;
    transition: color 0.18s, border-color 0.18s, background 0.18s;
    width: 100%;
}
.stv2-nav-btn:hover {
    color: #0047AB;
    background: rgba(0,71,171,0.04);
}
.stv2-nav-btn.active {
    color: #0047AB;
    border-bottom-color: #0047AB;
    background: #fff;
}
.stv2-nav-icon { font-size: 1rem; }
.stv2-nav-label { font-size: 0.875rem; }

/* ── Tab Panels ──────────────────────────────────────────── */
.stv2-panels { position: relative; }
.stv2-panel { display: none; padding: 36px 36px 32px; }
.stv2-panel.active { display: block; }

/* ── Shared: Section Head ────────────────────────────────── */
.stv2-section-head {
    margin-bottom: 28px;
}
.stv2-section-head h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 8px;
    line-height: 1.3;
}
.stv2-section-head p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.65;
    max-width: 680px;
    margin: 0;
}
.stv2-section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0047AB;
    margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════
   OVERVIEW — Split Panel Layout
   ══════════════════════════════════════════════════════════ */
.stv2-overview-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 0;
}

/* Left panel */
.stv2-ov-left {
    padding-right: 12px;
}
.stv2-ov-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1628;
    line-height: 1.3;
    margin-bottom: 14px;
}
.stv2-ov-intro {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 22px;
}
.stv2-ov-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: #0047AB;
    color: #fff;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.stv2-ov-cta:hover {
    background: #000080;
    transform: translateY(-1px);
    color: #fff;
}

/* Right panel — 2×2 audience cards */
.stv2-ov-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.stv2-ov-card {
    background: var(--card-bg, #F0F6FF);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
}
.stv2-ov-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.stv2-ov-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.07);
}
.stv2-ov-card-body strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 4px;
    line-height: 1.3;
}
.stv2-ov-card-body p {
    font-size: 0.75rem;
    color: #4A5568;
    line-height: 1.5;
    margin: 0;
}

/* Benefit strip */
.stv2-ov-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 24px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #F0F6FF 0%, #EFF6FF 100%);
    border-radius: 10px;
    border: 1px solid #DBEAFE;
}
.stv2-ov-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #1E3A5F;
    font-weight: 500;
}
.stv2-ov-bullet-check {
    width: 20px;
    height: 20px;
    background: #0047AB;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE — 3-column icon cards
   ══════════════════════════════════════════════════════════ */
.stv2-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.stv2-why-card {
    background: #FAFBFF;
    border: 1px solid #E8EDF7;
    border-radius: 12px;
    padding: 22px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.stv2-why-card:hover {
    box-shadow: 0 6px 20px rgba(0,71,171,0.1);
    transform: translateY(-3px);
    border-color: #C7D7F5;
}
.stv2-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}
.stv2-why-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0A1628;
    margin-bottom: 7px;
}
.stv2-why-card p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.65;
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   STRATEGY — Numbered timeline
   ══════════════════════════════════════════════════════════ */
.stv2-strategy-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.stv2-strategy-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 20px;
    align-items: start;
}
.stv2-step-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.stv2-step-num {
    width: 36px;
    height: 36px;
    background: #0047AB;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 1;
}
.stv2-step-line {
    width: 2px;
    flex: 1;
    min-height: 28px;
    background: linear-gradient(180deg, #0047AB 0%, #DDE3EE 100%);
    margin: 4px 0;
}
.stv2-step-content {
    padding: 4px 0 28px;
}
.stv2-step-icon-pill {
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.stv2-step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 6px;
}
.stv2-step-content p {
    font-size: 0.875rem;
    color: #4A5568;
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   ADVANTAGES — 2-col feature list with left accent bar
   ══════════════════════════════════════════════════════════ */
.stv2-adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.stv2-adv-item {
    background: #FAFBFF;
    border: 1px solid #E8EDF7;
    border-left: 4px solid currentColor;
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.stv2-adv-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.stv2-adv-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
    width: 32px;
    text-align: center;
}
.stv2-adv-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0A1628;
    margin-bottom: 5px;
}
.stv2-adv-body p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.65;
    line-height: 1.55;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   TECH STACK — Categorised badge groups
   ══════════════════════════════════════════════════════════ */
.stv2-stack-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
}
.stv2-stack-group {}
.stv2-stack-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 2px solid currentColor;
    margin-bottom: 12px;
}
.stv2-stack-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.stv2-stack-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    transition: background 0.15s, border-color 0.15s;
}
.stv2-stack-pill:hover {
    background: rgba(var(--pill-color, #0047AB), 0.1);
    border-color: rgba(var(--pill-color, #0047AB), 0.25);
}

/* ══════════════════════════════════════════════════════════
   ROI — Metric tiles + supporting points
   ══════════════════════════════════════════════════════════ */
.stv2-roi-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
    background: #0B1A35;
    border-radius: 14px;
    padding: 24px 20px;
}
.stv2-roi-tile {
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stv2-roi-tile:last-child { border-right: none; }
.stv2-roi-val {
    font-size: 2rem;
    font-weight: 900;
    color: var(--tile-color, #82C8E5);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.stv2-roi-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    line-height: 1.35;
}
.stv2-roi-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}
.stv2-roi-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.stv2-roi-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #FAFBFF;
    border: 1px solid #E8EDF7;
    border-radius: 10px;
    padding: 16px 14px;
}
.stv2-roi-point-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.stv2-roi-point h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0A1628;
    margin-bottom: 4px;
}
.stv2-roi-point p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.65;
    line-height: 1.55;
    margin: 0;
}

/* Compliance callout cards (archival.php) */
.compliance-callout h4 { font-size: 1.25rem; font-weight: 700; line-height: 1.4; color: var(--text-1); margin-bottom: 6px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .stv2-panel { padding: 26px 20px; }
    .stv2-overview-split { grid-template-columns: 1fr; gap: 24px; }
    .stv2-ov-left { padding-right: 0; }
    .stv2-why-grid { grid-template-columns: repeat(2, 1fr); }
    .stv2-roi-metrics { grid-template-columns: repeat(2, 1fr); }
    .stv2-roi-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stv2-roi-tile:nth-child(2n) { border-right: none; }
    .stv2-stack-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .stv2-nav { grid-template-columns: repeat(6, minmax(80px, 1fr)); }
    .stv2-nav-btn { padding: 12px 6px; font-size: 0.75rem; }
    .stv2-nav-label { display: none; }
    .stv2-panel { padding: 20px 16px; }
    .stv2-ov-right { grid-template-columns: 1fr; }
    .stv2-why-grid { grid-template-columns: 1fr; }
    .stv2-adv-grid { grid-template-columns: 1fr; }
    .stv2-roi-metrics { grid-template-columns: repeat(2, 1fr); }
    .stv2-roi-points { grid-template-columns: 1fr; }
    .stv2-strategy-step { grid-template-columns: 38px 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   OFFER / PROMOTION STYLES
   Applied to plan cards that have a valid offer_price set
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Offer ribbon (replaces popular badge when offer is active) ──────────── */
.offer-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #DC2626, #EF4444);
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 12px 12px 0 0;
}

/* Push card content below the ribbon */
.plan-card.has-offer {
    border-color: #FECACA !important;
    box-shadow: 0 4px 24px rgba(220, 38, 38, 0.12);
    padding-top: 44px;  /* make room for ribbon */
}

.plan-card.has-offer .plan-card-accent {
    background: linear-gradient(90deg, #DC2626, #EF4444);
}

/* ── Offer price block ───────────────────────────────────────────────────── */
.offer-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offer-original-price {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-weight: 500;
}

.offer-original-price s {
    text-decoration: line-through;
    text-decoration-color: #DC2626;
    text-decoration-thickness: 2px;
}

/* Make the offer price number red */
.offer-sym,
.offer-num {
    color: #DC2626 !important;
}

/* ── Save % badge ────────────────────────────────────────────────────────── */
.offer-save-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    margin-top: 4px;
    width: fit-content;
}

/* ── Offer expiry line ───────────────────────────────────────────────────── */
.offer-expires {
    font-size: 0.75rem;
    color: #6D8196;
    margin-top: 4px;
}

/* ── Offer CTA button ────────────────────────────────────────────────────── */
.btn-offer {
    background: linear-gradient(135deg, #DC2626, #B91C1C) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35) !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-offer:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45) !important;
}

/* ── Pulse animation on the offer card (subtle attention-grabber) ────────── */
@keyframes offerGlow {
    0%, 100% { box-shadow: 0 4px 24px rgba(220, 38, 38, 0.10); }
    50%       { box-shadow: 0 6px 32px rgba(220, 38, 38, 0.25); }
}

.plan-card.has-offer {
    animation: offerGlow 3s ease-in-out infinite;
}

/* Pause animation on hover to avoid distraction during reading */
.plan-card.has-offer:hover {
    animation: none;
    box-shadow: 0 8px 36px rgba(220, 38, 38, 0.22);
    transform: translateY(-4px);
}


/* ── Currency Selector (navbar) ──────────────────────────────────────────── */
/* The navbar is light/white — style for dark text on white background */
.nav-currency-wrap {
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.nav-currency-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(0,71,171,0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230047AB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 8px center;
    border: 1.5px solid rgba(0,71,171,0.22);
    border-radius: 8px;
    color: #0047AB;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: inherit;
    padding: 6px 26px 6px 10px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    min-width: 82px;
    line-height: 1.4;
}

.nav-currency-select option {
    background: #fff;
    color: #0B1A35;
    font-weight: 500;
}

.nav-currency-select:hover {
    background-color: rgba(0,71,171,0.10);
    border-color: rgba(0,71,171,0.4);
}

.nav-currency-select:focus {
    box-shadow: 0 0 0 3px rgba(0,71,171,0.15);
    border-color: #0047AB;
}

/* Price conversion transition */
.price-num, .offer-num {
    transition: opacity 0.18s ease;
}

.price-converting .price-num,
.price-converting .offer-num {
    opacity: 0.35;
}

/* ── Currency price flash animation ─────────────────────────────────────── */
@keyframes priceFlash {
    0%   { opacity: 1; }
    30%  { opacity: 0.25; color: var(--primary, #0047AB); }
    100% { opacity: 1; }
}

.price-flash {
    animation: priceFlash 0.35s ease-out;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INDEX PAGE — Platform Highlights / Why GoCloud
   Moved from index.php body <style> block (P4 fix)
   ═══════════════════════════════════════════════════════════════════════════ */
/* ── Platform Highlights / Why GoCloud ── */
.gc-why-section {
    padding: 80px 0 72px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.gc-why-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}
.gc-why-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vivid);
    margin-bottom: 10px;
}
.gc-why-heading {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.gc-why-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-3);
    line-height: 1.7;
    margin: 0;
}
/* Card */
.gc-why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.gc-why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-blue);
    transform: translateY(-2px);
}
/* Icon */
.gc-why-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gc-why-icon--blue  { background: rgba(var(--vivid-rgb), 0.1);  color: var(--vivid); }
.gc-why-icon--teal  { background: rgba(var(--teal-rgb), 0.1);   color: var(--teal); }
.gc-why-icon--gold  { background: rgba(var(--gold-rgb), 0.12);  color: var(--gold-dark); }
.gc-why-icon--green { background: rgba(var(--green-rgb), 0.1);  color: var(--green); }
/* Text */
.gc-why-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
}
.gc-why-card-body {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-3);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
/* Tags */
.gc-why-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 4px;
}
.gc-why-card-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-3);
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 10px;
}

/* ── Index page responsive grid overrides ── */
@media (max-width:900px){.solutions-home-grid{grid-template-columns:repeat(2,1fr)!important;}}
@media (max-width:560px){.solutions-home-grid{grid-template-columns:1fr!important;}}
@media (max-width:900px){.who-we-help-grid{grid-template-columns:repeat(2,1fr)!important;}}
@media (max-width:560px){.who-we-help-grid{grid-template-columns:1fr!important;}}
@media (max-width:900px){.testimonials-grid{grid-template-columns:repeat(2,1fr)!important;}}
@media (max-width:560px){.testimonials-grid{grid-template-columns:1fr!important;}}

/* ══════════════════════════════════════════════════════════
   SITE NOTICE BANNER
   ══════════════════════════════════════════════════════════ */
.gc-notice {
    width: 100%;
    padding: 10px 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    z-index: 1100;
    position: relative;
}
.gc-notice-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.gc-notice-text { flex: 1; min-width: 0; }
.gc-notice-link {
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 4px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.15s;
}
.gc-notice-link:hover { opacity: 0.85; }
.gc-notice-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 8px 0 4px;
    opacity: 0.55;
    transition: opacity 0.15s;
    flex-shrink: 0;
    margin-left: auto;
}
.gc-notice-close:hover { opacity: 1; }

/* Type variants — semi-transparent so the page bleeds through subtly */
.gc-notice--info    { background: rgba(219,234,254,0.82); color:#1E3A8A; backdrop-filter: blur(6px); }
.gc-notice--info    .gc-notice-link { background: rgba(37,99,235,0.88); color:#fff; }
.gc-notice--success { background: rgba(220,252,231,0.82); color:#14532D; backdrop-filter: blur(6px); }
.gc-notice--success .gc-notice-link { background: rgba(22,163,74,0.88); color:#fff; }
.gc-notice--warning { background: rgba(254,243,199,0.82); color:#78350F; backdrop-filter: blur(6px); }
.gc-notice--warning .gc-notice-link { background: rgba(217,119,6,0.88); color:#fff; }
.gc-notice--urgent  { background: rgba(254,226,226,0.82); color:#7F1D1D; backdrop-filter: blur(6px); }
.gc-notice--urgent  .gc-notice-link { background: rgba(220,38,38,0.88); color:#fff; }
.gc-notice--promo   { background: rgba(237,233,254,0.82); color:#4C1D95; backdrop-filter: blur(6px); }
.gc-notice--promo   .gc-notice-link { background: rgba(124,58,237,0.88); color:#fff; }

@media (max-width: 640px) {
    .gc-notice { padding: 10px 0; font-size: 0.875rem; }
    .gc-notice-inner { gap: 8px; }
    .gc-notice-link { font-size: 0.75rem; padding: 3px 10px; }
}
