:root {
    --royal-blue: #0052CC;
    --emerald: #00875A;
    --gold: #F5C200;
    --navy: #002A7A;
    --sky: #85B7EB;
    --cloud: #F4F8FF;
    --slate: #6B7280;
    --warm-gold: #FDE080;
    --page-bg: #FFFFFF;
    --section-bg: #F4F8FF;
    --card-bg: #FFFFFF;
    --text-primary: #0D1B3E;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --border: rgba(0,82,204,0.1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 60px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,82,204,0.08);
    box-shadow: 0 2px 20px rgba(0,42,122,0.06);
  }
  .logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
  .logo-icon {
    height: 88px;
    width: auto;
    min-width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .logo-icon .logo-img {
    height: 88px;
    width: auto;
    max-width: min(563px, 72vw);
    object-fit: contain;
    display: block;
  }
  .footer-brand .logo-icon {
    height: 78px;
  }
  .footer-brand .logo-icon .logo-img {
    height: 78px;
    max-width: min(500px, 85vw);
  }

  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-secondary); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--royal-blue); }

  .nav-cta { display: flex; gap: 12px; align-items: center; }
  .btn-outline {
    padding: 9px 20px; border: 1.5px solid var(--royal-blue);
    color: var(--royal-blue); background: transparent;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
    border-radius: 6px; cursor: pointer; transition: all 0.2s; text-decoration: none;
  }
  .btn-outline:hover { background: rgba(0,82,204,0.06); }
  .btn-primary {
    padding: 9px 22px; background: var(--royal-blue); color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
    border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s;
    text-decoration: none; box-shadow: 0 4px 14px rgba(0,82,204,0.3);
  }
  .btn-primary:hover { background: #0063f5; }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 60px 80px; position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 70% at 80% 40%, rgba(0,82,204,0.06) 0%, transparent 65%),
      radial-gradient(ellipse 40% 50% at 90% 10%, rgba(0,135,90,0.04) 0%, transparent 55%),
      radial-gradient(ellipse 50% 60% at 5% 90%, rgba(245,194,0,0.05) 0%, transparent 55%),
      #FFFFFF;
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.025;
    background-image:
      linear-gradient(rgba(0,82,204,1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,82,204,1) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-right-panel {
    position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
    background: linear-gradient(160deg, var(--navy) 0%, #00318A 50%, #004D99 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .hero-right-panel::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 60% 40%, rgba(0,135,90,0.2), transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 80%, rgba(245,194,0,0.1), transparent 55%);
  }
  .orbit-deco { position: relative; width: 400px; height: 400px; pointer-events: none; z-index: 1; }
  .orbit-ring { position: absolute; border-radius: 50%; border: 1px solid; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .orbit-ring-1 { width: 170px; height: 170px; border-color: rgba(133,183,235,0.5); animation: spin 18s linear infinite; }
  .orbit-ring-2 { width: 278px; height: 278px; border-color: rgba(0,135,90,0.35); animation: spin 32s linear infinite reverse; }
  .orbit-ring-3 { width: 385px; height: 385px; border-color: rgba(245,194,0,0.2); animation: spin 50s linear infinite; }
  .orbit-dot { position: absolute; border-radius: 50%; top: 50%; left: 0; transform: translateY(-50%); }
  .orbit-dot-1 { width: 10px; height: 10px; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
  .orbit-dot-2 { width: 8px; height: 8px; background: #4ADE80; box-shadow: 0 0 10px #4ADE80; }
  @keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
  .globe-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 88px; height: 88px;
    background: linear-gradient(135deg, var(--royal-blue), #0036A8);
    border-radius: 50%; border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(0,82,204,0.6), 0 0 100px rgba(0,82,204,0.2);
    display: flex; align-items: center; justify-content: center;
  }
  .float-card {
    position: absolute; backdrop-filter: blur(8px);
    border-radius: 12px; padding: 14px 20px; z-index: 2;
  }
  .float-card-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
  .float-card-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; }

  .hero-content { position: relative; z-index: 2; max-width: 560px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
    background: rgba(0,135,90,0.08); border: 1px solid rgba(0,135,90,0.3);
    border-radius: 100px; margin-bottom: 32px;
  }
  .hero-badge-dot { width: 7px; height: 7px; background: var(--emerald); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
  .hero-badge span { font-size: 12px; font-weight: 600; color: var(--emerald); letter-spacing: 1px; text-transform: uppercase; }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.2vw, 60px); font-weight: 900; line-height: 1.1;
    color: var(--navy); margin-bottom: 24px;
  }
  .hero h1 .blue-text {
    background: linear-gradient(90deg, var(--royal-blue), #0080FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .hero h1 .gold-text {
    background: linear-gradient(90deg, #C4900A, #F5C200);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .hero p { font-size: 17px; line-height: 1.75; color: var(--text-secondary); max-width: 490px; margin-bottom: 40px; }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-hero {
    padding: 15px 32px; background: var(--royal-blue); color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    border: none; border-radius: 8px; cursor: pointer;
    transition: all 0.25s; text-decoration: none; display: inline-block;
    box-shadow: 0 8px 28px rgba(0,82,204,0.28);
  }
  .btn-hero:hover { background: #0063f5; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,82,204,0.38); }
  .btn-hero-ghost {
    padding: 15px 32px; background: transparent; color: var(--navy);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    border: 1.5px solid rgba(0,42,122,0.22); border-radius: 8px; cursor: pointer;
    transition: all 0.25s; text-decoration: none; display: inline-block;
  }
  .btn-hero-ghost:hover { border-color: var(--royal-blue); color: var(--royal-blue); background: rgba(0,82,204,0.04); }

  .hero-stats {
    display: flex; gap: 48px; margin-top: 52px;
    padding-top: 36px; border-top: 1px solid rgba(0,42,122,0.1);
  }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--navy); }
  .stat-num span { color: var(--royal-blue); }
  .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

  /* SECTIONS */
  section { padding: 96px 60px; }
  .section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--royal-blue); margin-bottom: 14px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 18px; }
  .section-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.7; max-width: 500px; }

  /* VALUE PROPS */
  .value-section { background: var(--section-bg); }
  .value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
  .value-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 36px; position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0,42,122,0.05);
  }
  .value-card:hover { border-color: rgba(0,82,204,0.28); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,82,204,0.1); }
  .value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--royal-blue), transparent); border-radius: 16px 16px 0 0; }
  .value-card.green::before { background: linear-gradient(90deg, var(--emerald), transparent); }
  .value-card.gold::before { background: linear-gradient(90deg, #D4A000, transparent); }
  .value-card.sky::before { background: linear-gradient(90deg, var(--sky), transparent); }

  .value-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
  .icon-blue { background: rgba(0,82,204,0.08); }
  .icon-green { background: rgba(0,135,90,0.08); }
  .icon-gold { background: rgba(245,194,0,0.1); }
  .icon-sky { background: rgba(133,183,235,0.15); }

  .value-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

  /* SERVICES */
  .services-section { background: var(--page-bg); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .service-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 30px 24px;
    transition: all 0.3s; cursor: pointer; position: relative;
    box-shadow: 0 2px 10px rgba(0,42,122,0.05);
  }
  .service-card:hover { border-color: rgba(0,82,204,0.28); box-shadow: 0 10px 32px rgba(0,82,204,0.12); transform: translateY(-4px); }
  .service-card:hover .service-arrow { opacity: 1; transform: translate(4px,-4px); }
  .service-num { font-family: 'Playfair Display', serif; font-size: 12px; color: var(--text-muted); font-weight: 700; margin-bottom: 16px; }
  .service-icon { font-size: 30px; margin-bottom: 14px; }
  .service-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .service-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
  .service-arrow { position: absolute; bottom: 22px; right: 22px; font-size: 18px; color: var(--royal-blue); opacity: 0; transition: all 0.3s; }

  /* PLATFORM */
  .platform-section { background: var(--section-bg); }
  .platform-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .platform-visual {
    background: var(--navy); border-radius: 20px; padding: 36px;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,42,122,0.2);
  }
  .platform-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 20%, rgba(0,82,204,0.3), transparent 60%); }
  .pv-label { font-size: 10px; color: rgba(244,248,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; position: relative; }
  .mock-bar { height: 10px; border-radius: 6px; margin-bottom: 6px; background: rgba(255,255,255,0.08); position: relative; }
  .mock-bar.blue { background: var(--royal-blue); width: 75%; }
  .mock-bar.green { background: var(--emerald); width: 45%; }
  .mock-bar.gold { background: var(--gold); width: 30%; }
  .mock-bar.sky { background: var(--sky); width: 58%; opacity: 0.6; }
  .mock-row { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 16px; position: relative; }
  .mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; position: relative; }
  .mock-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px; }
  .mock-card-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; }
  .mock-card-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }

  .platform-features { display: flex; flex-direction: column; gap: 20px; margin-top: 34px; }
  .feat { display: flex; gap: 16px; align-items: flex-start; }
  .feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
  .feat-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .feat-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

  /* CLIENTS */
  .clients-section { background: var(--page-bg); padding: 60px 60px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .clients-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 36px; }
  .clients-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
  .client-logo { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #CBD5E1; transition: color 0.3s; cursor: default; }
  .client-logo:hover { color: var(--navy); }

  /* OUR EXPERTISE (home) */
  .expertise-section {
    background: var(--section-bg);
    padding: 72px 60px 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .expertise-head {
    text-align: center;
    margin-bottom: 48px;
  }
  .expertise-head .section-label {
    margin-bottom: 0;
  }
  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto;
  }
  .expertise-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 18px 26px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0,42,122,0.05);
  }
  .expertise-item:hover {
    border-color: rgba(0,82,204,0.22);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,82,204,0.1);
  }
  .expertise-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    line-height: 1;
  }
  .expertise-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    margin: 0;
  }
  .expertise-sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.4;
  }

  /* INSIGHTS */
  .insights-section { background: var(--section-bg); }
  .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
  .insight-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,42,122,0.05);
  }
  .insight-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,82,204,0.1); }
  .insight-thumb { height: 155px; display: flex; align-items: center; justify-content: center; font-size: 46px; }
  .insight-thumb.t1 { background: linear-gradient(135deg, rgba(0,82,204,0.1), rgba(0,42,122,0.06)); }
  .insight-thumb.t2 { background: linear-gradient(135deg, rgba(0,135,90,0.08), rgba(0,82,204,0.05)); }
  .insight-thumb.t3 { background: linear-gradient(135deg, rgba(245,194,0,0.1), rgba(0,82,204,0.06)); }
  .insight-body { padding: 24px; }
  .insight-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--emerald); margin-bottom: 10px; }
  .insight-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
  .insight-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
  .insight-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--royal-blue); text-decoration: none; transition: gap 0.2s; }
  .insight-link:hover { gap: 10px; }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #00318A 55%, #004380 100%);
    padding: 96px 60px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245,194,0,0.06), transparent); }
  .cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 50px); font-weight: 900; color: #fff; margin-bottom: 20px; position: relative; }
  .cta-section p { font-size: 17px; color: rgba(244,248,255,0.7); margin-bottom: 44px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; position: relative; }
  .btn-cta-main {
    padding: 16px 36px; background: var(--gold); color: var(--navy);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
    border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s;
    text-decoration: none; box-shadow: 0 8px 28px rgba(245,194,0,0.35);
  }
  .btn-cta-main:hover { background: var(--warm-gold); transform: translateY(-2px); }
  .btn-cta-sec {
    padding: 16px 36px; background: rgba(255,255,255,0.08); color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.3); border-radius: 8px; cursor: pointer;
    transition: all 0.25s; text-decoration: none;
  }
  .btn-cta-sec:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.12); }

  /* FOOTER */
  footer { background: #F0F4FF; padding: 60px 60px 28px; border-top: 1px solid var(--border); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
  .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { text-decoration: none; font-size: 14px; color: var(--text-secondary); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--royal-blue); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; }
  .footer-copy { font-size: 13px; color: var(--text-muted); }
  .footer-badges { display: flex; gap: 10px; }
  .badge { padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; border: 1px solid rgba(0,82,204,0.2); color: var(--royal-blue); background: rgba(0,82,204,0.04); }

  /* FADE UP */
  .fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp 0.7s ease forwards; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  .d1 { animation-delay: 0.08s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.34s; } .d4 { animation-delay: 0.5s; }

  @media (max-width: 1024px) {
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    section, .hero, .clients-section, .expertise-section, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
    .hero-right-panel { display: none; }
    .value-grid, .platform-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .expertise-grid { grid-template-columns: 1fr 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .expertise-grid { grid-template-columns: 1fr; }
  }

/* Utility classes moved out of inline HTML styles. */
.float-card-savings {
  top: 22%;
  left: 6%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}
.float-card-compliance {
  bottom: 24%;
  right: 6%;
  background: rgba(0,135,90,0.2);
  border: 1px solid rgba(0,135,90,0.4);
}
.text-white { color: #fff; }
.text-green { color: #4ADE80; }
.text-gold { color: var(--gold); }
.text-sky { color: var(--sky); }
.value-header,
.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.value-header { gap: 20px; }
.insights-header { gap: 16px; }
.section-sub-narrow { max-width: 400px; }
.btn-services {
  padding: 13px 28px;
  font-size: 14px;
}
.feat-dot-emerald { background: var(--emerald); }
.feat-dot-sky { background: var(--sky); }
.feat-dot-blue { background: var(--royal-blue); }
.platform-demo-btn {
  margin-top: 36px;
  display: inline-block;
}
.mock-row-value { color: rgba(255,255,255,0.5); }
.insights-view-link {
  color: var(--royal-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* MULTI-PAGE LAYOUT */
.nav-links a.active {
  color: var(--royal-blue);
  font-weight: 700;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 22px;
}

.page-hero p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 660px;
}

.about-section,
.contact-section {
  background: var(--page-bg);
}

.about-inner,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-copy {
  margin-top: 18px;
}

.about-stats {
  background: var(--navy);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  box-shadow: 0 20px 60px rgba(0,42,122,0.2);
}

.contact-panel,
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 8px 30px rgba(0,42,122,0.06);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 34px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--cloud);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0,82,204,0.4);
  box-shadow: 0 0 0 3px rgba(0,82,204,0.08);
}

@media (max-width: 1024px) {
  .page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
