  :root {
    /* Brand: Pegeant Blue + Slate Grey */
    --navy: #202C44;
    --navy-2: #2A3954;
    --navy-3: #354666;
    --navy-4: #41547A;
    --slate: #545454;
    --slate-2: #6F6F6F;
    --ivory: #F8F6F1;
    --ivory-2: #F1EEE6;
    --paper: #FFFFFF;
    --ink: #202C44;
    --ink-soft: #545454;
    --ink-mute: #8B93A3;
    --rule: rgba(32, 44, 68, 0.08);
    --rule-2: rgba(32, 44, 68, 0.14);
    --rule-on-navy: rgba(248, 246, 241, 0.1);
    --rule-on-navy-2: rgba(248, 246, 241, 0.16);
  }

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

  body {
    background: var(--ivory);
    color: var(--ink);
    font-family: 'Montserrat', -apple-system, system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

  /* ==========================
     ANNOUNCEMENT BAR
     ========================== */
  .announce {
    background: var(--navy);
    color: var(--ivory);
    padding: 10px 32px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(248, 246, 241, 0.15);
  }
  .announce a { color: var(--ivory); text-decoration: none; margin-left: 8px; font-weight: 500; }
  .announce a:hover { text-decoration: underline; }

  /* ==========================
     HEADER
     ========================== */
  header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(248, 246, 241, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  header.scrolled {
    background: rgba(248, 246, 241, 0.92);
    box-shadow: 0 4px 18px rgba(32, 44, 68, 0.05);
  }

  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    gap: 32px;
    transition: padding 0.2s ease;
  }

  header.scrolled .header-inner { padding: 8px 0; }

  .logo { width: 110px; display: block; flex-shrink: 0; transition: width 0.2s ease; }
  .logo svg { width: 100%; height: auto; display: block; aspect-ratio: 1900 / 550; }

  header.scrolled .logo { width: 96px; }

  nav.primary { flex: 1; display: flex; justify-content: center; }

  nav.primary > ul {
    display: flex; gap: 4px; list-style: none; align-items: center;
  }

  nav.primary > ul > li { position: relative; }

  nav.primary > ul > li > a {
    display: flex; align-items: center; gap: 4px;
    color: var(--ink); text-decoration: none;
    font-size: 13px; font-weight: 500;
    padding: 6px 12px; border-radius: 7px;
    transition: all 0.15s;
    cursor: pointer;
    line-height: 1.4;
  }

  nav.primary > ul > li > a:hover { background: rgba(32, 44, 68, 0.06); }
  nav.primary > ul > li > a .chev { font-size: 10px; opacity: 0.5; }

  /* Mega menu */
  .megamenu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 16px;
    min-width: 480px;
    box-shadow: 0 20px 50px rgba(32, 44, 68, 0.1);
    opacity: 0; visibility: hidden;
    transition: all 0.2s;
  }

  nav.primary > ul > li:hover .megamenu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .megamenu .mm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

  .megamenu a {
    display: flex; flex-direction: column; gap: 2px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--ink);
    border-radius: 8px;
    transition: background 0.15s;
  }
  .megamenu a:hover { background: var(--ivory); }

  .megamenu .mm-title {
    font-size: 14px; font-weight: 500;
    display: flex; align-items: center; gap: 6px;
  }

  .megamenu .mm-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: var(--navy);
    margin-right: 4px;
  }

  .megamenu .mm-desc { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }

  .megamenu-jur { min-width: 380px; }
  .megamenu-jur .mm-grid { grid-template-columns: 1fr; }

  .megamenu-jur .mm-flag {
    width: 28px; height: 28px;
    background: var(--navy);
    color: var(--ivory);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    border-radius: 6px;
    margin-right: 10px;
  }
  .megamenu-jur a:hover .mm-flag { background: var(--slate); color: var(--ivory); }
  .megamenu-jur a { flex-direction: row; align-items: center; }
  .megamenu-jur a .mm-text { display: flex; flex-direction: column; gap: 2px; }

  /* Header right */
  .header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

  .lang-switch {
    display: flex; gap: 2px;
    background: rgba(32, 44, 68, 0.06);
    padding: 3px;
    border-radius: 7px;
    line-height: 1;
  }

  .lang-switch a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    padding: 4px 7px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--ink-soft);
    line-height: 1;
  }

  .lang-switch a.active { background: var(--paper); color: var(--ink); font-weight: 500; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
  .lang-switch a:hover:not(.active) { color: var(--ink); }

  .nav-cta {
    background: var(--navy); color: var(--ivory) !important;
    padding: 6px 14px !important;
    font-weight: 500;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: all 0.15s;
  }
  .nav-cta:hover { background: var(--ink); }

  /* ==========================
     HERO (DARK NAVY, FULL BLEED)
     ========================== */
  .hero {
    background: var(--navy);
    color: var(--ivory);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
  }

  /* Animated background data-viz */
  .hero-viz {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
  }

  .hero-viz svg {
    width: 100%; height: 100%;
    display: block;
  }

  /* Dot grid background */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(248, 246, 241, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
  }

  /* Glow accents */
  .hero::after {
    content: '';
    position: absolute;
    top: -300px; right: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(248, 246, 241, 0.06), transparent 60%);
    pointer-events: none;
  }

  .hero .container { position: relative; z-index: 5; }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px;
    background: rgba(248, 246, 241, 0.06);
    border: 1px solid var(--rule-on-navy-2);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ivory);
    margin-bottom: 32px;
  }

  .hero-badge .pulse {
    width: 7px; height: 7px;
    background: var(--ivory); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
  }

  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--ivory);
    margin-bottom: 28px;
    max-width: 14ch;
  }

  .hero h1 .accent { color: var(--ivory); font-weight: 600; }

  .hero-lead {
    max-width: 52ch;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(248, 246, 241, 0.72);
    margin-bottom: 40px;
  }

  .hero-cta-row {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    background: var(--ivory);
    color: var(--navy);
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    border-radius: 10px;
    transition: all 0.15s;
    border: 0;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--paper); transform: translateY(-1px); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    background: rgba(248, 246, 241, 0.05);
    color: var(--ivory);
    text-decoration: none;
    font-size: 15px; font-weight: 500;
    border-radius: 10px;
    border: 1px solid var(--rule-on-navy-2);
    transition: all 0.15s;
  }
  .btn-ghost:hover { background: rgba(248, 246, 241, 0.1); }

  .btn-light {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    background: var(--navy);
    color: var(--ivory);
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    border-radius: 10px;
    transition: all 0.15s;
  }
  .btn-light:hover { background: var(--ink); transform: translateY(-1px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-size: 15px; font-weight: 500;
    border-radius: 10px;
    border: 1px solid var(--rule-2);
    transition: all 0.15s;
  }
  .btn-outline:hover { background: var(--paper); border-color: var(--ink); }

  /* Right side: animated jurisdictional viz */
  .hero-illo {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin-left: auto;
  }

  .hero-illo svg { width: 100%; height: 100%; }

  /* Hero metrics */
  .hero-metrics {
    margin-top: 88px;
    padding-top: 36px;
    border-top: 1px solid var(--rule-on-navy);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .metric { padding-right: 24px; }
  .metric:not(:last-child) { border-right: 1px solid var(--rule-on-navy); }
  .metric:not(:first-child) { padding-left: 24px; }

  .metric-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    color: var(--ivory);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .metric-num .small { font-size: 18px; color: var(--ivory); margin-left: 2px; vertical-align: super; }

  .metric-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(248, 246, 241, 0.55);
    letter-spacing: 0.04em;
  }

  /* ==========================
     TRUST STRIP
     ========================== */
  .trust {
    background: var(--paper);
    padding: 48px 0;
    border-bottom: 1px solid var(--rule);
  }

  .trust-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }

  .trust-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  .trust-logos {
    display: flex; gap: 48px; align-items: center; flex: 1;
    flex-wrap: wrap;
  }

  .logo-placeholder {
    height: 32px;
    min-width: 100px;
    background: linear-gradient(135deg, rgba(32, 44, 68, 0.04) 25%, transparent 25%, transparent 50%, rgba(32, 44, 68, 0.04) 50%, rgba(32, 44, 68, 0.04) 75%, transparent 75%);
    background-size: 8px 8px;
    border: 1px dashed var(--rule-2);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: var(--ink-mute);
    padding: 0 16px;
    letter-spacing: 0.04em;
  }

  /* ==========================
     SECTION GENERIC
     ========================== */
  section.std { padding: 120px 0; }

  .section-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 500;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .section-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--navy);
  }

  .section-eyebrow.on-navy { color: var(--ivory); }
  .section-eyebrow.on-navy::before { background: var(--ivory); }

  /* ==========================
     FIRMA / ABOUT
     ========================== */
  .firma {
    background: var(--paper);
    padding: 140px 0;
  }

  .firma-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
    align-items: start;
    margin-bottom: 80px;
  }

  .firma-left {
    position: sticky;
    top: 120px;
  }

  .firma-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 32px;
  }

  .firma-left h2 em {
    font-style: normal;
    color: var(--navy);
  }

  .firma-left .acred-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ivory);
    border: 1px solid var(--rule);
    padding: 10px 16px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .firma-left .acred-badge .dot { width: 8px; height: 8px; background: var(--navy); border-radius: 50%; }

  .firma-right p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }

  .firma-right p strong { color: var(--ink); font-weight: 500; }

  .firma-right p:first-of-type {
    font-size: 22px;
    color: var(--ink);
    line-height: 1.5;
  }

  .principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .principle-card {
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.2s;
  }
  .principle-card:hover { border-color: var(--navy); transform: translateY(-2px); }

  .principle-card .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }

  .principle-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .principle-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* Image placeholder pattern (used in founder section, articles) */
  .img-placeholder {
    background: linear-gradient(135deg, var(--ivory-2) 0%, var(--ivory) 100%);
    border: 1px solid var(--rule);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    color: var(--ink-mute);
  }

  .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, transparent 48%, rgba(32, 44, 68, 0.05) 50%, transparent 52%);
    background-size: 12px 12px;
    pointer-events: none;
  }

  .img-placeholder .ph-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0 24px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }

  .img-placeholder .ph-dim {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: var(--ink-mute);
    opacity: 0.6;
    position: relative;
    z-index: 1;
  }

  /* ==========================
     SERVICES
     ========================== */
  .services {
    background: var(--ivory);
    padding: 140px 0;
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 72px;
    align-items: end;
  }

  .services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 14ch;
  }

  .services-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 50ch;
    align-self: end;
    padding-bottom: 8px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .service {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    text-decoration: none;
    color: inherit;
    position: relative;
  }

  .service:hover {
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(32, 44, 68, 0.06);
  }

  .service-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 36px; }

  .service-icon {
    width: 44px; height: 44px;
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    transition: all 0.2s;
  }

  .service:hover .service-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--navy);
  }

  .service-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

  .service-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--navy);
    letter-spacing: 0.04em;
  }

  .service h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }

  .service p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    flex-grow: 1;
  }

  .service .more {
    margin-top: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink);
    display: flex; align-items: center; gap: 6px;
    text-transform: uppercase;
  }

  .service .more .arr { transition: transform 0.2s; }
  .service:hover .more .arr { transform: translateX(4px); color: var(--navy); }

  /* ==========================
     JURISDICCIONES (DARK NAVY)
     ========================== */
  .jurisdictions {
    background: var(--navy);
    color: var(--ivory);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }

  .jurisdictions::before {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(248, 246, 241, 0.05), transparent 60%);
    pointer-events: none;
  }

  .jurisdictions .container { position: relative; z-index: 2; }

  .jur-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 72px;
    align-items: end;
  }

  .jur-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ivory);
    max-width: 14ch;
  }

  .jur-header h2 em { font-style: normal; color: var(--ivory); }

  .jur-header p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(248, 246, 241, 0.7);
    max-width: 46ch;
  }

  .jur-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .jur-card {
    background: var(--navy-2);
    border: 1px solid var(--rule-on-navy);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  .jur-card:hover { background: var(--navy-3); border-color: var(--ivory); transform: translateY(-3px); }

  .jur-flag {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--ivory);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .jur-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: var(--ivory);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  .jur-card > p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(248, 246, 241, 0.7);
    margin-bottom: 24px;
    flex-grow: 1;
  }

  .jur-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
  }

  .jur-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ivory);
    background: rgba(248, 246, 241, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
  }

  .jur-stats {
    padding-top: 20px;
    border-top: 1px solid var(--rule-on-navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .jur-stat .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 4px;
  }

  .jur-stat .lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(248, 246, 241, 0.55);
    letter-spacing: 0.04em;
  }

  .jur-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ivory);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
  }
  .jur-cta:hover { color: var(--ivory); }

  /* ==========================
     EDUARDO / FOUNDER
     ========================== */
  .founder {
    background: var(--paper);
    padding: 140px 0;
  }

  .founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .founder-image {
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
  }

  .founder-image .ph-label { font-size: 13px; }
  .founder-image .img-placeholder { height: 100%; }

  .founder-image .badge-overlay {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--navy);
    color: var(--ivory);
    padding: 12px 20px;
    border-radius: 12px;
    z-index: 5;
  }

  .founder-image .badge-overlay .ovl-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
  }

  .founder-image .badge-overlay .ovl-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(248, 246, 241, 0.7);
    letter-spacing: 0.04em;
  }

  .founder-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .founder-content .role {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 32px;
  }

  .founder-content .bio {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }

  .founder-creds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .cred-card {
    padding: 16px 18px;
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: 12px;
  }

  .cred-card .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }

  .cred-card .value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

  /* Video preview */
  .video-card {
    margin-top: 32px;
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
  }
  .video-card:hover { border-color: var(--navy); }

  .video-thumb {
    width: 110px; height: 70px;
    background: var(--navy);
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(248, 246, 241, 0.15), transparent 60%);
  }

  .video-thumb .play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  .video-thumb .play svg { width: 12px; height: 12px; fill: var(--navy); }

  .video-card .vmeta {
    display: flex; flex-direction: column; gap: 4px;
  }

  .video-card .vlbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }

  .video-card .vtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

  /* ==========================
     PROCESS
     ========================== */
  .process {
    background: var(--ivory);
    padding: 140px 0;
  }

  .process-header { margin-bottom: 64px; max-width: 700px; }

  .process h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .process h2 em { font-style: normal; color: var(--navy); }

  .process-header p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 60ch;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }

  .process-step {
    padding: 32px 28px 28px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 16px;
    position: relative;
  }

  .process-step .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }

  .process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* ==========================
     STATS
     ========================== */
  .stats {
    background: var(--paper);
    padding: 140px 0;
  }

  .stats-header { margin-bottom: 64px; }

  .stats h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 18ch;
    margin-bottom: 24px;
  }

  .stats h2 em { font-style: normal; color: var(--navy); }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .stat {
    padding: 48px 32px 48px 0;
  }

  .stat:not(:first-child) { padding-left: 32px; border-left: 1px solid var(--rule); }
  .stat:last-child { padding-right: 0; }

  .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
  }

  .stat-num .accent { color: var(--navy); }
  .stat-num .small { font-size: 32px; vertical-align: super; color: var(--navy); }

  .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 22ch;
  }

  /* ==========================
     INSIGHTS / BLOG
     ========================== */
  .insights {
    background: var(--ivory);
    padding: 140px 0;
  }

  .insights-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 64px;
    gap: 40px;
  }

  .insights h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 14ch;
  }

  .insights h2 em { font-style: normal; color: var(--navy); }

  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .article {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
  }
  .article:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(32, 44, 68, 0.06); }

  .article-image {
    aspect-ratio: 16/10;
    width: 100%;
  }

  .article-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .article-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }

  .article-meta .cat { color: var(--navy); }
  .article-meta .dot { color: var(--ink-mute); }

  .article h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .article p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 24px;
    flex-grow: 1;
  }

  .article .read {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
  }

  .article:hover .read .arr { transform: translateX(4px); color: var(--navy); transition: all 0.2s; }

  /* ==========================
     TESTIMONIALS
     ========================== */
  .testimonials {
    background: var(--paper);
    padding: 140px 0;
  }

  .testimonials-header { margin-bottom: 72px; max-width: 60ch; }

  .testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial {
    padding: 36px;
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
  }

  .testimonial .quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    color: var(--navy);
    line-height: 0.6;
    margin-bottom: 16px;
  }

  .testimonial blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 32px;
    flex-grow: 1;
    font-weight: 400;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
  }

  .author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }

  .author-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
  }

  /* ==========================
     FAQ
     ========================== */
  .faq {
    background: var(--paper);
    padding: 140px 0;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
  }

  .faq h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 14ch;
  }

  .faq-left p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }

  .faq-list {
    border-top: 1px solid var(--rule);
  }

  .faq-item {
    border-bottom: 1px solid var(--rule);
    padding: 24px 0;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
    list-style: none;
    gap: 24px;
  }

  .faq-question::-webkit-details-marker { display: none; }

  .faq-question .icon {
    width: 28px; height: 28px;
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--ink);
  }

  details[open] .faq-question .icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--navy);
    transform: rotate(45deg);
  }

  .faq-answer {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 60ch;
  }

  /* ==========================
     CONTACT / FINAL CTA
     ========================== */
  .contact-cta {
    background: var(--ivory);
    padding: 100px 0 140px;
  }

  .contact-card {
    background: var(--navy);
    border-radius: 32px;
    padding: 80px;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
  }

  .contact-card::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(248, 246, 241, 0.07), transparent 60%);
    pointer-events: none;
  }

  .contact-card::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 60%);
    pointer-events: none;
  }

  .contact-inner { position: relative; z-index: 5; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; }

  .contact-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ivory);
    margin-bottom: 24px;
  }

  .contact-card h2 em { font-style: normal; color: var(--ivory); }

  .contact-lead {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(248, 246, 241, 0.75);
    max-width: 48ch;
    margin-bottom: 40px;
  }

  .contact-card .btn-primary { font-size: 16px; padding: 16px 26px; }

  .contact-info {
    display: flex; flex-direction: column; gap: 16px;
  }

  .info-block {
    padding: 22px;
    background: rgba(248, 246, 241, 0.04);
    border: 1px solid var(--rule-on-navy);
    border-radius: 14px;
  }

  .info-block .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ivory);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .info-block address, .info-block a {
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--ivory);
    line-height: 1.45;
    text-decoration: none;
    font-weight: 400;
    display: block;
  }

  .info-block a:hover { color: var(--ivory); }

  /* ==========================
     FOOTER
     ========================== */
  footer {
    background: var(--navy);
    color: rgba(248, 246, 241, 0.7);
    padding: 80px 0 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--rule-on-navy);
  }

  .footer-brand .logo { width: 130px; margin-bottom: 24px; }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(248, 246, 241, 0.6);
    max-width: 32ch;
    margin-bottom: 24px;
  }

  .footer-social { display: flex; gap: 8px; }

  .social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(248, 246, 241, 0.06);
    border: 1px solid var(--rule-on-navy);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    color: var(--ivory);
    text-decoration: none;
  }
  .social-link:hover { background: var(--ivory); border-color: var(--ivory); color: var(--navy); }

  .social-link svg { width: 16px; height: 16px; }

  .footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ivory);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col a {
    color: rgba(248, 246, 241, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
  }

  .footer-col a:hover { color: var(--ivory); }

  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(248, 246, 241, 0.5);
    letter-spacing: 0.04em;
  }

  .footer-legal {
    display: flex;
    gap: 24px;
    list-style: none;
  }

  .footer-legal a {
    color: rgba(248, 246, 241, 0.5);
    text-decoration: none;
    font-size: 12px;
  }

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

  .footer-disclaimer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--rule-on-navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(248, 246, 241, 0.4);
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  /* ==========================
     MOBILE HAMBURGER (CSS-only toggle)
     ========================== */
  .mobile-toggle { display: none; }

  /* Mobile-extras hidden by default (desktop) */
  .mobile-extras { display: none; }

  .hamburger {
    display: none;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: rgba(32, 44, 68, 0.06);
    border-radius: 8px;
    transition: background 0.15s;
  }

  .hamburger:hover { background: rgba(32, 44, 68, 0.1); }

  .hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.25s;
  }

  /* When toggle is checked, animate hamburger to X */
  #mobile-toggle:checked ~ .container .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #mobile-toggle:checked ~ .container .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #mobile-toggle:checked ~ .container .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ==========================
     RESPONSIVE BREAKPOINTS
     ========================== */

  /* Large tablets / small desktops */
  @media (max-width: 1200px) {
    .container { padding: 0 28px; }
    .hero h1 { font-size: clamp(44px, 6vw, 80px); }
    .firma-grid { gap: 64px; }
    .footer-top { gap: 48px; }
  }

  /* Tablets */
  @media (max-width: 1024px) {
    .container, .container-narrow { padding: 0 24px; }
    .header-inner { gap: 16px; }

    /* Hide desktop nav and lang switch, show hamburger */
    nav.primary { display: none; }
    .lang-switch { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Mobile menu when toggled */
    #mobile-toggle:checked ~ .container nav.primary {
      display: block;
      position: fixed;
      top: 73px; left: 0; right: 0; bottom: 0;
      background: var(--ivory);
      padding: 32px 24px;
      overflow-y: auto;
      z-index: 99;
      animation: slideDown 0.25s ease-out;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    #mobile-toggle:checked ~ .container nav.primary > ul {
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
    }

    #mobile-toggle:checked ~ .container nav.primary > ul > li > a {
      padding: 16px 18px;
      font-size: 18px;
      font-weight: 500;
      border-radius: 12px;
      justify-content: space-between;
    }

    /* On mobile, megamenus become inline expandable lists */
    .megamenu {
      position: static !important;
      transform: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      box-shadow: none;
      border: none;
      padding: 4px 8px 8px;
      min-width: 0;
      background: transparent;
    }

    .megamenu .mm-grid { grid-template-columns: 1fr !important; }

    /* Mobile-extras shown inside open menu */
    #mobile-toggle:checked ~ .container .mobile-extras {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--rule);
    }

    .mobile-lang {
      display: flex;
      gap: 4px;
      background: rgba(32, 44, 68, 0.06);
      padding: 4px;
      border-radius: 10px;
      width: fit-content;
    }

    .mobile-lang a {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      padding: 8px 14px;
      border-radius: 7px;
      text-decoration: none;
      color: var(--ink-soft);
    }

    .mobile-lang a.active {
      background: var(--paper);
      color: var(--ink);
      font-weight: 500;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

    .mobile-cta {
      display: block;
      padding: 16px 22px;
      background: var(--navy);
      color: var(--ivory);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      border-radius: 10px;
      text-align: center;
      transition: background 0.15s;
    }

    .mobile-cta:hover { background: var(--ink); }

    /* Force these into the mobile menu visually */
    #mobile-toggle:checked ~ .container nav.primary {
      display: flex;
      flex-direction: column;
    }

    /* Section spacing tighter */
    .firma, .services, .jurisdictions, .founder, .process, .stats, .insights, .testimonials, .faq, .contact-cta { padding: 100px 0; }

    .hero { padding: 80px 0 60px; }

    /* Grids collapse */
    .hero-grid { grid-template-columns: 1fr; }
    .firma-grid, .founder-grid, .faq-grid, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .firma-left { position: static; }
    .services-header, .jur-header, .insights-header, .stats-header { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .jur-grid, .insights-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

    .insights-header { flex-direction: column; align-items: flex-start; }

    .stat:nth-child(2) { border-left: 1px solid var(--rule); }
    .stat:nth-child(3) { border-left: none; padding-left: 0; padding-top: 32px; border-top: 1px solid var(--rule); }
    .stat:nth-child(4) { border-left: 1px solid var(--rule); padding-top: 32px; border-top: 1px solid var(--rule); }
  }

  /* Small tablets / large phones */
  @media (max-width: 720px) {
    .container, .container-narrow { padding: 0 20px; }

    .announce { font-size: 11px; padding: 10px 20px; }
    .announce a { display: inline-block; }

    .hero { padding: 56px 0 48px; }
    .hero-badge { font-size: 10px; padding: 6px 12px; }

    section.std,
    .firma, .services, .jurisdictions, .founder,
    .process, .stats, .insights, .testimonials,
    .faq, .contact-cta { padding: 72px 0; }

    /* All major grids collapse to single column */
    .services-grid, .jur-grid, .insights-grid,
    .testimonials-grid, .stats-grid, .process-grid { grid-template-columns: 1fr; }

    .hero-metrics { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 28px; }
    .metric { padding: 0 !important; border: none !important; }

    .principles-grid { grid-template-columns: 1fr; gap: 16px; }
    .founder-creds { grid-template-columns: 1fr 1fr; gap: 12px; }

    .stat { padding: 28px 0 !important; border-left: none !important; border-top: 1px solid var(--rule) !important; }
    .stat:first-child { border-top: none !important; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-legal { flex-wrap: wrap; }

    /* Card paddings */
    .contact-card { padding: 48px 28px; border-radius: 24px; }
    .principle-card, .jur-card, .testimonial { padding: 28px; }
    .service { padding: 28px; min-height: auto; }
    .process-step { padding: 28px 24px 24px; }

    /* Trust strip */
    .trust { padding: 32px 0; }
    .trust-inner { gap: 16px; flex-direction: column; align-items: flex-start; }
    .trust-logos { gap: 16px; }
    .logo-placeholder { height: 28px; min-width: 80px; font-size: 9px; }

    /* CTAs more touch-friendly */
    .btn-primary, .btn-ghost, .btn-light, .btn-outline { padding: 14px 22px; font-size: 14px; }
    .hero-cta-row { gap: 10px; }
    .hero-cta-row a { flex: 1; justify-content: center; min-width: 140px; }

    /* Service icons smaller */
    .service-icon { width: 40px; height: 40px; }
    .jur-flag { width: 56px; height: 56px; font-size: 20px; margin-bottom: 20px; }

    /* Founder image badge */
    .founder-image .badge-overlay { bottom: 16px; left: 16px; padding: 10px 16px; }
    .founder-image .badge-overlay .ovl-num { font-size: 22px; }

    /* Video card stays compact */
    .video-card { padding: 14px; gap: 14px; }
    .video-thumb { width: 80px; height: 56px; }

    /* FAQ adjustments */
    .faq-question { font-size: 15px; gap: 16px; }

    /* Process step number smaller */
    .process-step .num { font-size: 44px; margin-bottom: 16px; }

    /* Stats numbers smaller */
    .stat-num { font-size: 48px; }
    .stat-num .small { font-size: 24px; }

    /* Mobile menu position (header is shorter) */
    #mobile-toggle:checked ~ .container nav.primary { top: 65px; padding: 24px 20px; }
  }

  /* Small phones */
  @media (max-width: 420px) {
    .container, .container-narrow { padding: 0 16px; }
    .header-inner { padding: 14px 0; }
    .logo { width: 92px; }
    .hamburger { width: 36px; height: 36px; }

    .hero { padding: 40px 0 36px; }
    .hero h1 { font-size: 40px; line-height: 1; }
    .hero-lead { font-size: 16px; }
    .hero-badge { font-size: 10px; }

    .metric-num { font-size: 30px; }
    .stat-num { font-size: 40px; }

    .contact-card { padding: 36px 20px; }
    .info-block { padding: 18px; }

    /* Tighten hero CTA group on tiny screens */
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row a { width: 100%; }

    /* Founder credentials stack */
    .founder-creds { grid-template-columns: 1fr; }

    /* Section H2s smaller */
    .firma-left h2,
    .services-header h2,
    .jur-header h2,
    .founder-content h2,
    .process h2,
    .stats h2,
    .insights h2,
    .testimonials h2,
    .faq h2,
    .contact-card h2 { font-size: clamp(32px, 8vw, 44px); }

    /* Megamenu items tighter */
    .megamenu a { padding: 8px 10px; }
    .megamenu .mm-title { font-size: 13px; }
    .megamenu .mm-desc { font-size: 11px; }

    /* Lang switch and CTA in mobile menu full width */
    #mobile-toggle:checked ~ .container .mobile-lang { width: 100%; justify-content: center; }
    .mobile-cta { width: 100%; }
  }

  /* Reduce motion preference */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ==========================
     INNER PAGE STYLES
     ========================== */

  /* Page hero (smaller than home hero) */
  .page-hero {
    background: var(--navy);
    color: var(--ivory);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(248, 246, 241, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
  }

  .page-hero::after {
    content: '';
    position: absolute;
    top: -200px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(248, 246, 241, 0.05), transparent 60%);
    pointer-events: none;
  }

  .page-hero .container { position: relative; z-index: 2; }

  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(248, 246, 241, 0.55);
    flex-wrap: wrap;
  }

  .breadcrumbs a {
    color: rgba(248, 246, 241, 0.75);
    text-decoration: none;
    transition: color 0.15s;
  }

  .breadcrumbs a:hover { color: var(--ivory); }
  .breadcrumbs .sep { color: rgba(248, 246, 241, 0.3); }
  .breadcrumbs .current { color: var(--ivory); }

  .page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ivory);
    margin-bottom: 24px;
    max-width: 22ch;
  }

  .page-hero h1 .accent { color: var(--ivory); }

  .page-hero .lead {
    max-width: 64ch;
    font-size: 19px;
    line-height: 1.55;
    color: rgba(248, 246, 241, 0.72);
    margin-bottom: 32px;
  }

  .page-hero .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-tags .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ivory);
    background: rgba(248, 246, 241, 0.08);
    border: 1px solid rgba(248, 246, 241, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
  }

  /* Article / content section */
  .article-section {
    background: var(--paper);
    padding: 100px 0;
  }

  .article-section.alt { background: var(--ivory); }

  .article-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .article-grid.reverse { grid-template-columns: 2fr 1fr; }

  .article-aside {
    position: sticky;
    top: 120px;
  }

  .article-aside h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
  }

  .article-aside h2 em { font-style: normal; color: var(--navy); }

  .article-aside p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .article-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    max-width: 70ch;
  }

  .article-body > p {
    margin-bottom: 24px;
    color: var(--ink-soft);
  }

  .article-body > p:first-child {
    font-size: 20px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
  }

  .article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ink);
    margin: 48px 0 16px;
    letter-spacing: -0.015em;
  }

  .article-body h3:first-child { margin-top: 0; }

  .article-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: var(--ink);
    margin: 32px 0 12px;
    letter-spacing: -0.005em;
  }

  .article-body ul, .article-body ol {
    margin: 0 0 24px;
    padding-left: 0;
    list-style: none;
  }

  .article-body ul li, .article-body ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  .article-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 14px; height: 1px;
    background: var(--navy);
  }

  .article-body ol { counter-reset: art-counter; }
  .article-body ol li {
    counter-increment: art-counter;
    padding-left: 36px;
  }
  .article-body ol li::before {
    content: counter(art-counter) ".";
    position: absolute;
    left: 0; top: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
  }

  .article-body strong { color: var(--ink); font-weight: 600; }

  .article-body a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--navy);
    text-underline-offset: 4px;
    transition: color 0.15s;
  }
  .article-body a:hover { color: var(--navy); }

  /* Callout / pull box */
  .callout {
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--navy);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
  }

  .callout .callout-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .callout p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 !important;
  }

  /* Data table */
  .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
  }

  .data-table th {
    background: var(--ivory);
    text-align: left;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--rule);
  }

  .data-table td {
    padding: 14px 18px;
    font-size: 15px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--rule);
  }

  .data-table tr:last-child td { border-bottom: none; }

  .data-table tr:hover td { background: var(--ivory); }

  /* Two-column comparison */
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
  }

  .compare-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 24px;
  }

  .compare-card.highlight { border-color: var(--navy); }

  .compare-card .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .compare-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 12px;
    margin-top: 0;
    letter-spacing: -0.005em;
  }

  .compare-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
  }

  /* Q&A SECTION (GEO-optimized) */
  .qa-section {
    background: var(--paper);
    padding: 100px 0;
  }

  .qa-section.alt { background: var(--ivory); }

  .qa-header {
    margin-bottom: 56px;
    max-width: 60ch;
  }

  .qa-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .qa-header h2 em { font-style: normal; color: var(--navy); }

  .qa-header p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .qa-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--rule);
  }

  .qa-item {
    border-bottom: 1px solid var(--rule);
    padding: 0;
  }

  .qa-item > summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    transition: color 0.15s;
  }

  .qa-item > summary::-webkit-details-marker { display: none; }
  .qa-item > summary:hover { color: var(--navy); }

  .qa-q {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    flex: 1;
  }

  .qa-icon {
    width: 32px; height: 32px;
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--ink);
    font-size: 16px;
  }

  .qa-item[open] .qa-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--navy);
    transform: rotate(45deg);
  }

  .qa-a {
    padding: 0 56px 32px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 80ch;
  }

  .qa-a p { margin-bottom: 12px; }
  .qa-a p:last-child { margin-bottom: 0; }
  .qa-a strong { color: var(--ink); font-weight: 600; }

  .qa-a ul {
    margin: 12px 0;
    padding-left: 0;
    list-style: none;
  }

  .qa-a ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
  }

  .qa-a ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 12px; height: 1px;
    background: var(--navy);
  }

  /* Related services / pages strip */
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
  }

  .related-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
  }

  .related-card:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(32, 44, 68, 0.06);
  }

  .related-card .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .related-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.005em;
    line-height: 1.25;
  }

  .related-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
    flex-grow: 1;
    margin-bottom: 16px;
  }

  .related-card .more {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
  }
  .related-card:hover .more { color: var(--navy); }

  /* Mid-page CTA strip */
  .cta-strip {
    background: var(--navy);
    color: var(--ivory);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(248, 246, 241, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  .cta-strip .container { position: relative; z-index: 2; }

  .cta-strip h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-strip h2 em { font-style: normal; color: var(--ivory); }

  .cta-strip p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(248, 246, 241, 0.72);
    margin-bottom: 32px;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-strip .cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Service detail grid */
  .detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
  }

  .detail-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 24px;
  }

  .detail-card .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
  }

  .detail-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.005em;
    margin-top: 0;
  }

  .detail-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
  }

  /* RESPONSIVE for inner pages */
  @media (max-width: 1024px) {
    .article-grid, .article-grid.reverse { grid-template-columns: 1fr; gap: 32px; }
    .article-aside { position: static; }
    .compare-grid { grid-template-columns: 1fr; }
    .detail-list { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .article-section, .qa-section { padding: 72px 0; }
    .page-hero { padding: 56px 0 48px; }
  }

  @media (max-width: 720px) {
    .related-grid { grid-template-columns: 1fr; }
    .qa-q { font-size: 16px; }
    .qa-a { padding: 0 40px 24px 0; font-size: 15px; }
    .article-body { font-size: 16px; }
    .article-body > p:first-child { font-size: 18px; }
    .data-table { display: block; overflow-x: auto; }
    .data-table th, .data-table td { padding: 12px 14px; font-size: 13px; }
    .article-section, .qa-section { padding: 56px 0; }
    .page-hero { padding: 48px 0 40px; }
  }

  /* ==========================
     COOKIE BANNER + WHATSAPP FAB
     ========================== */
  .cookie-banner {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 200;
    background: var(--navy);
    color: var(--ivory);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.28);
    border: 1px solid var(--rule-on-navy-2);
    display: none;
    max-width: 980px;
    margin: 0 auto;
  }
  .cookie-banner.visible { display: flex; }

  .cookie-content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
  }
  .cookie-text {
    flex: 1 1 320px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(248, 246, 241, 0.86);
  }
  .cookie-text strong { color: var(--ivory); margin-right: 4px; }
  .cookie-text a {
    color: var(--ivory);
    text-decoration: underline;
    text-decoration-color: rgba(248, 246, 241, 0.4);
    text-underline-offset: 3px;
    margin-left: 4px;
  }
  .cookie-text a:hover { text-decoration-color: var(--ivory); }

  .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
  .cookie-banner button {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid var(--rule-on-navy-2);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    transition: all 0.15s;
  }
  .cookie-banner button.cookie-accept {
    background: var(--ivory);
    color: var(--navy);
    border-color: var(--ivory);
  }
  .cookie-banner button.cookie-reject:hover {
    background: rgba(248, 246, 241, 0.08);
    border-color: var(--ivory);
  }
  .cookie-banner button.cookie-accept:hover {
    background: var(--ivory-2);
  }

  @media (max-width: 640px) {
    .cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 16px; }
    .cookie-content { flex-direction: column; align-items: stretch; gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-banner button { flex: 1; }
  }

  /* WhatsApp floating action button */
  .whatsapp-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(10, 22, 40, 0.18);
    z-index: 150;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
  }
  .whatsapp-fab:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(10, 22, 40, 0.22);
  }
  .whatsapp-fab svg { width: 30px; height: 30px; }

  /* Shift WhatsApp FAB up while cookie banner is visible (prevents overlap on mobile) */
  body.cookie-banner-open .whatsapp-fab { bottom: 140px; }

  @media (max-width: 640px) {
    .whatsapp-fab { bottom: 18px; right: 18px; width: 52px; height: 52px; }
    .whatsapp-fab svg { width: 26px; height: 26px; }
    body.cookie-banner-open .whatsapp-fab { bottom: 220px; }
  }
