    :root {
      /* Premium Dark & Navy Palette matched to original logo */
      --navy: #0B0E3A;        
      --ink: #141948;         
      --primary: #0B0E3A;     /* Map primary to brand navy */
      --primary-glow: rgba(11, 14, 58, 0.2);
      --orange: #FF8A4C;      
      --orange-glow: rgba(255, 138, 76, 0.2);
      --yellow: #FFD166;      
      --bg: #F7F8FC;         
      --surface: #ffffff;
      --line: #E6E8F2;
      --muted: #6B7088;
      --radius: 20px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0; 
      font-family: 'Inter', system-ui, sans-serif; 
      color: var(--ink); 
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; letter-spacing: -0.02em; }
    img { max-width: 100%; display: block; }
    a { color: var(--primary); text-decoration: none; transition: var(--transition); }
    a:hover { color: var(--orange); }
    
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* Accessibility */
    .skip-link { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
    .skip-link:focus { left:16px; top:16px; width:auto; height:auto; z-index:1000; background:#fff; border:2px solid var(--primary); padding:12px; border-radius:8px; }

    /* HEADER */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
      transition: var(--transition);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 90px; }
    .brand { display: flex; align-items: center; }
    .brand img { height: 160px; width: 160px; object-fit: contain; margin-top: -35px; }
    .toggle { display: none; background: transparent; border: 0; font-size: 28px; color: var(--navy); cursor:pointer; }
    @media (max-width:980px) { .toggle { display: block; } }

    /* MENU */
    .menu { display: flex; gap: 8px; align-items: center; }
    @media (max-width:980px) {
      .menu {
        display: none; position: absolute; left: 0; right: 0; top: 90px;
        background: #fff; border-bottom: 1px solid var(--line);
        flex-direction: column; padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      }
      .menu.show { display: flex; }
    }
    .dropdown { position: relative; perspective: 1000px; }
    .dropdown > button {
      display: flex; align-items: center; gap: 6px;
      padding: 10px 16px; border-radius: 12px; border: none; background: transparent; 
      color: var(--navy); font-weight: 600; font-family: 'Outfit', sans-serif; font-size: 1.05rem; cursor: pointer;
      transition: var(--transition);
    }
    .dropdown > button:hover, .dropdown > button:focus { background: rgba(37, 99, 235, 0.05); color: var(--primary); }
    
    .submenu {
      position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
      background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.4); border-radius: 16px;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.05);
      padding: 12px;
      opacity: 0; visibility: hidden; transform: translateY(16px) rotateX(-5deg); transform-origin: top; pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.25s;
    }
    .submenu a { display: block; padding: 12px 16px; border-radius: 10px; color: var(--ink); font-weight: 500; }
    .submenu a:hover { background: #f1f5f9; color: var(--primary); transform: translateX(4px); }
    @media (min-width: 981px) {
      .dropdown:hover .submenu, .dropdown:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0) rotateX(0); pointer-events: auto; }
    }
    .dropdown.open .submenu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; position: static; box-shadow:none; border:none; padding-left:24px;}
    .dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }

    /* CTA BUTTONS */
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 12px; font-weight: 700; font-family: 'Outfit', sans-serif; transition: var(--transition); font-size: 1.05rem; cursor: pointer;}
    .btn-primary { 
      background: linear-gradient(135deg, var(--primary), #1d4ed8); color: #fff; 
      box-shadow: 0 8px 20px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.2); 
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px var(--primary-glow); filter: brightness(1.05); color:#fff; }
    
    .btn-outline { border: 2px solid var(--line); color: var(--navy); background: #fff; }
    .btn-outline:hover { border-color: var(--primary); color: var(--primary); background: #f8fafc; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
    
    .btn-accent {
      background: linear-gradient(135deg, var(--orange), #ea580c); color: #fff;
      box-shadow: 0 8px 20px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .btn-accent:hover { transform: translateY(-3px); box-shadow: 0 12px 28px var(--orange-glow); color:#fff; }

    /* HERO */
    .hero {
      position: relative; padding: 120px 0 100px; overflow: hidden;
      background: radial-gradient(circle at top right, rgba(11, 14, 58, 0.04) 0%, transparent 60%),
                  radial-gradient(circle at bottom left, rgba(255, 138, 76, 0.05) 0%, transparent 50%);
    }
    .hero::before {
      content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0;
      background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMTEsIDE0LCA1OCwgMC4wMykiLz48L3N2Zz4=') repeat;
      z-index: -1;
    }
    .hero-inner { display: flex; flex-direction: column; gap: 48px; align-items: center; }
    @media(min-width: 980px) { .hero-inner { flex-direction: row; justify-content: space-between; } }
    
    .hero-copy { flex: 1; max-width: 600px; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
    .badge {
      display: inline-flex; align-items: center; gap: 8px; background: rgba(11,14,58,0.05); 
      color: var(--primary); padding: 8px 16px; border-radius: 999px; font-weight: 700; font-family: 'Outfit'; font-size: 0.9rem;
      border: 1px solid rgba(11,14,58,0.1); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px;
    }
    .badge::before { content:''; display:block; width:8px; height:8px; border-radius:50%; background:var(--primary); box-shadow: 0 0 10px var(--primary); }
    
    .hero-copy h1 { margin: 0 0 20px; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; color: var(--navy); font-weight: 900; }
    .hero-copy h1 span {
      background: linear-gradient(135deg, var(--primary), var(--orange));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-copy p { font-size: 1.2rem; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .hero-illustration {
      flex: 1; max-width: 580px; position: relative;
      animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; opacity: 0;
    }
    .hero-img-wrapper {
      position: relative; border-radius: 24px; overflow: hidden;
      box-shadow: 0 24px 80px rgba(11, 14, 58, 0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg); transition: transform 0.6s ease;
    }
    .hero-illustration:hover .hero-img-wrapper { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
    .hero-img-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; }

    /* INNER PAGE HERO */
    .hero-inner-page {
      padding: 80px 0;
      background: var(--navy);
      background-image: radial-gradient(circle at top right, rgba(255, 138, 76, 0.15) 0%, transparent 60%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .hero-inner-page::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
      background: linear-gradient(to top, var(--bg), transparent);
    }
    .hero-content { display: grid; gap: 40px; align-items: center; position: relative; z-index: 1;}
    @media(min-width:980px){.hero-content{grid-template-columns: 1.2fr 1fr;}}
    .hero-inner-page .badge {display:inline-flex; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
    .hero-inner-page .badge::before { background:var(--orange); box-shadow: 0 0 10px var(--orange); }
    .hero-inner-page h1 { margin: 0 0 16px; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1; font-weight: 800; color: #fff;}
    .hero-inner-page p { max-width: 800px; font-size: 1.2rem; color: #cbd5e1; margin-bottom: 32px; line-height:1.6;}
    .hero-img-box { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); background:#fff;}
    .hero-img-box img { width: 100%; height: auto; object-fit: cover; }
    
    /* SECTIONS */
    .section { padding: 96px 0; position: relative; }
    .section-alt { background: linear-gradient(to bottom, #ffffff, #f8fafc); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .section-header { text-align: center; max-width: 800px; margin: 0 auto 56px; }
    .section-header h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); }
    .section-header p.lead { font-size: 1.15rem; color: var(--muted); line-height: 1.6; margin: 0 auto; }
    
    .grid { display: grid; gap: 24px; }
    @media(min-width: 920px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } }

    /* PREMIUM CARDS */
    .card {
      background: var(--surface);
      border: 1px solid rgba(226, 232, 240, 0.8);
      border-radius: var(--radius);
      padding: 32px;
      height: 100%;
      position: relative;
      transition: var(--transition);
      overflow: hidden;
      z-index: 1;
      display: flex; flex-direction: column;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(11, 14, 58, 0.05);
      border-color: rgba(11, 14, 58, 0.2);
    }
    .card-img {
      width: calc(100% + 64px); margin: -32px -32px 24px; height: 180px; overflow: hidden; background:#f8fafc;
    }
    .card-img img {
      width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
    }
    .card:hover .card-img img { transform: scale(1.05); }
    
    .card h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.4rem; font-weight: 700; }
    .card p { margin: 0 0 24px; color: var(--muted); line-height: 1.6; flex: 1; }
    .card-link { font-weight: 700; font-family: 'Outfit'; display: inline-flex; align-items: center; gap: 6px; color: var(--primary); }
    .card-link::after { content: '→'; transition: transform 0.3s ease; }
    .card:hover .card-link::after { transform: translateX(6px); }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, var(--navy) 0%, #141948 100%);
      color: #fff;
      border-radius: 32px;
      padding: 64px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 48px rgba(11, 14, 58, 0.15);
    }
    .cta-band::before {
      content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
      background: radial-gradient(circle, rgba(255,138,76,0.1) 0%, transparent 50%);
      z-index: 0; pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-band h2 { margin: 0 0 20px; font-size: 2.5rem; color: #fff; }
    .cta-band p { margin: 0 0 32px; font-size: 1.2rem; color: #cbd5e1; line-height: 1.6; }
    
    /* PROSE BLOCKS */
    .seo-prose, .prose { max-width: 860px; margin: 0 auto; background: #fff; padding: 48px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,0.02);}
    .seo-prose h3, .prose h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 16px; margin-top: 40px; }
    .seo-prose h3:first-child, .prose h3:first-child { margin-top: 0; }
    .seo-prose p, .prose p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; margin-bottom: 24px; }
    .seo-prose ul, .prose ul { padding-left: 20px; color: var(--muted); line-height: 1.8; }
    .seo-prose li, .prose li { margin-bottom: 8px; }

    /* TESTIMONIALS */
    .quote {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
      position: relative; transition: var(--transition); display:flex; flex-direction: column;
    }
    .quote::before { content: '"'; font-family: 'Outfit'; font-size: 6rem; color: rgba(11,14,58,0.05); position: absolute; top: -10px; left: 24px; pointer-events:none; }
    .quote p { margin: 0 0 20px; font-size: 1.1rem; line-height: 1.6; color: var(--ink); font-style: italic; position: relative; z-index: 1; flex:1;}
    .quote-author { display: flex; align-items: center; gap: 12px; }
    .quote-author span { display: block; }
    .quote-name { font-family: 'Outfit'; font-weight: 700; color: var(--navy); }
    .quote-title { font-size: 0.9rem; color: var(--muted); }

    /* FAQ */
    .faq-wrapper { max-width: 800px; margin: 0 auto; }
    details {
      background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 24px; margin-bottom: 16px;
      transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    details[open] { border-color: rgba(11,14,58,0.2); box-shadow: 0 10px 24px rgba(11,14,58,0.06); }
    summary {
      cursor: pointer; font-weight: 700; font-family: 'Outfit'; font-size: 1.15rem; color: var(--navy); outline: none; list-style: none; display: flex; justify-content: space-between; align-items: center;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s ease; font-weight: 400;}
    details[open] summary::after { transform: rotate(45deg); }
    details p { margin: 16px 0 0; color: var(--muted); line-height: 1.6; animation: slideDown 0.3s ease forwards; }

    /* CONTACT FORM */
    .contact-grid { display: grid; gap: 48px; align-items: start; }
    @media(min-width: 900px){ .contact-grid { grid-template-columns: 3fr 2fr; } }
    .form-control { margin-bottom: 20px; }
    .form-control label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
    .form-control input, .form-control textarea {
      width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
      font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--ink); background: #f8fafc;
      transition: var(--transition);
    }
    .form-control input:focus, .form-control textarea:focus {
      outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(11,14,58,0.08);
    }
    .contact-info p { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--ink); font-size: 1.1rem;}
    .contact-info i { color: var(--primary); font-style: normal; font-weight: 800; font-family: 'Outfit'; background: rgba(11,14,58,0.05); width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; }

    /* FOOTER */
    footer { padding: 64px 0 32px; border-top: 1px solid var(--line); background: #fff; margin-top: 48px;}
    .foot-top { display: grid; gap: 40px; margin-bottom: 48px; }
    @media(min-width: 800px) { .foot-top { grid-template-columns: 2fr 1fr 1fr; } }
    .foot-brand p { color: var(--muted); line-height: 1.6; margin-top: 16px; max-width: 300px; }
    .foot-heading { font-family: 'Outfit'; font-weight: 700; color: var(--navy); font-size: 1.1rem; margin-bottom: 20px; }
    .foot-links { display: flex; flex-direction: column; gap: 12px; }
    .foot-links a { color: var(--muted); font-weight: 500; }
    .foot-links a:hover { color: var(--primary); }
    .foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); gap: 16px;}
    .small { font-size: 0.9rem; color: var(--muted); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
