@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&family=Lato:ital,wght@1,300&family=Poppins:wght@200&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}

 html { scroll-behavior: smooth; 
   -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
}

  :root {
      --blue-900:  #030d1c;
      --blue-800:  #0b1220;
      --blue-700:  #0d1e38;
      --blue-600:  #063970;
      --blue-500:  #0B4F9C;
      --blue-400:  #1a6fd4;
      --blue-300:  #4a96e8;
      --blue-200:  #8abcf0;
      --blue-100:  #c4dcf8;
      --blue-dim:  rgba(6,57,112,0.15);
      --amber:     #C86E1A;
      --amber-mid: #e08830;
      --amber-lit: #f0b060;
      --amber-pale:#fdf0e0;
      --green:     #1a6e4a;
      --green-mid: #22a06a;
      --green-lit: #3dcc88;
      --teal:      #0e7a7a;
      --teal-lit:  #1ab8b8;
      --silver:    #b8cce0;
      --silver-dim: rgba(184,204,224,0.35);
      --white:     #f0f6ff;
      --off:       #e8f0f8;
      --text-body: rgba(184,204,224,0.8);
      --text-mid:  rgba(184,204,224,0.55);
      --text-dim:  rgba(184,204,224,0.3);
      --border-1:  rgba(11,79,156,0.25);
      --border-2:  rgba(11,79,156,0.4);
      --border-3:  rgba(74,150,232,0.2);
      --mono:      'DM Mono', monospace;

       --nav-bg: rgba(5,13,24,0.86);
  --panel: #081726;
  --panel2: #050d18;
  --stroke: rgba(96,165,250,0.26);
  --text: #e5f0ff;
  --muted: #b6cbe6;
  --accent: #60a5fa;
  --accent2: #93c5fd;
    
      /* --bg:          #0b1820;
      --nav-bg:      rgba(11, 24, 32, 0.92);
      --card:        #112233;
      --card-hover:  #16304a;
      --border:      rgba(255,255,255,0.08);
      --border-h:    rgba(255,255,255,0.14);
      --blue:        #1e6fa8;
      --blue-light:  #3da4e8;
      --teal:        #1acec8;
      --orange:      #e85d20;
      --white:       #ffffff;
      --text:        rgba(255,255,255,0.88);
      --text-muted:  rgba(255,255,255,0.50); */
      --radius:      10px;
    }
 
   
    /* ════════════════════════
       NAVBAR
    ════════════════════════ */
    
    /* ════════════════════════
       NAVBAR
    ════════════════════════ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      /* background: var(--nav-bg); */
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
       border-color: var(--border);
      box-shadow: 0 4px 32px rgba(0,0,0,0.45);
      font-family: 'Cormorant Garamond', serif;
    }
    .navbar.scrolled {
      border-color: var(--border);
      box-shadow: 0 4px 32px rgba(0,0,0,0.45);
      background: rgba(1, 24, 40, 0.97);
    }

    .nav-inner {
      max-width: 1280px;
      margin: 1.5rem auto;
      padding: 0 24px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    /* ── Logo ── */
     .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      max-width: 180px;
    }
    .logo-img {
      height: 42px;
      width: auto;
      max-width: 100%;
      display: block;
      object-fit: contain;
      transition: opacity 0.2s;
    }
    .logo:hover .logo-img { opacity: 0.88; }



    /* ── Desktop nav links ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      color: #fff !important;
    }
    .nav-links li { 
      position: relative; 
    }

     .nav-links li a {
      font-size: 1.2rem;
      letter-spacing: 1px;
      font-family: 'Cormorant Garamond', serif;
     }

    .nav-btn {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 16px;
      border-radius: var(--radius);
      font-family: 'Cormorant Garamond', serif !important;
      font-size: 1.2rem;
      letter-spacing: 1px;
      color: var(--text-muted);
      background: none;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-btn:hover, .nav-btn.active {
      color: #C86E1A;
      background: rgba(255,255,255,0.07);
    }
    .nav-btn .chevron {
      width: 14px; height: 14px;
      opacity: 0.5;
      transition: transform 0.25s;
      flex-shrink: 0;
    }
    li.open .nav-btn .chevron { transform: rotate(180deg); opacity: 0.8; }

    /* ── CTA ── */
    .cta-btn {
      padding: 12px 22px;
      border-radius: var(--radius);
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      letter-spacing: 1px;
      font-size: 1.2rem;
      color: #C86E1A;
      background: linear-gradient(135deg, var(--orange) 0%, #c44010 100%);
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(232,93,32,0.35);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .cta-btn:hover {
      background: linear-gradient(135deg, #C86E1A 0%, #C86E1A 100%);
      box-shadow: 0 6px 24px rgba(232,93,32,0.5);
      transform: translateY(-1px);
      color: #fff;
    }

    /* ════════════════════════
       DROPDOWN BASE
    ════════════════════════ */
    .dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: #0d1f2d;
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.7);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 200;
    }
    .dropdown::before {
      content: '';
      position: absolute;
      top: -6px; left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px; height: 12px;
      background: #0d1f2d;
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
    }
    li.open .dropdown,
    .nav-links li:focus-within .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    /* ════════════════════════
       MEGA MENU
    ════════════════════════ */
    .mega-menu {
      width: 920px;
      max-width: calc(100vw - 32px);
      font-family: 'Cormorant Garamond', serif !important;
    }

    /* Top band */
    .mega-header {
      padding: 14px 24px 12px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .mega-header-left { 
      display: flex; 
      flex-direction: 
      column; 
      gap: 2px; 
    }

    .mega-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: .9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
    }
    .mega-header p { 
      font-size: 0.8rem; 
      padding-top: .5rem;
      letter-spacing: 1px;
      color: var(--text-muted); 
    }

    .mega-header-cta {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.78rem;
      color: var(--teal);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.2s;
      letter-spacing: 1px !important;
    }

    .mega-header-cta:hover { color: var(--blue-light); }
    .mega-header-cta svg { width: 12px; height: 12px; }

    /* 3-col service grid */
    .mega-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    /* ── Each service column ── */
    .svc-col {
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--border);
      padding: 20px 0 0;
      font-family: 'Cormorant Garamond', serif !important;
    }
    .svc-col:last-child { border-right: none; }

    /* Service heading row */
    .svc-heading {
      display: flex;
      align-items: center;
      font-family: 'Cormorant Garamond', serif !important;
      gap: 10px;
      padding: 0 20px 14px;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: background 0.2s;
    }
    .svc-heading:hover { background: rgba(255,255,255,0.03); }

    .svc-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(30,111,168,0.2), rgba(26,206,200,0.15));
      border: 1px solid rgba(30,111,168,0.3);
      display: flex; align-items: center; justify-content: center;
      color: #ffff;
      flex-shrink: 0;
      transition: color 0.2s, background 0.2s, border-color 0.2s;
    }
    .svc-heading:hover .svc-icon {
      background: linear-gradient(135deg, rgba(30,111,168,0.35), rgba(26,206,200,0.25));
      border-color: rgba(26,206,200,0.4);
      color: #C86E1A;
    }
    .svc-icon svg { width: 18px; height: 18px; }

    .svc-title-wrap { flex: 1; }

    .svc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.9rem;
      color: var(--white);
      line-height: 1.25;
      display: block;
    }

    .svc-heading-arrow {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      display: flex; align-items: center; justify-content: center;
      color: #C86E1A;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s;
    }
    .svc-heading:hover .svc-heading-arrow {
      background: var(--blue);
      color: #fff;
    }
    .svc-heading-arrow svg { width: 10px; height: 10px; }

    /* Sub-service list */
    .sub-list {
      list-style: none;
      padding: 8px 0 12px;
      flex: 1;
    }
    .sub-item a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      text-decoration: none;
      font-size: 0.8rem !important;
      color: var(--text-muted);
      transition: color 0.18s, background 0.18s, padding-left 0.18s;
      border-left: 2px solid transparent;
    }
    .sub-item a:hover {
      color: var(--white);
      background: rgba(255,255,255,0.04);
      padding-left: 24px;
      border-left-color: var(--teal);
    }
    .sub-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      flex-shrink: 0;
      transition: background 0.18s, transform 0.18s;
    }
    .sub-item a:hover .sub-dot {
      background: var(--teal);
      transform: scale(1.4);
    }

    /* Column footer */
    .svc-col-footer {
      padding: 10px 20px 14px;
      border-top: 1px solid var(--border);
    }
    .svc-more-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.74rem !important;
      color: #C86E1A;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .svc-more-link:hover { color: var(--teal); }
    .svc-more-link svg { width: 11px; height: 11px; }

    /* Bottom footer bar */
    .mega-footer {
      padding: 10px 24px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(0,0,0,0.18);
      border-radius: 0 0 16px 16px;
    }
    .mega-footer p { 
      letter-spacing: 1px;
      font-size: 0.76rem; 
      color: var(--text-muted); 
    }

    .mega-footer-cta {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--orange), #c44010);
      color: #fff;
      font-size: 0.76rem !important;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 3px 12px rgba(232,93,32,0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .mega-footer-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 5px 18px rgba(232,93,32,0.45);
    }
    .mega-footer-cta svg { width: 12px; height: 12px; }

    /* ════════════════════════
       COMPANY DROPDOWN
    ════════════════════════ */
    .company-menu { width: 230px; }
    .company-link {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding: 14px 20px;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: background 0.2s;
    }
    .company-link:last-child  { border-bottom: none; border-radius: 0 0 16px 16px; }
    .company-link:first-child { border-radius: 16px 16px 0 0; }
    .company-link:hover       { background: var(--card-hover); }
    .company-link:focus-visible { outline: 2px solid var(--blue-light); outline-offset: -2px; }
    .company-link-title {  font-size: 0.88rem; color: var(--white); }
    .company-link-desc  { font-size: 0.75rem; color: var(--text-muted); }

    /* ════════════════════════
       HAMBURGER
    ════════════════════════ */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 42px; height: 42px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      cursor: pointer;
      gap: 5px;
      padding: 0;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .hamburger:hover { background: rgba(255,255,255,0.1); }
    .hamburger-bar {
      display: block;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transform-origin: center;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    }
    .hamburger-bar:nth-child(1) { width: 22px; }
    .hamburger-bar:nth-child(2) { width: 16px; }
    .hamburger-bar:nth-child(3) { width: 22px; }
    .hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg);   width: 22px; }
    .hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; width: 0; }
    .hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

    /* ════════════════════════
       MOBILE MENU
    ════════════════════════ */
    .mobile-menu {
      display: none;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      border-top: 1px solid transparent;
      transition: max-height 0.35s ease, opacity 0.3s;
      color: #ffff;
      background: #010d19;
    }
    .mobile-menu.open {
      max-height: 900px;
      opacity: 1;
      border-top-color: var(--border);
    }
    .mobile-menu-inner {
      padding: 12px 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .mob-link {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
    }
    .mob-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

    .mob-accordion-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: var(--radius);
      font-family: 'Barlow', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-muted);
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      transition: color 0.2s, background 0.2s;
    }
    .mob-accordion-btn:hover, .mob-accordion-btn.open {
      color: var(--white);
      background: rgba(255,255,255,0.06);
    }
    .mob-accordion-btn .chevron { width: 15px; height: 15px; opacity: 0.5; transition: transform 0.25s; }
    .mob-accordion-btn.open .chevron { transform: rotate(180deg); }

    .mob-accordion-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
    }
    .mob-accordion-body.open { max-height: 700px; }

    .mob-svc-group {
      margin: 4px 0 6px 16px;
      padding-left: 14px;
      border-left: 2px solid rgba(30,111,168,0.35);
    }
    .mob-svc-group.teal-accent { border-left-color: rgba(26,206,200,0.35); }

    .mob-svc-label {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px 6px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--blue-light);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .mob-svc-label svg { width: 14px; height: 14px; flex-shrink: 0; }

    .mob-sub-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.84rem;
      color: var(--text-muted);
      transition: color 0.2s, background 0.2s;
    }
    .mob-sub-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
    .mob-sub-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      flex-shrink: 0;
    }
    .mob-sub-link:hover .mob-sub-dot { background: var(--teal); }

    .mob-svc-divider {
      height: 1px;
      background: var(--border);
      margin: 4px 10px 6px;
    }

    .mob-cta {
      margin-top: 10px;
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
      background: linear-gradient(135deg, var(--orange), #c44010);
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(232,93,32,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .mob-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(232,93,32,0.5); }

   

    /* ════════════════════════
       RESPONSIVE
    ════════════════════════ */
    @media (max-width: 1023px) {
      .nav-links, .nav-cta-desktop { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
    }
    @media (max-width: 639px) {
      .mega-grid { grid-template-columns: 1fr; }
    }
 
    /* ════════════════════════════════════════
       HERO — full viewport cinematic
       Animated particle field + rotating
       geometric ring + large entry type
    ════════════════════════════════════════ */
    .plat-hero{
      min-height: 100vh;
      background: var(--blue-900);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
 
    /* Animated mesh gradient background */
   .plat-hero-mesh {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(11,79,156,0.28) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(6,57,112,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 50% 50%, rgba(200,110,26,0.06) 0%, transparent 50%);
      animation: meshMove 20s ease-in-out infinite alternate;
    }
 
    @keyframes meshMove {
      0%   { background-position: 0% 0%, 100% 100%, 50% 50%; }
      100% { background-position: 10% 10%, 90% 90%, 55% 45%; }
    }
 
    /* Grid lines */
    .plat-hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(11,79,156,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,79,156,0.08) 1px, transparent 1px);
      background-size: 80px 80px;
      z-index: 0;
      mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 30%, transparent 80%);
    }
 
    /* Large rotating geometric ring */
    .plat-hero-ring {
      position: absolute;
      top: 50%;
      left: 58%;
      width: 800px;
      height: 800px;
      transform: translate(-50%, -52%);
      z-index: 0;
    }
 
     .plat-hero-ring svg {
      width: 100%;
      height: 100%;
      animation: ringRotate 60s linear infinite;
    }
 
    @keyframes ringRotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
 
    .hero-ring-inner svg {
      animation-direction: reverse;
      animation-duration: 40s;
    }
 
    /* Canvas for particles */
    #particleCanvas {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.5;
      margin-top: 5rem;
    }
  
 
    .hero-nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
 
    .hero-nav-links li a {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-mid);
      text-decoration: none;
      transition: color 0.2s;
    }
 
    .hero-nav-links li a:hover { color: var(--white); }
 
    .plat-nav-cta {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue-900);
      background: var(--amber);
      padding: 0.55rem 1.2rem;
      text-decoration: none;
      transition: background 0.2s;
    }
 
   .plat-nav-cta:hover { background: var(--amber-mid); }
 
    /* Main hero content */
    .plat-hero-body{
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 2rem 8vw 4rem;
      position: relative;
      z-index: 2;
    }
 
    .plat-hero-left {
      animation: fadeUp 1s ease 0.5s both;
    }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
   .plat-hero-eyebrow {
      font-family: var(--mono);
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.7s forwards;
    }
 
    .plat-hero-eyebrow-line {
      display: block;
      width: 28px;
      height: 1px;
      background: var(--amber);
    }
 
    .plat-hero-title{
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(3.5rem, 6vw, 7rem);
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.85s forwards;
    }
 
    .hero-title .t-italic {
      font-style: italic;
      color: var(--blue-300);
      display: block;
    }
 
    .hero-title .t-amber {
      color: var(--amber-lit);
      display: block;
    }
 
    .hero-lead {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.85;
      color: var(--text-mid);
      max-width: 500px;
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 1s forwards;
    }
 
    .hero-lead strong { font-weight: 500; color: var(--text-body); }
 
    .plat-hero-actions{
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.15s forwards;
    }
 
    .plat-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #ffff;
      background: var(--amber);
      padding: 0.95rem 2rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
 
   .plat-btn-primary:hover { background: var(--amber-mid); transform: translateY(-1px); }
 
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue-300);
      text-decoration: none;
      border-bottom: 1px solid rgba(74,150,232,0.3);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
 
    .btn-secondary:hover { color: var(--blue-200); border-color: var(--blue-300); }
 
    /* Right: service cards floating */
    .plat-hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s ease 1.2s forwards;
    }
 
    .hero-service-stack {
      position: relative;
      width: 540px;
      height: 540px;
    }
 
    .hs-card {
      position: absolute;
      background: rgba(11,18,32,0.85);
      border: 0.5px solid var(--border-1);
      padding: 1.8rem 2rem;
      backdrop-filter: blur(10px);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
 
    .hs-card:hover {
      transform: translateY(-4px) !important;
      border-color: var(--border-2);
      box-shadow: 0 16px 48px rgba(3,13,28,0.5);
    }
 
    .hs-card-1 {
      top: 0; left: 0;
      width: 300px;
      animation: cardFloat1 6s ease-in-out infinite;
    }
 
    .hs-card-2 {
      top: 100px; right: 0;
      width: 280px;
      animation: cardFloat2 7s ease-in-out 1s infinite;
    }
 
    .hs-card-3 {
      bottom: 0; left: 40px;
      width: 310px;
      animation: cardFloat3 8s ease-in-out 2s infinite;
    }
 
    @keyframes cardFloat1 {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }
 
    @keyframes cardFloat2 {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-8px); }
    }
 
    @keyframes cardFloat3 {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-12px); }
    }
 
    .hs-card-accent {
      display: block;
      width: 100%;
      height: 2px;
      margin-bottom: 1.2rem;
    }
 
    .accent-amber { background: linear-gradient(90deg, var(--amber), transparent); }
    .accent-blue  { background: linear-gradient(90deg, var(--blue-400), transparent); }
    .accent-green { background: linear-gradient(90deg, var(--green-mid), transparent); }
 
    .hs-card-service {
      font-family: var(--mono);
      font-size: 0.5rem;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 0.5rem;
    }
 
    .hs-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 0.5rem;
      line-height: 1.3;
      letter-spacing: 1.2px;
    }
 
    .hs-card-body {
      font-size: .8rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.6;
      letter-spacing: 1.5px;
    }
 
    /* Bottom ticker */
    .plat-hero-ticker {
      border-top: 0.5px solid var(--border-1);
      padding: 1rem 0;
      overflow: hidden;
      position: relative;
      z-index: 5;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.4s forwards;
    }
 
    .ticker-track {
      display: flex;
      gap: 3rem;
      animation: tickerMove 30s linear infinite;
      white-space: nowrap;
    }
 
    @keyframes tickerMove {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
 
    .ticker-item {
      font-family: var(--mono);
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ffff;
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }
 
    .ticker-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--amber);
      flex-shrink: 0;
    }
 
    /* ════════════════════════════════════════
       S2 — TRUST STRIP
       Quick credibility anchors, light on dark
    ════════════════════════════════════════ */
    .s2 {
      background: var(--blue-700);
      padding: 3.5rem 8vw;
      border-top: 0.5px solid var(--border-1);
      border-bottom: 0.5px solid var(--border-1);
    }
 
    .s2-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
 
    .s2-item {
      padding: 0 2.5vw;
      border-right: 0.5px solid var(--border-1);
      text-align: center;
      transition: background 0.2s;
    }
 
    .s2-item:first-child { padding-left: 0; }
    .s2-item:last-child  { padding-right: 0; border-right: none; }
 
    .s2-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 2.8rem;
      line-height: 1;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
 
    .s2-num span { color: var(--amber); font-size: 1.6rem; }
 
    .s2-label {
      font-family: var(--mono);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      color: #ffff;
      line-height: 1.5;
    }
 
    /* ════════════════════════════════════════
       S3 — THREE SERVICE PILLARS
       Full dark, each pillar gets its own
       column with icon, title, sub-services
       and a dramatic hover treatment
    ════════════════════════════════════════ */
    .s3 {
      background: var(--blue-800);
      padding: 8rem 8vw;
      border-top: 0.5px solid var(--border-1);
    }
 
    .s3-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5vw;
      margin-bottom: 5rem;
      padding-bottom: 3rem;
      border-bottom: 0.5px solid var(--border-1);
      align-items: end;
    }
 
    .s3-eyebrow {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .s3-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--amber);
    }
 
    .s3-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3.5rem);
      line-height: 1.1;
      color: var(--white);
    }
 
    .s3-title em { font-style: italic; color: var(--blue-300); }
 
    .s3-header-right {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--text-mid);
      letter-spacing: 1.2px;
    }
 
    /* Three pillar cards — tall */
    .s3-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--border-1);
    }
 
    .s3-pillar {
      background: var(--blue-800);
      padding: 3.5rem 2.8rem;
      position: relative;
      overflow: hidden;
      min-height: 580px;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: background 0.4s;
    }
 
    .s3-pillar:hover { background: rgba(11,18,32,0.95); }
 
    /* Giant background number */
    .s3-pillar-bg {
      position: absolute;
      bottom: -0.1em;
      right: -0.04em;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 18rem;
      line-height: 1;
      color: rgba(11,79,156,0.07);
      pointer-events: none;
      user-select: none;
      transition: color 0.4s;
    }
 
    .s3-pillar:hover .s3-pillar-bg { color: rgba(11,79,156,0.12); }
 
    /* Animated top stripe */
    .s3-pillar-stripe {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }
 
    .s3-pillar:hover .s3-pillar-stripe { transform: scaleX(1); }
 
    .stripe-amber { background: linear-gradient(90deg, var(--amber), var(--amber-mid)); }
    .stripe-blue  { background: linear-gradient(90deg, var(--blue-500), var(--blue-400)); }
    .stripe-green { background: linear-gradient(90deg, var(--green), var(--green-mid)); }
 
    .s3-pillar-idx {
      font-family: var(--mono);
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.16em;
      color: var(--amber);
      margin-bottom: 2.5rem;
    }
 
    .s3-pillar-icon {
      width: 56px;
      height: 56px;
      border: 0.5px solid var(--border-1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      transition: border-color 0.4s, background 0.4s;
    }
 
    .s3-pillar:hover .s3-pillar-icon { border-color: var(--border-2); background: var(--blue-dim); }
 
    .s3-pillar-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--blue-200);
      fill: none;
      stroke-width: 1.5;
    }
 
    .s3-pillar-service {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: clamp(1.5rem, 2.2vw, 2rem);
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 1.2rem;
      letter-spacing: 1px;
    }
 
    .s3-pillar-body {
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--text-mid);
      flex: 1;
      margin-bottom: 2.5rem;
      letter-spacing: 1.5px;
    }
 
    /* Sub-service pills */
    .s3-subservices {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 2.5rem;
    }
 
    .s3-sub {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.7rem 0;
      border-bottom: 0.5px solid var(--border-1);
      text-decoration: none;
      transition: padding-left 0.25s, border-color 0.25s;
    }
 
    .s3-sub:last-child { border-bottom: none; }
    .s3-sub:hover { padding-left: 0.6rem; border-color: var(--border-2); }
 
    .s3-sub-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
    }
 
    .dot-amber { background: var(--amber); }
    .dot-blue  { background: var(--blue-400); }
    .dot-green { background: var(--green-mid); }
 
    .s3-sub-name {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--text-mid);
      transition: color 0.2s;
    }
 
    .s3-sub:hover .s3-sub-name { color: var(--text-body); }
 
    .s3-pillar-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #f0f6ff;
      text-decoration: none;
      align-self: flex-start;
      border-bottom: 1px solid rgba(74,150,232,0.25);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
 
    .s3-pillar-link:hover { color: var(--blue-200); border-color: var(--blue-300); }
 
    .link-arrow { display: inline-block; transition: transform 0.2s; }
    .s3-pillar-link:hover .link-arrow { transform: translateX(4px); }
 
    /* ════════════════════════════════════════
       S4 — WHY BLUVEIT
       Asymmetric editorial — left oversized
       vertical text, right stacked reasons
    ════════════════════════════════════════ */
    .s4 {
      background: var(--blue-700);
      padding: 8rem 8vw;
      border-top: 0.5px solid var(--border-1);
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: 6vw;
      align-items: start;
      position: relative;
      overflow: hidden;
    }
 
    /* Ambient glow */
    .s4::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11,79,156,0.2) 0%, transparent 65%);
      top: -100px;
      right: -100px;
      z-index: 0;
      pointer-events: none;
    }
 
    .s4-left { position: sticky; top: 4rem; z-index: 1; }
 
    .s4-eyebrow {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .s4-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--amber);
    }
 
    .s4-big-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.5rem, 4.5vw, 5rem);
      line-height: 1.0;
      letter-spacing: -0.05em;
      color: var(--white);
      margin-bottom: 2rem;
    }
 
    .s4-big-title em { font-style: italic; color: var(--blue-300); }
 
    .s4-body {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--text-mid);
      letter-spacing: 1.5px;
    }
 
    /* Right: differentiator rows */
    .s4-right { position: relative; z-index: 1; }
 
    .s4-diffs { display: flex; flex-direction: column; gap: 0; }
 
    .s4-diff {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 1.5rem;
      padding: 2.2rem 0;
      border-bottom: 0.5px solid var(--border-1);
      transition: background 0.2s;
      align-items: start;
    }
 
    .s4-diff:last-child { border-bottom: none; }
    .s4-diff:hover { background: rgba(11,79,156,0.08); margin: 0 -2rem; padding: 2.2rem 2rem; }
 
    .s4-diff-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 2.2rem;
      line-height: 1;
      color: rgba(255,255,255,0.07);
      text-align: center;
      padding-top: 3px;
    }
 
    .s4-diff-title {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 0.4rem;
      line-height: 1.3;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      letter-spacing: 1.2px;
    }
 
    .s4-diff-tag {
      font-family: var(--mono);
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--amber);
      background: rgba(200,110,26,0.12);
      padding: 2px 7px;
      flex-shrink: 0;
      letter-spacing: 1.5px;
    }
 
    .s4-diff-body {
      font-size: .8rem;
      letter-spacing: 1.5px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-mid);
    }
 
    /* ════════════════════════════════════════
       S5 — REGULATORY LANDSCAPE
       Dark with amber — scrolling regulation
       ticker + card grid of key frameworks
    ════════════════════════════════════════ */
    .s5 {
      background: var(--blue-900);
      padding: 8rem 8vw;
      border-top: 0.5px solid var(--border-1);
      position: relative;
      overflow: hidden;
    }
 
    /* Faint diagonal lines bg */
    .s5::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -50deg,
        rgba(11,79,156,0.04) 0px,
        rgba(11,79,156,0.04) 1px,
        transparent 1px,
        transparent 50px
      );
      z-index: 0;
      pointer-events: none;
    }
 
    .s5-inner { position: relative; z-index: 1; }
 
    .s5-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5vw;
      margin-bottom: 4rem;
      padding-bottom: 2.5rem;
      border-bottom: 0.5px solid var(--border-1);
      align-items: end;
    }
 
    .s5-eyebrow {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue-300);
      margin-bottom: 1.2rem;
    }
 
    .s5-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 3.2rem);
      line-height: 1.1;
      color: var(--white);
      letter-spacing: 1px;
    }
 
    .s5-title em { font-style: italic; color: var(--blue-300); }
 
    .s5-header-right {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--text-mid);
      letter-spacing: 1.5px;
    }
 
    /* Regulation ticker */
    .s5-ticker {
      overflow: hidden;
      margin-bottom: 4rem;
      border: 0.5px solid var(--border-1);
      padding: 1rem 0;
      position: relative;
    }
 
    .s5-ticker::before,
    .s5-ticker::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
    }
 
    .s5-ticker::before { left: 0; background: linear-gradient(90deg, var(--blue-900), transparent); }
    .s5-ticker::after  { right: 0; background: linear-gradient(-90deg, var(--blue-900), transparent); }
 
    .s5-tick-track {
      display: flex;
      gap: 0;
      animation: tickerMove 35s linear infinite;
    }
 
    .s5-tick-item {
      font-family: var(--mono);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--blue-300);
      padding: 0 2.5rem;
      border-right: 0.5px solid var(--border-1);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      flex-shrink: 0;
    }
 
    .s5-tick-item::before {
      content: '';
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--amber);
      flex-shrink: 0;
    }
 
    /* Framework cards */
    .s5-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5px;
      background: var(--border-1);
    }
 
    .s5-fw {
      background: var(--blue-900);
      padding: 2rem 1.8rem;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
 
    .s5-fw:hover { background: rgba(11,18,32,0.9); }
 
    .s5-fw-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1.5px;
      background: var(--blue-500);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }
 
    .s5-fw:hover .s5-fw-top { transform: scaleX(1); }
 
    .s5-fw-code {
      font-family: var(--mono);
      font-size: 0.68rem;
      font-weight: 500;
      color: var(--blue-300);
      margin-bottom: 0.5rem;
      letter-spacing: 0.04em;
    }
 
    .s5-fw-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 0.95rem;
      color: var(--white);
      margin-bottom: 0.5rem;
      line-height: 1.3;
      letter-spacing: 1.2px;
    
    }
 
    .s5-fw-area {
      font-size: 0.68rem;
      font-weight: 300;
      color: var(--text-dim);
      letter-spacing: 1.5px;
    }
 
    /* ════════════════════════════════════════
       S6 — ANIMATED METRICS
       Two-column: left large counter metrics
       (animated on load), right proof text
    ════════════════════════════════════════ */
    .s6 {
      background: var(--blue-600);
      padding: 8rem 8vw;
      border-top: 0.5px solid var(--border-2);
      position: relative;
      overflow: hidden;
    }
 
    .s6::before {
      content: '';
      position: absolute;
      inset: -60%;
      background: conic-gradient(
        from 0deg at 30% 50%,
        #030d1c 0deg, #063970 80deg,
        #030d1c 160deg, #0B4F9C 240deg,
        #030d1c 360deg
      );
      animation: spinBg 50s linear infinite;
      z-index: 0;
      opacity: 0.5;
    }
 
    @keyframes spinBg {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
 
    .s6-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6vw;
      align-items: center;
    }
 
    .s6-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
 
    .s6-metric {
      padding: 2.5rem 0;
      border-bottom: 0.5px solid rgba(255,255,255,0.08);
      border-right: 0.5px solid rgba(255,255,255,0.08);
    }
 
    .s6-metric:nth-child(2n) { border-right: none; padding-left: 2rem; }
    .s6-metric:nth-child(n+3) { border-bottom: none; }
    .s6-metric:nth-child(2) { padding-left: 2rem; }
 
    .s6-metric-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(3rem, 5vw, 5.5rem);
      line-height: 1;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
 
    .s6-metric-num span { color: var(--amber-lit); font-size: 55%; }
 
    .s6-metric-label {
      font-family: var(--mono);
      font-size: 0.8rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: #e8f0f8;
      line-height: 1.55;
    }
 
    .s6-eyebrow {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber-lit);
      margin-bottom: 1.5rem;
    }
 
    .s6-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 3rem);
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
 
    .s6-title em { font-style: italic; color: var(--amber-lit); }
 
    .s6-body {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.9;
       color: #e8f0f8;
      margin-bottom: 2.5rem;
      letter-spacing: 1.5px;
    }
 
    .s6-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
 
    .s6-tag {
      font-family: var(--mono);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--amber);
      border: 0.5px solid rgba(74,150,232,0.25);
      padding: 4px 12px;
    }
 
    /* ════════════════════════════════════════
       S7 — SECTOR COVERAGE
       Clean light-on-dark mosaic
    ════════════════════════════════════════ */
    .s7 {
      background: var(--blue-800);
      padding: 8rem 8vw;
      border-top: 0.5px solid var(--border-1);
    }
 
    .s7-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 4rem;
      padding-bottom: 2rem;
      border-bottom: 0.5px solid var(--border-1);
    }
 
    .s7-eyebrow {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .s7-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--amber);
    }
 
    .s7-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 3.2rem);
      line-height: 1.1;
      color: var(--white);
    }
 
    .s7-title em { font-style: italic; color: var(--blue-300); }
 
    .s7-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 5rem;
      color: rgba(255,255,255,0.03);
    }
 
    /* Sector mosaic */
    .s7-sectors {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5px;
      background: var(--border-1);
    }
 
    .s7-sector {
      background: var(--blue-800);
      padding: 2.2rem 2rem;
      border: 0.5px solid var(--border-1);
      position: relative;
      overflow: hidden;
      transition: background 0.25s, border-color 0.25s;
    }
 
    .s7-sector:hover { background: var(--blue-700); border-color: var(--border-2); }
 
    .s7-sector-icon {
      width: 36px;
      height: 36px;
      border: 0.5px solid var(--border-1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      transition: border-color 0.25s, background 0.25s;
    }
 
    .s7-sector:hover .s7-sector-icon { border-color: var(--border-2); background: var(--blue-dim); }
 
    .s7-sector-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--blue-300);
      fill: none;
      stroke-width: 1.5;
    }
 
    .s7-sector-name {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 0.6rem;
      line-height: 1.3;
      letter-spacing: 1.2px;
    }
 
    .s7-sector-desc {
      font-size: 0.72rem;
      font-weight: 300;
      color: var(--amber-lit);
      line-height: 1.65;
      letter-spacing: 1.5px;
    }
 
    .s7-sector-accent {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1.5px;
      background: linear-gradient(90deg, var(--blue-500), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }
 
    .s7-sector:hover .s7-sector-accent { transform: scaleX(1); }
 
    /* ════════════════════════════════════════
       S8 — TESTIMONIAL / STATEMENT
       Full dark, centred editorial moment
    ════════════════════════════════════════ */
    .s8 {
      background: var(--blue-900);
      padding: 8rem 8vw;
      border-top: 0.5px solid var(--border-1);
      position: relative;
      overflow: hidden;
    }
 
    .s8::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--amber), transparent);
    }
 
    .s8-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
 
    .s8-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 6rem;
      line-height: 0.7;
      color: rgba(200,110,26,0.15);
      display: block;
      margin-bottom: 2rem;
    }
 
    .s8-quote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.4rem, 2.5vw, 2.2rem);
      line-height: 1.5;
      color: rgba(240,246,255,0.75);
      margin-bottom: 2rem;
    }
 
    .s8-quote em { font-style: normal; color: var(--amber-lit); }
 
    .s8-rule {
      width: 50px;
      height: 1.5px;
      background: var(--amber);
      margin: 0 auto 1.5rem;
    }
 
    .s8-attr {
      font-family: var(--mono);
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-dim);
    }
 
   
    /* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .plat-hero-body { grid-template-columns: 1fr; }
      .plat-hero-right { display: none; }
      .s2-inner { grid-template-columns: 1fr 1fr; }
      .s2-item:nth-child(2) { border-right: none; }
      .s2-item:nth-child(n+3) { border-top: 0.5px solid var(--border-1); padding-top: 1.5rem; }
      .s3-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .s3-pillars { grid-template-columns: 1fr; }
      .s4 { grid-template-columns: 1fr; }
      .s4-left { position: static; }
      .s4-diff:hover { margin: 0; padding: 2.2rem 0; }
      .s5-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .s5-grid { grid-template-columns: 1fr 1fr; }
      .s6-inner { grid-template-columns: 1fr; }
      .s7-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .s7-sectors { grid-template-columns: 1fr 1fr; }
      .s9 { grid-template-columns: 1fr; }
      .s9-left { padding: 5rem 8vw; border-right: none; border-bottom: 0.5px solid var(--border-1); }
      .s9-right { padding: 5rem 8vw; }
    }
 
    @media (max-width: 600px) {
      .hero-nav-links { display: none; }
      .s3-pillar { min-height: auto; }
      .s5-grid { grid-template-columns: 1fr; }
      .s6-metrics { grid-template-columns: 1fr 1fr; }
      .s7-sectors { grid-template-columns: 1fr; }
      .s9-row { grid-template-columns: 1fr; }
    }



     /* ── FOOTER ── */
  .site-footer {
    background: var(--blue-900);
    border-top: 0.5px solid var(--border-1);
    position: relative;
    overflow: hidden;
  }

  /* Giant faded BLUVEIT watermark */
  .footer-wm {
    position: absolute;
    bottom: 0.2em;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(8rem, 20vw, 22rem);
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(11,79,156,0.14);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    text-shadow: 0 0 120px rgba(11,79,156,0.08);
  }

  /* Ambient glow orb top-right */
  .footer-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11,79,156,0.12) 0%, transparent 65%);
    top: -200px; right: -150px;
    z-index: 0;
    pointer-events: none;
  }

  /* Amber top accent line */
  .footer-amber-line {
    position: absolute;
    top: 0; left: 8vw; right: 8vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
  }

  /* Upper footer — main content */
  .footer-upper {
    padding: 5rem 8vw 4rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 4vw;
   
    min-height: 420px;
  }

  /* Brand column */
  .footer-logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.2rem;
  }

  .footer-logo span { color: var(--amber); }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #e5f0ff;
    margin-bottom: 2rem;
    max-width: 300px;
    letter-spacing: 1.2px;
  }

  /* Practice badges */
  .footer-practices {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }

  .footer-practice-badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-dim);
  }

  .fp-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .fp-dot.amber { background: var(--amber); }
  .fp-dot.blue  { background: var(--blue-400); }
  .fp-dot.green { background: var(--green-mid); }

  /* Social / contact links */
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-social-btn {
    width: 34px; height: 34px;
    border: 0.5px solid var(--border-1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .footer-social-btn:hover {
    border-color: var(--border-2);
    background: var(--blue-dim);
  }

  .footer-social-btn svg {
    width: 15px; height: 15px;
    color: var(--text-dim);
    transition: color 0.2s;
  }

  .footer-social-btn:hover svg { color: var(--blue-300); }

  /* Nav columns */
  .footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 0.5px solid var(--border-1);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-col-title::before {
    content: '';
    display: block;
    width: 14px; height: 1px;
    background: var(--amber);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }

  .footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0;
    border-bottom: 0.5px solid rgba(11,79,156,0.12);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    letter-spacing: 1.5px;
  }

  .footer-links li:last-child a { border-bottom: none; }

  .footer-links li a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--blue-400);
    transition: width 0.25s;
    flex-shrink: 0;
  }

  .footer-links li a:hover {
    color: var(--white);
    padding-left: 0.4rem;
  }

  .footer-links li a:hover::before { width: 10px; }

  /* Services column special treatment */
  .footer-service-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 0.5px solid rgba(11,79,156,0.12);
    text-decoration: none;
    transition: background 0.2s, padding-left 0.2s;
  }

  .footer-links li:last-child 
  .footer-service-link { border-bottom: none; }

  .footer-service-link:hover { padding-left: 0.4rem; }

  .fsl-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .footer-service-link .fsl-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    line-height: 1.35;
    letter-spacing: 1.5px;
  }

  .footer-service-link:hover .fsl-name { color: var(--white); }

  /* ── FOOTER MIDDLE STRIP ── */
  .footer-mid {
    padding: 2.5rem 8vw;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    border-bottom: 0.5px solid var(--border-1);
  }

  .footer-frameworks {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .footer-fw-label {
    font-family: var(--mono);
    font-size: 0.52rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    flex-shrink: 0;
    margin-right: 0.4rem;
  }

  .footer-fw-tag {
    font-family: var(--mono);
    font-size: 0.52rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--blue-300);
    background: rgba(11,79,156,0.15);
    border: 0.5px solid rgba(74,150,232,0.18);
    padding: 3px 9px;
    white-space: nowrap;
  }

  .footer-cta-mini {
    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-900);
    background: var(--amber);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
  }

  .footer-cta-mini:hover { background: var(--amber-mid); }

  /* ── FOOTER BOTTOM ── */
  .footer-bottom {
    padding: 2rem 8vw;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .footer-legal {
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #e5f0ff;
    line-height: 1.7;
  }

  .footer-legal a {
    color: #e5f0ff;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--blue-300); }

  .footer-independence {
    text-align: right;
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #e5f0ff;
    line-height: 1.7;
  }

  .footer-independence strong {
    font-weight: 400;
    color: var(--amber);
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  /* ── FOOTER RESPONSIVE ── */
  @media (max-width: 1000px) {
    .footer-upper { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-mid { grid-template-columns: 1fr; }
    .footer-independence { text-align: left; }
  }

  @media (max-width: 600px) {
    .footer-upper { grid-template-columns: 1fr; }
    .footer-bottom { grid-template-columns: 1fr; }
    .footer-wm { font-size: clamp(4rem, 28vw, 10rem); }
  }

    #btt-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--amber);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease,
                background .15s ease;
    pointer-events: none;
    z-index: 9999;
  }
  #btt-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  #btt-btn:hover  { background: #333; }
  #btt-btn:active { transform: scale(0.93); }