
  :root {
    --navy: #0A0F2E;
    --indigo: #4F46E5;
    --indigo-light: #6366F1;
    --indigo-pale: #EEF2FF;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --white: #FFFFFF;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-400: #94A3B8;
    --slate-600: #475569;
    --slate-800: #1E293B;
    --green: #10B981;
    --red: #EF4444;
    --font-display: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-display);
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */



  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 15, 46, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--indigo), var(--gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: white;
  }

  .nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .nav-logo-text span { color: var(--gold); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-badge {
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 4px;
  }

  .nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }

  .btn-primary {
    background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
    border: none;
    color: var(--white);
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(79,70,229,0.35);
  }

  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,70,229,0.45); }

  .btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 18px rgba(245,158,11,0.35);
  }

  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.45); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    overflow: hidden;
  }

  .hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: drift 8s ease-in-out infinite;
  }

  .orb1 { width: 500px; height: 500px; background: var(--indigo); top: -100px; right: -100px; animation-delay: 0s; }
  .orb2 { width: 350px; height: 350px; background: var(--gold); bottom: -80px; left: 10%; animation-delay: 3s; }
  .orb3 { width: 250px; height: 250px; background: #7C3AED; top: 30%; left: -80px; animation-delay: 1.5s; }

  @keyframes drift {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.18);
    border: 1px solid rgba(99,102,241,0.35);
    color: var(--indigo-light);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
  }

  .hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--indigo-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -2px;
    margin-bottom: 24px;
  }

  .hero h1 .accent-indigo { color: var(--indigo-light); }
  .hero h1 .accent-gold { color: var(--gold); }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.62);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-link {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }

  .hero-link:hover { color: var(--white); }

  .hero-stats {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
  }

  .stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px 28px;
    backdrop-filter: blur(8px);
    text-align: right;
    min-width: 200px;
    transition: transform 0.3s, border-color 0.3s;
  }

  .stat-card:hover {
    transform: translateX(-4px);
    border-color: rgba(99,102,241,0.4);
  }

  .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
  }

  .stat-number span { color: var(--gold); }

  .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ── PRODUCT TOGGLE ── */
  .product-toggle-section {
    background: var(--slate-100);
    padding: 80px 5%;
  }

  .section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 12px;
  }

  .section-title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .section-sub {
    text-align: center;
    font-size: 17px;
    color: var(--slate-600);
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.7;
  }

  .toggle-bar {
    display: flex;
    background: var(--white);
    border-radius: 14px;
    padding: 6px;
    border: 1px solid var(--slate-200);
    max-width: 480px;
    margin: 0 auto 56px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    color: var(--slate-600);
  }

  .toggle-btn.active {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10,15,46,0.25);
  }

  .toggle-btn.active.gold-active {
    background: linear-gradient(135deg, var(--gold), #F97316);
    color: var(--navy);
  }

  .product-panel { display: none; }
  .product-panel.active { display: block; animation: fadeUp 0.35s ease; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── MODULES GRID ── */
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .module-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--slate-200);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .module-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--indigo), var(--indigo-light));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .module-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(79,70,229,0.12); border-color: rgba(99,102,241,0.25); }
  .module-card:hover::before { transform: scaleX(1); }

  .module-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--indigo-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .module-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .module-card p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.65;
  }

  /* SmartCRM specific */
  .module-card.crm-card::before {
    background: linear-gradient(90deg, var(--gold), #F97316);
  }

  .module-card.crm-card:hover { box-shadow: 0 12px 32px rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); }

  .module-icon.crm-icon { background: #FEF3C7; }

  /* ── NEW CAPABILITY BANNER ── */
  .smartcrm-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a1060 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
  }

  .smartcrm-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    right: -100px; top: -100px;
    border-radius: 50%;
  }

  .smartcrm-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
  }

  .smartcrm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.35);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .smartcrm-hero h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .smartcrm-hero h2 span { color: var(--gold); }

  .smartcrm-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 36px;
  }

  .smartcrm-visual {
    position: relative;
  }

  .crm-mockup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
  }

  .crm-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .crm-mockup-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
  }

  .crm-mockup-badge {
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
  }

  .crm-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    cursor: pointer;
  }

  .crm-row:hover { background: rgba(255,255,255,0.1); }

  .crm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
  }

  .crm-row-info { flex: 1; }

  .crm-row-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
  }

  .crm-row-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
  }

  .crm-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
  }

  .pill-green { background: rgba(16,185,129,0.2); color: #34D399; }
  .pill-gold { background: rgba(245,158,11,0.2); color: var(--gold); }
  .pill-red { background: rgba(239,68,68,0.2); color: #F87171; }
  .pill-blue { background: rgba(99,102,241,0.2); color: #818CF8; }

  .crm-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
  }

  .crm-metric {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
  }

  .crm-metric-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.5px;
  }

  .crm-metric-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ── WHO IS SMARTCRM FOR ── */
  .sector-section {
    padding: 90px 5%;
    background: var(--white);
  }

  .sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 56px;
  }

  .sector-card {
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1.5px solid var(--slate-200);
    text-align: center;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
  }

  .sector-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(245,158,11,0.14);
    transform: translateY(-3px);
  }

  .sector-emoji { font-size: 36px; margin-bottom: 14px; display: block; }

  .sector-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .sector-card p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.6;
  }

  .sector-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ── COMPLIANCE ── */
  .compliance-section {
    padding: 90px 5%;
    background: var(--slate-100);
  }

  .compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .compliance-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 20px;
    border: 1px solid var(--slate-200);
  }

  .compliance-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--indigo-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .compliance-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .compliance-item p { font-size: 13px; color: var(--slate-600); line-height: 1.6; }

  .compliance-visual {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
  }

  .comp-vis-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .comp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 5px 5px 5px 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: all 0.2s;
  }

  .comp-tag:hover { background: rgba(99,102,241,0.2); border-color: rgba(99,102,241,0.4); color: var(--white); }
  .comp-tag .dot { width: 6px; height: 6px; border-radius: 50%; }
  .dot-green { background: var(--green); }
  .dot-blue { background: #60A5FA; }
  .dot-yellow { background: var(--gold); }

  /* ── PRICING ── */
  .pricing-section {
    padding: 90px 5%;
    background: var(--white);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 56px auto 0;
  }

  .pricing-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid var(--slate-200);
    position: relative;
    transition: all 0.25s;
  }

  .pricing-card.featured {
    background: var(--navy);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(10,15,46,0.3);
    transform: scale(1.03);
  }

  .pricing-card.crm-plan {
    border-color: rgba(245,158,11,0.4);
    background: linear-gradient(to bottom, #FFFBEB, #FFFFFF);
  }

  .pricing-card:hover:not(.featured) { border-color: var(--indigo); transform: translateY(-4px); }

  .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--indigo);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .pricing-badge.gold { background: var(--gold); color: var(--navy); }

  .pricing-tier {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--indigo);
    margin-bottom: 8px;
  }

  .featured .pricing-tier { color: var(--indigo-light); }
  .crm-plan .pricing-tier { color: #D97706; }

  .pricing-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .featured .pricing-name { color: var(--white); }

  .pricing-price {
    font-size: 40px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1;
    margin: 16px 0 4px;
  }

  .featured .pricing-price { color: var(--white); }
  .crm-plan .pricing-price { color: #D97706; }

  .pricing-price sup { font-size: 18px; vertical-align: top; margin-top: 8px; }
  .pricing-price sub { font-size: 14px; color: var(--slate-400); font-weight: 500; }
  .featured .pricing-price sub { color: rgba(255,255,255,0.5); }

  .pricing-desc {
    font-size: 13px;
    color: var(--slate-600);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .featured .pricing-desc { color: rgba(255,255,255,0.6); }

  .pricing-divider {
    height: 1px;
    background: var(--slate-200);
    margin-bottom: 20px;
  }

  .featured .pricing-divider { background: rgba(255,255,255,0.12); }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-600);
  }

  .featured .pricing-features li { color: rgba(255,255,255,0.75); }

  .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16,185,129,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    color: var(--green);
  }

  .featured .check { background: rgba(255,255,255,0.12); color: #6EE7B7; }

  .btn-plan {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: 1.5px solid var(--indigo);
    background: transparent;
    color: var(--indigo);
  }

  .btn-plan:hover { background: var(--indigo); color: var(--white); }

  .btn-plan.featured-plan {
    background: white;
    color: var(--navy);
    border-color: white;
  }

  .btn-plan.featured-plan:hover { background: var(--gold); border-color: var(--gold); }

  .btn-plan.gold-plan {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }

  .btn-plan.gold-plan:hover { background: #D97706; border-color: #D97706; }

  /* ── SECURITY ── */
  .security-section {
    padding: 90px 5%;
    background: var(--slate-100);
  }

  .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 56px;
  }

  .security-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--slate-200);
    transition: all 0.2s;
  }

  .security-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }

  .security-icon { font-size: 28px; margin-bottom: 14px; display: block; }

  .security-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .security-card p { font-size: 13px; color: var(--slate-600); line-height: 1.65; }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    padding: 90px 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .testimonials-section .section-title { color: var(--white); }
  .testimonials-section .section-sub { color: rgba(255,255,255,0.55); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.25s;
  }

  .testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }

  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }

  .testi-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: var(--white);
  }

  .testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
  }

  .testi-role { font-size: 12px; color: rgba(255,255,255,0.4); }

  /* ── CTA ── */
  .cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #0A0F2E 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
    right: -100px; bottom: -100px;
    border-radius: 50%;
  }

  .cta-section h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }

  .cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  /* ── FOOTER ── */
  footer {
    background: #06091A;
    padding: 60px 5% 36px;
    color: rgba(255,255,255,0.55);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 260px;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }

  .footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
  }

  .footer-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
  }

  /* ── PROCESS STEPS ── */
  .process-section {
    padding: 90px 5%;
    background: var(--white);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--indigo), var(--gold), transparent);
    z-index: 0;
  }

  .step-card {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--indigo-pale);
    border: 2px solid var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--indigo);
    margin: 0 auto 20px;
  }

  .step-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .step-card p { font-size: 13px; color: var(--slate-600); line-height: 1.65; }

  /* ── TRUST BAR ── */
  .trust-bar {
    padding: 40px 5%;
    background: var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-600);
    font-size: 14px;
    font-weight: 600;
  }

  .trust-item span:first-child { font-size: 22px; }

  /* ── MISC ── */
  .tag-new {
    background: rgba(16,185,129,0.12);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 6px;
    text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .hero-stats { display: none; }
    .smartcrm-inner { grid-template-columns: 1fr; gap: 40px; }
    .compliance-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .nav-links { display: none; }
    .ss-inner { grid-template-columns: 1fr; gap: 40px; }
    .ss-features-grid { grid-template-columns: 1fr 1fr; }
    .dpdp-pillars { grid-template-columns: 1fr 1fr; }
    .dpdp-strip-items { grid-template-columns: 1fr 1fr; }
  }

  /* ─────────────────────────────────────────
     SERVICE SUITE
  ───────────────────────────────────────── */
  .service-suite-section {
    padding: 100px 5% 70px;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .ss-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }

  .ss-orb1 {
    width: 400px; height: 400px;
    background: rgba(79,70,229,0.07);
    top: -120px; right: -80px;
  }

  .ss-orb2 {
    width: 300px; height: 300px;
    background: rgba(16,185,129,0.07);
    bottom: 0; left: -60px;
  }

  .ss-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 80px;
  }

  .ss-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .ss-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  .ss-title {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .ss-title span { color: var(--indigo); }

  .ss-sub {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
  }

  .ss-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .ss-channel {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-800);
    transition: all 0.2s;
  }

  .ss-channel:hover { border-color: var(--indigo); background: var(--indigo-pale); color: var(--indigo); }

  .ss-channel-new {
    border-color: rgba(16,185,129,0.4);
    background: rgba(16,185,129,0.06);
    color: #059669;
  }

  /* Mockup */
  .ss-mockup-wrap { position: relative; }

  .ss-mockup {
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10,15,46,0.25);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .ss-mockup-topbar {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .ss-topbar-left { display: flex; gap: 6px; }
  .ss-topbar-dot { width: 10px; height: 10px; border-radius: 50%; }

  .ss-topbar-title {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-align: center;
  }

  .ss-topbar-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 4px;
    padding: 2px 8px;
  }

  .ss-ticket-list { padding: 16px; display: flex; flex-direction: column; gap: 8px; }

  .ss-ticket {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 12px 14px;
    transition: background 0.2s;
    cursor: pointer;
  }

  .ss-ticket:hover { background: rgba(255,255,255,0.08); }
  .ss-ticket-urgent { border-left: 3px solid #EF4444; }
  .ss-ticket-open { border-left: 3px solid #6366F1; }

  .ss-ticket-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
  }

  .ss-ticket-id { font-size: 10px; font-weight: 700; color: var(--indigo-light); }
  .ss-ticket-time { font-size: 10px; color: rgba(255,255,255,0.35); }

  .ss-ticket-subject {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .ss-ticket-footer { display: flex; align-items: center; gap: 8px; }

  .ss-ticket-ch {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    padding: 2px 7px;
    border-radius: 4px;
  }

  .ss-sla {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-right: auto;
  }

  .ss-sla-ok { background: rgba(16,185,129,0.12); color: #34D399; }
  .ss-sla-warn { background: rgba(245,158,11,0.15); color: var(--gold); }

  .ss-mini-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .ss-mini-metric {
    padding: 14px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  .ss-mini-metric:last-child { border-right: none; }

  .ss-mini-val {
    font-size: 22px;
    font-weight: 900;
    color: var(--indigo-light);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
  }

  .ss-mini-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
  }

  /* Feature cards */
  .ss-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
  }

  .ss-feat-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .ss-feat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--indigo));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .ss-feat-card:hover {
    border-color: rgba(16,185,129,0.35);
    box-shadow: 0 10px 28px rgba(16,185,129,0.1);
    transform: translateY(-3px);
  }

  .ss-feat-card:hover::after { transform: scaleX(1); }

  .ss-feat-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
  }

  .ss-feat-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .ss-feat-card p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.65;
  }

  /* Industry bar */
  .ss-industry-bar {
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .ss-industry-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-600);
    white-space: nowrap;
  }

  .ss-industry-tags { display: flex; flex-wrap: wrap; gap: 8px; }

  .ss-ind-tag {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
  }

  .ss-ind-tag:hover { border-color: var(--green); color: #059669; background: rgba(16,185,129,0.05); }
  .ss-ind-active { border-color: var(--green) !important; color: #059669 !important; background: rgba(16,185,129,0.08) !important; }

  /* ─────────────────────────────────────────
     DPDP
  ───────────────────────────────────────── */
  .dpdp-section {
    padding: 100px 5% 72px;
    background: #0D0A1A;
    position: relative;
    overflow: hidden;
  }

  .dpdp-section::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, transparent 65%);
    top: -200px; right: -200px;
    border-radius: 50%;
    pointer-events: none;
  }

  .dpdp-header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 2;
  }

  .dpdp-shield {
    flex-shrink: 0;
    margin-top: 4px;
  }

  .dpdp-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F87171;
    margin-bottom: 12px;
  }

  .dpdp-title {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .dpdp-title span { color: #F87171; }

  .dpdp-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    max-width: 700px;
  }

  /* Pillars grid */
  .dpdp-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
  }

  .dpdp-pillar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .dpdp-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #EF4444, #F97316);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .dpdp-pillar:hover {
    background: rgba(239,68,68,0.06);
    border-color: rgba(239,68,68,0.25);
    transform: translateY(-3px);
  }

  .dpdp-pillar:hover::before { transform: scaleX(1); }

  .dpdp-pillar-num {
    font-size: 11px;
    font-weight: 800;
    color: rgba(239,68,68,0.5);
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .dpdp-pillar-icon {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
  }

  .dpdp-pillar h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .dpdp-pillar p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .dpdp-coverage { display: flex; flex-wrap: wrap; gap: 5px; }

  .dpdp-cov-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: #F87171;
  }

  /* Readiness card */
  .dpdp-readiness {
    background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(249,115,22,0.08));
    border-color: rgba(239,68,68,0.3) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dpdp-readiness-score {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .dpdp-score-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .dpdp-score-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
  }

  .dpdp-score-lbl {
    font-size: 9px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  .dpdp-readiness h4 { color: var(--white) !important; }
  .dpdp-readiness p { color: rgba(255,255,255,0.5); }

  .dpdp-cta-btn {
    margin-top: auto;
    background: linear-gradient(135deg, #EF4444, #F97316);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    box-shadow: 0 4px 14px rgba(239,68,68,0.3);
  }

  .dpdp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(239,68,68,0.4); }

  /* DPDP strip */
  .dpdp-strip {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
    z-index: 2;
  }

  .dpdp-strip-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }

  .dpdp-strip-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .dpdp-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
  }

  .dpdp-strip-item span { font-size: 14px; }

  /* ─────────────────────────────────────────
     CASE STUDIES
  ───────────────────────────────────────── */
  .cs-section {
    padding: 100px 5% 80px;
    background: var(--slate-100);
  }

  .cs-header { text-align: center; margin-bottom: 0; }

  /* Tab switcher */
  .cs-tabs {
    display: inline-flex;
    gap: 8px;
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    border: 1.5px solid var(--slate-200);
    margin-top: 36px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .cs-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    color: var(--slate-600);
    white-space: nowrap;
  }

  .cs-tab-icon { font-size: 18px; }

  .cs-tab:hover { background: var(--slate-100); color: var(--navy); }

  .cs-tab-active {
    background: var(--navy) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(10,15,46,0.2);
  }

  /* Panels */
  .cs-panel { display: none; animation: fadeUp 0.35s ease; margin-top: 48px; }
  .cs-panel-active { display: block; }

  /* Hero strip */
  .cs-hero-strip {
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
  }

  .cs-strip-health {
    background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  }

  .cs-strip-ads {
    background: linear-gradient(135deg, #0F172A 0%, #1A0F00 100%);
  }

  .cs-strip-bgv {
    background: linear-gradient(135deg, #0F172A 0%, #0F1A0A 100%);
  }

  .cs-hero-strip::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    top: -80px; right: 200px;
    pointer-events: none;
    opacity: 0.2;
  }

  .cs-strip-health::before { background: var(--indigo); }
  .cs-strip-ads::before { background: var(--gold); }
  .cs-strip-bgv::before { background: var(--green); }

  .cs-industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
  }

  .cs-case-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .cs-case-lead {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 28px;
  }

  .cs-stat-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .cs-stat { display: flex; flex-direction: column; gap: 4px; }

  .cs-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
  }

  .cs-strip-health .cs-stat-num { color: #818CF8; }
  .cs-strip-ads .cs-stat-num { color: var(--gold); }
  .cs-strip-bgv .cs-stat-num { color: #34D399; }

  .cs-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    max-width: 120px;
    line-height: 1.4;
  }

  /* Modules used */
  .cs-strip-right { flex-shrink: 0; min-width: 200px; }

  .cs-modules-used {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px;
  }

  .cs-modules-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
  }

  .cs-module-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 4px 4px 4px 0;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid transparent;
  }

  /* Flow section */
  .cs-flow-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 32px;
    border: 1px solid var(--slate-200);
  }

  .cs-flow-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-400);
    margin-bottom: 28px;
  }

  .cs-flow {
    display: grid;
    grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    align-items: start;
    gap: 8px;
  }

  .cs-flow-5 {
    grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  }

  .cs-flow-6 {
    grid-template-columns: 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr;
  }

  .cs-flow-step { text-align: center; }

  .cs-flow-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1.5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
    transition: transform 0.2s;
  }

  .cs-flow-step:hover .cs-flow-icon { transform: scale(1.08); }

  .cs-flow-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .cs-flow-detail {
    font-size: 11px;
    color: var(--slate-600);
    line-height: 1.65;
  }

  .cs-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--slate-400);
    padding-top: 14px;
    font-weight: 300;
  }

  /* Challenge/solution breakdown */
  .cs-breakdown {
    margin-bottom: 32px;
  }

  .cs-breakdown-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-400);
    margin-bottom: 20px;
    padding-left: 4px;
  }

  .cs-challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .cs-challenge-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1.5px solid var(--slate-200);
    transition: all 0.2s;
  }

  .cs-challenge-card:hover {
    border-color: var(--indigo);
    box-shadow: 0 8px 24px rgba(79,70,229,0.08);
  }

  .cs-challenge-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .cs-ch-icon { font-size: 24px; flex-shrink: 0; }

  .cs-ch-problem {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    margin-bottom: 4px;
  }

  .cs-challenge-header h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
  }

  .cs-challenge-card > p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .cs-ch-divider {
    height: 1px;
    background: var(--slate-200);
    margin: 14px 0;
  }

  .cs-ch-solution-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .cs-ch-solution-text {
    font-size: 13px;
    color: var(--slate-800);
    line-height: 1.65;
  }

  /* Medium grid (Ad case) */
  .cs-medium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cs-medium-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1.5px solid var(--slate-200);
    transition: all 0.2s;
  }

  .cs-medium-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(245,158,11,0.1);
    transform: translateY(-2px);
  }

  .cs-medium-highlight {
    background: linear-gradient(135deg, #FFFBEB, #FFF7ED);
    border-color: rgba(245,158,11,0.35) !important;
  }

  .cs-medium-icon { font-size: 28px; margin-bottom: 10px; display: block; }

  .cs-medium-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .cs-medium-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cs-medium-list li {
    font-size: 12px;
    color: var(--slate-600);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
  }

  .cs-medium-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--slate-400);
    font-size: 10px;
    top: 2px;
  }

  /* BGV checks grid */
  .cs-checks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cs-check-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1.5px solid var(--slate-200);
    transition: all 0.2s;
  }

  .cs-check-card:hover {
    border-color: var(--green);
    box-shadow: 0 6px 20px rgba(16,185,129,0.08);
    transform: translateY(-2px);
  }

  .cs-check-dpdp {
    background: linear-gradient(135deg, #1A0808, #0D0A1A);
    border-color: rgba(239,68,68,0.3) !important;
  }

  .cs-check-dpdp:hover {
    border-color: rgba(239,68,68,0.6) !important;
    box-shadow: 0 6px 20px rgba(239,68,68,0.12) !important;
  }

  .cs-check-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .cs-check-icon { font-size: 28px; flex-shrink: 0; }

  .cs-check-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .cs-check-dpdp h5 { color: var(--white); }

  .cs-check-tags { display: flex; gap: 5px; flex-wrap: wrap; }

  .cs-ctag {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .cs-ctag-field { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: #D97706; }
  .cs-ctag-digital { background: rgba(79,70,229,0.1); border-color: rgba(79,70,229,0.3); color: var(--indigo); }
  .cs-ctag-manual { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #059669; }
  .cs-ctag-api { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.3); color: #7C3AED; }

  .cs-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
  }

  .cs-check-list li {
    font-size: 12px;
    color: var(--slate-600);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
  }

  .cs-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    top: 1px;
  }

  .cs-check-tat {
    font-size: 11px;
    color: var(--slate-400);
    border-top: 1px solid var(--slate-200);
    padding-top: 10px;
    margin-top: 4px;
  }

  .cs-check-tat strong { color: var(--navy); }

  /* Callout */
  .cs-callout {
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .cs-callout-health { background: linear-gradient(135deg, #EEF2FF, #E0E7FF); border: 1px solid rgba(99,102,241,0.25); }
  .cs-callout-ads { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); border: 1px solid rgba(245,158,11,0.3); }
  .cs-callout-bgv { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); border: 1px solid rgba(16,185,129,0.25); }

  .cs-callout-icon { font-size: 36px; flex-shrink: 0; }

  .cs-callout h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .cs-callout p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.75;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .cs-hero-strip { grid-template-columns: 1fr; }
    .cs-challenges-grid { grid-template-columns: 1fr; }
    .cs-medium-grid { grid-template-columns: 1fr 1fr; }
    .cs-checks-grid { grid-template-columns: 1fr; }
    .cs-flow { grid-template-columns: 1fr; }
    .cs-flow-5, .cs-flow-6 { grid-template-columns: 1fr; }
    .cs-flow-arrow { display: none; }
    .cs-tabs { flex-direction: column; width: 100%; }
    .cs-tab { justify-content: center; }
  }


  /* Additional Nav */

    nav {
    background: rgba(248, 250, 252, 0.97);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }

    .nav-links a {
    color: #475569;
    }

    .nav-links a:hover {
    color: #0f172a;
    }

    .btn-ghost {
    border-color: #cbd5e1;
    color: #334155;
    }

    .btn-ghost:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    }