:root{
    --blue: #003087;
    --blue-deep: #001a4d;
    --blue-near-black: #0a0f24;
    --ink: #1A1A2E;
    --ink-2: #4A5568;
    --line: #e6e8ee;
    --bg: #ffffff;
    --bg-alt: #F7F8FA;
    --green: #00A651;
    --gold: #C9A227;
    --maxw: 1240px;
    --pad-x: clamp(20px, 4vw, 64px);
  }
  *{ box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  body{
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.65;
    font-size: 16px;
    padding-top: 68px;
  }
  h1,h2,h3,h4{ font-family: 'Manrope', sans-serif; letter-spacing: -0.02em; margin:0; line-height: 1.1; }
  h1{ font-weight: 800; }
  h2{ font-weight: 700; }
  .num{ font-family: 'Space Grotesk', monospace; font-feature-settings: "tnum"; letter-spacing: -0.01em; }
  .container{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
  a{ color: inherit; text-decoration: none; }
  button{ font-family: inherit; cursor: pointer; border: 0; background: transparent; }

  /* ---------- NAV ---------- */
  .nav{
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.80);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid rgba(230,232,238,0.50);
    box-shadow: none;
    transition:
      background 0.28s ease,
      box-shadow 0.28s ease,
      border-color 0.28s ease;
  }
  .nav.nav--scrolled{
    background: rgba(255,255,255,0.97);
    backdrop-filter: saturate(200%) blur(24px);
    -webkit-backdrop-filter: saturate(200%) blur(24px);
    border-bottom-color: var(--line);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.9) inset,
      0 6px 28px -12px rgba(0,26,77,0.14),
      0 1px 3px rgba(0,0,0,0.04);
  }
  .nav-inner{
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav--scrolled .nav-inner{ height: 56px; }

  .logo{
    display: flex; align-items: center; gap: 10px;
    font-family: 'Manrope', sans-serif; font-weight: 800;
    font-size: 18px; letter-spacing: -0.01em; flex-shrink: 0;
  }
  .logo-mark{
    width: 34px; height: 34px; background: var(--blue);
    display: grid; place-items: center; color: #fff;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px;
    position: relative; flex-shrink: 0;
    transition: transform 0.22s ease;
  }
  .logo:hover .logo-mark{ transform: scale(1.06); }
  .logo-mark::after{
    content: ''; position: absolute; right: -3px; bottom: -3px;
    width: 8px; height: 8px; background: var(--gold);
  }

  /* Desktop nav links */
  .nav-links{ display: flex; gap: 2px; }
  .nav-link{
    position: relative; padding: 8px 11px;
    color: var(--ink-2); font-size: 14px; font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.18s ease;
    white-space: nowrap;
  }
  .nav-link::after{
    content: ''; position: absolute;
    left: 11px; right: 11px; bottom: 3px;
    height: 1.5px; background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-link:hover{ color: var(--blue); }
  .nav-link:hover::after,
  .nav-link.active::after{ transform: scaleX(1); }
  .nav-link.active{ color: var(--blue); font-weight: 600; }

  /* Actions wrapper */
  .nav-actions{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

  .nav-cta{
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: #fff;
    padding: 10px 16px; font-weight: 600;
    font-family: 'Manrope', sans-serif; font-size: 14px;
    min-height: 44px; white-space: nowrap;
    box-shadow: 0 8px 20px -12px rgba(0,166,81,0.85);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  }
  .nav-cta:hover{
    background: #008f45;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -12px rgba(0,166,81,0.95);
  }

  /* Hamburger */
  .nav-hamburger{
    display: none; flex-direction: column;
    justify-content: center; align-items: center; gap: 5px;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid rgba(0,48,135,0.18);
    cursor: pointer; padding: 13px 12px; flex-shrink: 0;
    transition: border-color 0.18s ease, background 0.18s ease;
  }
  .nav-hamburger:hover{
    border-color: rgba(0,48,135,0.38);
    background: rgba(0,48,135,0.035);
  }
  .nav-hamburger .bar{
    display: block; width: 18px; height: 1.5px;
    background: var(--ink); border-radius: 1px;
    transition:
      transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.18s ease, width 0.22s ease;
    transform-origin: center;
  }
  .nav-hamburger.open .bar:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open .bar:nth-child(2){ opacity: 0; width: 0; }
  .nav-hamburger.open .bar:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

  /* Backdrop */
  .nav-backdrop{
    position: fixed; inset: 0; z-index: 90;
    background: rgba(5,10,28,0.52);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.active{ opacity: 1; pointer-events: auto; }

  /* Mobile nav panel */
  .nav-mobile{
    position: fixed; top: 0; left: 0; right: 0; z-index: 95;
    background: #fff;
    padding: 76px 24px 36px;
    display: flex; flex-direction: column; gap: 0;
    max-height: 100dvh; overflow-y: auto;
    transform: translateY(-110%);
    visibility: hidden;
    box-shadow: 0 24px 64px -24px rgba(0,26,77,0.24);
    border-bottom: 1px solid var(--line);
    transition:
      transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s 0.38s;
  }
  .nav-mobile::before{
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  }
  .nav-mobile.open{
    transform: translateY(0); visibility: visible;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  }

  .nav-mobile-nav{ display: flex; flex-direction: column; }
  .nav-mobile-link{
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 0; border-bottom: 1px solid var(--line);
    font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 17px;
    color: var(--ink);
    transition: color 0.15s ease, padding-left 0.2s ease;
  }
  .nav-mobile-link::after{
    content: ''; display: block; width: 20px; height: 1px;
    background: currentColor; opacity: 0.28;
    transition: opacity 0.15s ease, width 0.2s ease;
  }
  .nav-mobile-link:hover{ color: var(--blue); padding-left: 6px; }
  .nav-mobile-link:hover::after{ opacity: 0.75; width: 28px; }

  .nav-mobile-footer{
    margin-top: 28px; display: flex; flex-direction: column; gap: 16px;
  }
  .nav-mobile-cta{ width: 100%; justify-content: center; font-size: 15px; }
  .nav-mobile-info{
    display: flex; gap: 20px; flex-wrap: wrap;
    padding-top: 14px; border-top: 1px solid var(--line);
  }
  .nav-mobile-info-item{
    display: flex; align-items: center; gap: 6px;
    font-family: 'Space Grotesk', sans-serif; font-size: 11.5px;
    letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-2);
  }

  /* Show hamburger on mobile */
  @media (max-width: 880px){
    .nav-links{ display: none; }
    .nav-hamburger{ display: flex; }
    .nav-cta span{ display: none; }
    .nav-cta{ width: 44px; padding: 0; justify-content: center; }
  }
  @media (max-width: 440px){
    .nav-cta{ display: none; }
  }

  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    padding: 0;
    background: linear-gradient(160deg, #003d9e 0%, #003087 45%, #001a4d 100%);
    color: #fff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-grid{
    position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
    pointer-events:none;
  }
  .hero-inner{
    position: relative; z-index: 1;
    padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 10vw, 140px);
    display:grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center;
  }
  @media (max-width: 980px){ .hero-inner{ grid-template-columns: 1fr; gap: 40px; } }

  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    padding: 4px 0 4px 12px;
    border:none;
    border-left: 2px solid var(--green);
    background: transparent;
    font-family:'Space Grotesk'; font-weight:600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.8);
  }
  .eyebrow .dot{ width:6px; height:6px; background: var(--green); border-radius:50%; flex-shrink:0; }

  .hero h1{
    font-size: clamp(36px, 5.5vw, 68px);
    margin-top: 22px;
    color:#fff;
  }
  .hero h1 .accent{ color: #ffd76b; }
  .hero h1 .underline{
    display:inline-block; position:relative;
  }
  .hero h1 .underline::after{
    content:''; position:absolute; left:0; right:0; bottom:6px; height: 6px; background: var(--gold); opacity:0.85;
  }
  .hero-sub{
    margin-top: 22px;
    font-size: clamp(16px, 1.2vw, 18px);
    color: #c8d3ee; max-width: 560px;
  }
  .pillars{ display:flex; flex-wrap:wrap; gap: 8px 20px; margin-top: 22px; font-family:'Space Grotesk'; font-weight:600; font-size: 14px; color: #fff; }
  .pillars span{ display:inline-flex; align-items:center; gap:8px; }
  .pillars .sep{ color: #5b6790; }

  .hero-ctas{ display:flex; flex-wrap:wrap; gap: 12px; margin-top: 36px; }
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    padding: 16px 30px;
    font-family:'Manrope'; font-weight:600; font-size: 15px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
  }
  .btn-primary{ background: var(--green); color:#fff; }
  .btn-primary:hover{ background:#008f45; transform: translateY(-1px); }
  .btn-ghost{ background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
  .btn-ghost:hover{ border-color:#fff; }
  .btn svg{ width: 18px; height: 18px; }

  .trust-row{ display:flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; align-items:center; }
  .trust-row .small{ color:#8b95b3; font-size: 12.5px; font-family:'Space Grotesk'; letter-spacing:0.04em; text-transform: uppercase; }

  /* Hero card (right) */
  .hero-card{
    position: relative;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 28px;
  }
  .hero-card::before{ display: none; }
  .hero-card::after{ display: none; }
  .hero-card .label{ font-family:'Space Grotesk'; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color:#8b95b3; }
  .hero-card .big{
    font-family:'Space Grotesk'; font-weight:700;
    font-size: clamp(64px, 8vw, 104px);
    line-height: 1; color:#fff; margin-top: 8px;
  }
  .hero-card .stars{ color: var(--gold); letter-spacing: 4px; font-size: 22px; margin-top: 8px; }
  .hero-card .meta{ color:#b9c2d8; font-size: 14px; margin-top: 8px; }
  .hero-card .divider{ height:1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
  .hero-card .row{ display:flex; justify-content: space-between; gap: 16px; }
  .hero-card .row + .row{ margin-top: 12px; }
  .hero-card .row .k{ color:#8b95b3; font-size: 13px; }
  .hero-card .row .v{ color:#fff; font-family:'Space Grotesk'; font-weight:600; font-size: 14px; }

  .hero-bottombar{
    position:relative; z-index:1;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.12);
  }
  .hero-bottombar-inner{
    display:flex; gap: 36px; align-items:center; padding: 18px 0;
    color:rgba(255,255,255,0.65); font-family:'Space Grotesk'; font-size: 12.5px; letter-spacing:0.08em; text-transform: uppercase;
    overflow:hidden; flex-wrap:wrap;
  }
  .hero-bottombar-inner b{ color:#fff; letter-spacing: 0.06em; }

  /* ---------- SECTION HEADERS ---------- */
  section{ padding: clamp(80px, 9vw, 140px) 0; }
  .sec-head{ display:flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 64px; flex-wrap: wrap; }
  .sec-eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'Space Grotesk'; font-weight:600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue);
  }
  .sec-eyebrow::before{ content:''; width:24px; height:1px; background: var(--blue); display:inline-block; }
  .sec-title{ font-size: clamp(28px, 3.4vw, 44px); max-width: 760px; }
  .sec-sub{ color: var(--ink-2); max-width: 520px; }

  /* ---------- STATS ---------- */
  .stats{
    background: #eef2f8;
    color: var(--ink);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    position: relative; overflow:hidden;
  }
  .stats::before{ display: none; }
  .stats-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
  @media (max-width: 880px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }
  .stat{
    background: #eef2f8; padding: 44px 32px;
  }
  .stat .v{
    font-family:'Space Grotesk'; font-weight:700;
    font-size: clamp(40px, 5vw, 64px); line-height: 1;
    display:flex; align-items: baseline; gap: 6px;
    color: var(--blue);
  }
  .stat .v small{ font-size: 28px; color: var(--blue); font-weight:700; }
  .stat .l{
    margin-top: 14px;
    color: var(--ink-2); font-size: 13px; font-family:'Space Grotesk'; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .stat .desc{ color: var(--ink-2); font-size: 14px; margin-top: 8px; max-width: 240px; }

  /* ---------- SERVICES ---------- */
  .services-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border:1px solid var(--line); }
  @media (max-width: 1080px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }
  .service{
    background:#fff;
    padding: 40px 32px 32px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid var(--line);
    margin: -1px 0 0 -1px;
    cursor: pointer;
  }
  .service:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -16px rgba(0,48,135,0.25);
    border-color: var(--blue);
    background: #fafbff;
    z-index:1;
  }
  .service .ico{
    width: 48px; height: 48px;
    color: var(--blue);
    display:grid; place-items:center;
    background: rgba(0,48,135,0.06);
  }
  .service h3{ font-size: 20px; margin-top: 28px; }
  .service p{ color: var(--ink-2); font-size: 15px; margin-top: 10px; }
  .service .more{
    margin-top: 24px; display:inline-flex; align-items:center; gap:8px;
    font-family:'Manrope'; font-weight:600; font-size: 13.5px; color: var(--blue);
  }
  .service .more svg{ transition: transform .2s ease; }
  .service:hover .more svg{ transform: translateX(4px); }
  .service .num-tag{
    position:absolute; top: 20px; right: 24px;
    font-family:'Space Grotesk'; font-size: 12px; color: #b8bdcc;
  }

  /* ---------- WEG AUTHORITY ---------- */
  .weg{
    background: var(--blue);
    color: #fff;
    position: relative; overflow:hidden;
  }
  .weg::before{ display: none; }
  .weg-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position:relative; }
  @media (max-width: 980px){ .weg-grid{ grid-template-columns: 1fr; } }
  .weg-badge{
    display:inline-flex; align-items:center; gap: 14px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .weg-badge .seal{
    width: 28px; height: 28px; background: rgba(255,255,255,.15); display:grid; place-items:center;
    color: #fff; font-weight:800; font-family:'Manrope'; font-size: 14px;
  }
  .weg-badge span{ font-family:'Space Grotesk'; font-size: 12px; letter-spacing:0.14em; text-transform: uppercase; }
  .weg h2{ color:#fff; font-size: clamp(32px, 3.6vw, 48px); margin-top: 22px; }
  .weg p{ color: #c8d3ee; font-size: 16px; max-width: 520px; margin-top: 18px; }
  .weg-ben{ margin-top: 28px; display:grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .weg-ben .b{
    display:flex; gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .weg-ben .b:nth-child(odd){ padding-right: 16px; }
  .weg-ben .b:nth-child(even){ padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.08); }
  .weg-ben .b:nth-child(1),
  .weg-ben .b:nth-child(2){ border-top: 0; padding-top: 8px; }
  .weg-ben .b .ico{ flex:none; width: 26px; height: 26px; color: var(--gold); }
  .weg-ben .b .t{ font-family:'Manrope'; font-weight:600; font-size: 14px; }
  .weg-ben .b .d{ color: #b6c2e0; font-size: 12.5px; margin-top: 3px; line-height: 1.5; }
  /* Premium institutional panel */
  .weg-panel{
    position: relative;
    border: 1px solid rgba(255,255,255,0.14);
    background: #002070;
    box-shadow:
      0 30px 60px -30px rgba(0,0,0,0.4),
      0 0 0 1px rgba(255,255,255,0.05) inset,
      0 0 40px -24px rgba(0,48,135,0.16);
    overflow: hidden;
  }
  .weg-panel::before, .weg-panel::after{ display: none; }
  .weg-panel .corner-tr, .weg-panel .corner-bl{ display: none; }

  .weg-panel-img{
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .weg-panel-img img{
    width: 100%; height: 100%; object-fit: cover; display:block;
    filter: saturate(0.78) contrast(1.02) brightness(0.88);
    transition: transform 1.2s ease, filter .8s ease;
  }
  .weg-panel:hover .weg-panel-img img{ transform: scale(1.02); filter: saturate(0.85) brightness(0.92); }

  .weg-panel-img::before{
    content:''; position:absolute; inset:0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,24,80,0.18) 0%, rgba(0,24,80,0.42) 100%);
    mix-blend-mode: multiply;
  }
  .weg-panel-img::after{
    content:''; position:absolute; inset:0; z-index: 2;
    background: linear-gradient(180deg, transparent 40%, rgba(0,16,64,0.6) 100%);
    pointer-events: none;
  }
  .weg-panel-img .scan{ display: none; }
  .weg-panel-img .grid{ display: none; }
  .weg-hud{ display: none; }
  .weg-seal{ display: none; }
  .weg-seal::before{ animation: none; }
  @keyframes rotate{ to { transform: rotate(360deg); } }

  /* Credential strip below image */
  .weg-cred{
    background: #002070;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 28px;
    display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
    position: relative;
  }
  .weg-cred .k{ color:#a0b8e0; font-size:10.5px; font-family:'Space Grotesk'; letter-spacing:0.16em; text-transform: uppercase; }
  .weg-cred .v{ color:#fff; font-family:'Space Grotesk'; font-weight:600; font-size: 13.5px; margin-top: 6px; }
  .weg-cred .div{ width: 1px; background: rgba(255,255,255,0.1); }
  .weg-cred-bottom{
    background: #001454;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 14px 28px;
    display:flex; justify-content: space-between; align-items:center;
    color: #8ea0d0; font-family:'Space Grotesk'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .weg-cred-bottom b{ color: var(--gold); }
  @media (max-width: 540px){
    .weg-cred{ grid-template-columns: 1fr 1fr; }
    .weg-cred .three{ grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
  }

  /* ---------- PARTNERS ---------- */
  .partners{ background: var(--bg-alt); }
  .partners-grid{
    display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  @media (max-width: 880px){ .partners-grid{ grid-template-columns: repeat(2,1fr); } }
  .partner{
    background: #fff; padding: 36px 26px;
    display:flex; flex-direction:column; align-items: center; justify-content: center;
    min-height: 140px;
    transition: background .15s ease;
  }
  .partner:hover{ background: #fbfbfd; }
  .partner .name{
    font-family:'Manrope'; font-weight:800; font-size: 22px; letter-spacing: 0.02em; color: var(--ink);
  }
  .partner.lg .name{ font-size: 30px; color: var(--blue); }
  .partner .badge{ margin-top: 6px; font-family:'Space Grotesk'; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
  .partner .tag{ margin-top: 2px; font-family:'Space Grotesk'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }

  /* ---------- WHY ---------- */
  .why-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
  @media (max-width: 880px){ .why-grid{ grid-template-columns: 1fr; } }
  .why{
    background:#fff; padding: 36px 28px; display:flex; gap: 20px;
  }
  .why .n{
    font-family:'Space Grotesk'; font-weight:700; font-size: 14px; color: var(--blue); flex:none;
    border-top: 2px solid var(--blue); padding-top: 8px; min-width: 32px;
  }
  .why .t{ font-family:'Manrope'; font-weight:700; font-size: 19px; }
  .why .d{ color: var(--ink-2); font-size: 15px; margin-top: 8px; }

  /* ---------- SECTORS ---------- */
  .sectors{ background: var(--bg-alt); }
  .sectors-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  @media (max-width: 980px){ .sectors-grid{ grid-template-columns: repeat(2, 1fr); } }
  .sector{
    background: #fff; border: 1px solid var(--line); padding: 28px; position: relative;
    aspect-ratio: 1 / 1.05; display:flex; flex-direction:column; justify-content: space-between;
    overflow: hidden;
  }
  .sector .pic{
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,48,135,0.04), rgba(0,48,135,0.0)),
      linear-gradient(135deg, #f5f7fb 0%, #e9edf4 100%);
    z-index: 0;
  }
  .sector .pic::before{
    content:''; position:absolute; inset: 18px;
    background-image:
      linear-gradient(rgba(0,48,135,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,48,135,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at 70% 70%, #000 30%, transparent 80%);
  }
  .sector .pic::after{
    content:''; position:absolute; right: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border: 1px solid rgba(0,48,135,0.18);
    border-radius: 50%;
  }
  .sector .pic-label{
    position:absolute; bottom: 12px; left: 14px; font-family:'Space Grotesk'; font-size: 10.5px; letter-spacing:0.14em; text-transform:uppercase; color:#9aa3bb;
  }
  .sector .top{ position: relative; z-index:1; display:flex; justify-content: space-between; align-items: flex-start; }
  .sector .top .ico{ width: 32px; height: 32px; color: var(--blue); }
  .sector .top .idx{ font-family:'Space Grotesk'; font-size: 12px; color: var(--ink-2); }
  .sector .bottom{ position: relative; z-index:1; }
  .sector h3{ font-family:'Manrope'; font-weight:700; font-size: 20px; }
  .sector p{ color: var(--ink-2); font-size: 13.5px; margin-top: 6px; }

  /* ---------- REVIEWS ---------- */
  .reviews{ background: var(--bg-alt); }
  .reviews-head{ display:grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }
  @media (max-width: 980px){ .reviews-head{ grid-template-columns: 1fr; } }
  .reviews-stat{
    border-left: 2px solid var(--gold); padding-left: 24px;
  }
  .reviews-stat .big{ font-family:'Space Grotesk'; font-weight:700; font-size: 64px; line-height: 1; }
  .reviews-stat .s{ color: var(--gold); letter-spacing: 4px; font-size: 22px; margin-top: 8px; }
  .reviews-stat .l{ color: var(--ink-2); margin-top: 10px; font-family:'Space Grotesk'; font-size: 13px; letter-spacing:0.08em; text-transform:uppercase; }
  .reviews-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 980px){ .reviews-grid{ grid-template-columns: 1fr; } }
  .review{
    background: #fff; border: 1px solid var(--line); padding: 24px 24px 20px;
    border-radius: 16px;
    display:flex; flex-direction:column; gap: 14px;
    box-shadow: 0 2px 12px -4px rgba(0,26,77,0.12);
    transition: border-color .2s ease, box-shadow .2s ease, transform .18s ease;
  }
  .review:hover{
    border-color: rgba(0,48,135,0.2);
    box-shadow: 0 4px 16px -8px rgba(0,48,135,0.12);
    transform: translateY(-2px);
  }
  .review .stars{ color: var(--gold); letter-spacing: 3px; font-size: 16px; }
  .review .quote{ color: var(--ink); font-size: 15.5px; line-height: 1.6; flex: 1; font-style: italic; }
  .review .who{ display:flex; align-items:center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
  .review .av{ width: 40px; height: 40px; background: var(--blue); color:#fff; display:grid; place-items:center; font-family:'Manrope'; font-weight:700; font-size: 15px; flex-shrink: 0; border-radius: 50%; }
  .review .nm{ font-family:'Manrope'; font-weight:700; font-size: 15px; line-height:1.3; color: var(--ink); }
  .review .meta{ color: var(--ink-2); font-size: 12px; margin-top: 2px; }

  /* ---------- ABOUT ---------- */
  .about{ background: #fff; }
  .about-grid{ display:grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
  @media (max-width: 980px){ .about-grid{ grid-template-columns: 1fr; } }
  .about-img{
    aspect-ratio: 4/3.2;
    background:
      linear-gradient(135deg, #f5f7fb 0%, #e6ebf3 100%);
    position: relative;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .about-img::before{
    content:''; position:absolute; inset: 24px;
    background-image:
      linear-gradient(rgba(0,48,135,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,48,135,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at 50% 50%, #000 40%, transparent 90%);
  }
  .about-img::after{
    content:''; position:absolute; right: -120px; bottom: -120px;
    width: 360px; height: 360px;
    border: 1px solid rgba(0,48,135,0.18);
    border-radius: 50%;
  }
  .about-img .crosshair{ display: none; }
  .about-img .lab{ position:absolute; bottom: 14px; left: 16px; font-family:'Space Grotesk'; font-size: 11px; letter-spacing:0.14em; text-transform:uppercase; color:#9aa3bb; }
  .about-img .badge{
    position: absolute; top: 24px; left: -24px;
    background: var(--blue); color:#fff; padding: 14px 18px;
    font-family:'Space Grotesk'; font-weight:600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  }
  .about p{ color: var(--ink-2); font-size: 16px; max-width: 520px; margin-top: 20px; }
  .about-meta{ display:grid; grid-template-columns: repeat(2,1fr); gap: 20px 28px; margin-top: 36px; }
  .about-meta > div:first-child{ grid-column: 1 / -1; }
  .about-meta .k{ font-family:'Space Grotesk'; font-size: 11px; letter-spacing:0.14em; text-transform:uppercase; color: var(--ink-2); }
  .about-meta .v{ font-family:'Manrope'; font-weight:700; font-size: 15px; margin-top: 6px; }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    background:
      linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
    color:#fff; position:relative; overflow:hidden;
  }
  .final-cta::before{
    content:''; position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 70%);
  }
  .final-cta-inner{ position: relative; text-align: center; }
  .final-cta h2{ font-size: clamp(32px, 4vw, 56px); color:#fff; max-width: 820px; margin: 0 auto; }
  .final-cta p{ color: #b9c2d8; font-size: 17px; max-width: 560px; margin: 22px auto 0; }
  .final-cta .ctas{ display:flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

  /* ---------- FOOTER ---------- */
  footer{ background: #1a2942; color:#9aaac4; padding: 72px 0 32px; }
  .foot-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  @media (max-width: 880px){ .foot-top{ grid-template-columns: 1fr 1fr; } }
  .foot-logo{ display:flex; align-items:center; gap:10px; color:#fff; font-family:'Manrope'; font-weight:800; font-size: 20px; }
  footer h4{ color:#fff; font-family:'Manrope'; font-weight:700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
  footer ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction: column; gap: 10px; font-size: 14px; }
  footer ul a:hover{ color:#fff; }
  .foot-bottom{ display:flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 12.5px; color: #7a8aaa; flex-wrap: wrap; gap: 12px; }
  .foot-bottom .marks{ display:flex; gap: 18px; flex-wrap: wrap; font-family:'Manrope'; font-weight:700; color:#6f7a99; letter-spacing: 0.04em; }
  .hero-card-top{ display:flex; justify-content: space-between; align-items: center; }
  .status-chip{ display:inline-flex; align-items:center; gap:6px; font-family:'Space Grotesk'; font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:#9aa9d0; }
  .status-chip-dot{ width:6px; height:6px; background:#00A651; border-radius:50%; }
  .stats-section{ padding:0; }
  .stats-container{ padding-top:0; padding-bottom:0; }
  .stat-location{ font-size: clamp(28px, 3vw, 38px); }
  .mt-16{ margin-top:16px; }
  .mt-14{ margin-top:14px; }
  .mt-18{ margin-top:18px; }
  .mt-24{ margin-top:24px; }
  .mt-36{ margin-top:36px; }
  .final-cta-eyebrow{ color:#ffd76b; justify-content:center; display:inline-flex; }
  .footer-description{ margin-top:16px; max-width:320px; font-size:14px; }
  .footer-marks{ margin-top:18px; }

  /* ---------- WHATSAPP FAB ---------- */
  .wa-fab{
    position: fixed; right: 22px; bottom: 22px; z-index: 80;
    background: var(--green); color:#fff;
    padding: 14px 18px;
    display:inline-flex; align-items:center; gap:10px;
    font-family:'Manrope'; font-weight:700; font-size: 14px;
    box-shadow: 0 12px 30px -8px rgba(0,166,81,0.55);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .wa-fab:hover{ transform: translateY(-2px); }
  .wa-fab .pulse{
    position: absolute; inset: 0;
    box-shadow: 0 0 0 0 rgba(0,166,81,0.55);
    animation: pulse 2.2s infinite;
    pointer-events:none;
  }
  @keyframes pulse{
    0%{ box-shadow: 0 0 0 0 rgba(0,166,81,0.55); }
    70%{ box-shadow: 0 0 0 18px rgba(0,166,81,0); }
    100%{ box-shadow: 0 0 0 0 rgba(0,166,81,0); }
  }
  @media (max-width: 560px){
    .wa-fab span.lbl{ display:none; }
    .wa-fab{ padding: 14px; }
  }

  /* ---------- REVEAL ---------- */
  .reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity: 1; transform: none; }

  /* ---------- REVIEWS ENHANCEMENT ---------- */
  .reviews-grid{ grid-template-columns: repeat(3,1fr); }
  @media (max-width: 980px){ .reviews-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .reviews-grid{ grid-template-columns: 1fr; } }
  .review{ position: relative; }
  .review-badge{
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
    color: var(--blue); background: transparent;
    border: 1px solid rgba(0,48,135,0.22);
    padding: 5px 12px; border-radius: 20px; margin-top: 4px;
  }
  .review-badge svg{ width: 11px; height: 11px; flex-shrink: 0; color: var(--blue); }
  .review-header{
    display: flex; align-items: center; gap: 12px;
  }
  .review-info{ flex: 1; min-width: 0; }
  .review-rating{
    display: flex; justify-content: space-between; align-items: center;
  }
  .review-time{
    font-family: 'Space Grotesk', sans-serif; font-size: 12px;
    color: var(--ink-2); letter-spacing: 0.02em;
  }
  .reviews-trust{
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
    font-family: 'Space Grotesk', sans-serif; font-size: 12px;
    color: var(--ink-2); letter-spacing: 0.04em; text-align: center;
  }
  .reviews-trust svg{ color: var(--blue); flex-shrink: 0; }
  .reviews-grid .review:nth-child(even) .av{ background: #1e7a6e; }
  .review-g{
    margin-left: auto; flex-shrink: 0;
    width: 18px; height: 18px; display: block;
  }

  /* ---------- GALLERY ---------- */
  .gallery{ background: var(--bg-alt); }
  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto auto;
    gap: 12px;
  }
  @media (max-width: 1080px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .gallery-grid{ grid-template-columns: 1fr; } }
  @media (min-width: 1081px){ .gallery-item--lg{ grid-column: span 2; } }
  @media (min-width: 1081px){ .gallery-item--lg .gallery-img{ aspect-ratio: 16/9; } }

  .gallery-item .gallery-img{
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(0,20,70,0.12), rgba(0,10,50,0.5)),
      linear-gradient(135deg, #1a2942, #002070);
    cursor: pointer;
  }
  .gallery-item .gallery-img::before{
    display: none;
  }
  .gallery-item .gallery-img::after{
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s ease;
  }
  .gallery-item:hover .gallery-img::before{ display: none; }
  .gallery-item:hover .gallery-img::after{ border-color: rgba(255,255,255,0.18); }

  .gallery-overlay{
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,20,60,0.1) 0%, rgba(0,10,40,0.05) 100%);
    pointer-events: none;
  }
  .gallery-label{
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 14px;
    background: linear-gradient(to top, rgba(0,8,40,0.92) 0%, transparent 100%);
    font-size: 13px; color: #c8d3ee;
    font-family: 'Space Grotesk', sans-serif;
    display: flex; align-items: center; gap: 8px;
  }
  .gl-tag{
    font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.25);
    padding: 3px 8px; flex-shrink: 0;
  }

  /* ---------- REGIONS ---------- */
  .regions{ background: #fff; }
  .regions-grid{
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  }
  @media (max-width: 980px){ .regions-grid{ grid-template-columns: 1fr; } }

  .regions-map{ position: relative; }
  .rmap-inner{
    position: relative; aspect-ratio: 1/0.85;
    background:
      radial-gradient(70% 70% at 50% 50%, rgba(0,48,135,0.08), transparent 70%),
      linear-gradient(135deg, #f0f3f9, #e6ebf5);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .rmap-bg{
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,48,135,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,48,135,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .rmap-ring{
    position: absolute; border-radius: 50%;
    border: 1px dashed rgba(0,48,135,0.15);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
  }
  .rmap-ring--1{ width: 35%; padding-top: 35%; }
  .rmap-ring--2{ width: 60%; padding-top: 60%; }
  .rmap-ring--3{ width: 88%; padding-top: 88%; border-color: rgba(0,48,135,0.08); }
  .rmap-center{
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2;
  }
  .rmap-dot{
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(0,48,135,0.15), 0 0 0 8px rgba(0,48,135,0.07);
  }
  .rmap-label{
    font-family: 'Space Grotesk', sans-serif; font-weight: 600;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--blue); background: rgba(255,255,255,0.9);
    padding: 3px 8px; border: 1px solid rgba(0,48,135,0.15); white-space: nowrap;
  }
  .rmap-city{
    position: absolute;
    left: var(--x); top: var(--y);
    transform: translate(-50%,-50%);
    font-family: 'Space Grotesk', sans-serif; font-size: 10px;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-2); background: rgba(255,255,255,0.85);
    padding: 3px 7px; border: 1px solid rgba(0,48,135,0.1);
    white-space: nowrap; z-index: 1;
    display: flex; align-items: center; gap: 5px;
  }
  .rmap-city::before{
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--blue); flex-shrink: 0;
  }
  .rmap-city--far{ color: #9aa3bb; }
  .rmap-city--far::before{ background: #b8bdcc; }

  .rinfo-group{ margin-bottom: 24px; }
  .rinfo-label{
    font-family: 'Space Grotesk', sans-serif; font-size: 10.5px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 10px;
    padding-bottom: 8px; border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 8px;
  }
  .rinfo-label::before{
    content: ''; width: 16px; height: 1px; background: var(--blue);
  }
  .rinfo-cities{ display: flex; flex-wrap: wrap; gap: 7px; }
  .rcity{
    font-family: 'Space Grotesk', sans-serif; font-size: 12.5px;
    color: var(--ink); background: var(--bg-alt);
    border: 1px solid var(--line); padding: 5px 12px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .rcity--main{
    background: var(--blue); color: #fff; border-color: var(--blue);
    font-weight: 600;
  }
  .rcity--main svg{ color: rgba(255,255,255,0.7); }
  .rcity--far{ color: var(--ink-2); }
  .rinfo-meta{ margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; }
  .rinfo-item{
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 13.5px; color: var(--ink-2); margin-bottom: 10px;
  }
  .rinfo-item svg{ flex-shrink: 0; color: var(--blue); margin-top: 1px; }

  /* ---------- CONTACT SECTION ---------- */
  .contact-section{
    background: #003087;
    color: #fff;
    position: relative; overflow: hidden;
    padding: 0;
  }
  .contact-section::before{ display: none; }
  .contact-top{
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: clamp(48px,6vw,80px) 0 clamp(36px,5vw,60px);
  }
  .contact-top-inner{
    display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap;
  }
  .contact-top-inner h2{
    font-size: clamp(28px,3.4vw,44px); color: #fff;
    max-width: 680px; letter-spacing: -0.03em;
  }
  .contact-top-inner p{ color: rgba(255,255,255,0.75); font-size: 15px; max-width: 560px; }
  .contact-eyebrow{ color: rgba(255,255,255,0.7) !important; }
  .contact-eyebrow::before{ background: rgba(255,255,255,0.5) !important; }
  .contact-trust{
    display: flex; gap: 20px; flex-wrap: wrap; flex-shrink: 0;
  }
  .ct-item{
    display: flex; align-items: center; gap: 8px;
    font-family: 'Space Grotesk', sans-serif; font-size: 12px;
    letter-spacing: 0.08em; text-transform: uppercase; color: #8b95b3;
  }
  .ct-item svg{ color: var(--green); }

  .contact-grid{
    display: grid; grid-template-columns: 1fr 400px; gap: 56px;
    padding-top: clamp(40px,6vw,72px); padding-bottom: clamp(48px,7vw,88px);
    position: relative;
  }
  @media (max-width: 1100px){ .contact-grid{ grid-template-columns: 1fr; gap: 40px; } }

  /* Form */
  .contact-form{ display: flex; flex-direction: column; gap: 18px; }
  .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 640px){ .form-row{ grid-template-columns: 1fr; } }
  .form-field{ display: flex; flex-direction: column; gap: 7px; }
  .form-field label{
    font-family: 'Space Grotesk', sans-serif; font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase; color: #8b95b3;
  }
  .form-field .req{ color: var(--gold); }
  .form-field input,
  .form-field select,
  .form-field textarea{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff; font-family: 'Inter', sans-serif; font-size: 15px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    width: 100%;
    appearance: none;
  }
  .form-field select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b95b3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }
  .form-field select option{ background: #003087; color: #fff; }
  .form-field textarea{ resize: vertical; min-height: 100px; }
  .form-field input::placeholder,
  .form-field textarea::placeholder{ color: #5b6790; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus{
    border-color: rgba(0,166,81,0.6);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(0,166,81,0.08);
  }
  .form-field input:focus::placeholder,
  .form-field textarea:focus::placeholder{ color: #8b95b3; }
  .form-actions{ display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
  .form-submit{
    align-self: flex-start; min-width: 220px; justify-content: center;
  }
  .form-note{
    font-size: 12px; color: #5b6790;
    font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.04em;
  }

  /* Contact info card */
  .contact-info-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
  }
  .contact-info-card::before{ display: none; }
  .contact-info-card::after{ display: none; }
  .cic-header{
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .cic-logo{ display: flex; align-items: center; gap: 12px; }
  .cic-name{
    font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px; color: #fff;
  }
  .cic-sub{
    font-family: 'Space Grotesk', sans-serif; font-size: 10.5px;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 2px;
  }
  .cic-body{
    padding: 20px 24px;
    display: flex; flex-direction: column; gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .cic-item{ display: flex; gap: 12px; align-items: flex-start; }
  .cic-item svg{ flex-shrink: 0; color: var(--gold); margin-top: 2px; }
  .cic-label{
    font-family: 'Space Grotesk', sans-serif; font-size: 10px;
    letter-spacing: 0.12em; text-transform: uppercase; color: #5b6790; margin-bottom: 3px;
  }
  .cic-val{ font-size: 13.5px; color: #c8d3ee; line-height: 1.5; }
  .cic-val a{ color: #c8d3ee; transition: color 0.15s; }
  .cic-val a:hover{ color: #fff; }
  .cic-wa-btn{
    display: flex; align-items: center; gap: 10px;
    margin: 20px 24px 0;
    padding: 14px 18px;
    background: var(--green); color: #fff;
    font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 14px;
    justify-content: center;
    transition: background 0.18s ease, transform 0.18s ease;
  }
  .cic-wa-btn:hover{ background: #008f45; transform: translateY(-1px); }
  .cic-reviews{
    padding: 18px 24px 22px;
    text-align: center;
  }
  .cic-stars{ color: var(--gold); letter-spacing: 3px; font-size: 18px; margin-bottom: 6px; }
  .cic-rcount{
    font-family: 'Space Grotesk', sans-serif; font-size: 12px;
    color: #8b95b3; letter-spacing: 0.06em; text-transform: uppercase;
  }
  .cic-google-link{
    display: inline-block; margin-top: 8px; font-size: 12px;
    color: var(--gold); font-family: 'Space Grotesk', sans-serif;
    transition: opacity 0.15s;
  }
  .cic-google-link:hover{ opacity: 0.75; }

  /* ---------- DARK SECTION CTA TEXT ---------- */
  .reviews .reviews-head .btn-out{
    display:inline-flex; align-items:center; gap:10px; align-self: end;
    padding: 14px 18px; font-family:'Manrope'; font-weight:600; font-size: 14px;
    border: 1px solid var(--blue); color: var(--blue);
  }
  .reviews .reviews-head .btn-out:hover{ background: var(--blue); color: #fff; }
  /* Mobile spacing tweaks */
  @media (max-width: 640px){
    section{ padding: clamp(56px, 11vw, 88px) 0; }
    .sec-head{ margin-bottom: 40px; }
    .hero-ctas .btn{ width: 100%; justify-content: center; }
    .hero-card{ padding: 22px; }
    .hero-bottombar-inner{ gap: 18px; padding: 14px 0; font-size: 11px; }
    .stat{ padding: 32px 24px; }
    /* Compact hero on mobile for CTA above fold */
    .hero-inner{ padding-top: 44px; }
    .hero h1{ margin-top: 14px; }
    .hero-sub{ margin-top: 14px; }
    .pillars{ margin-top: 12px; }
    .hero-ctas{ margin-top: 22px; }
    .trust-row{ margin-top: 22px; }
  }

  /* ---------- PREMIUM REFINEMENTS ---------- */
  html{
    scroll-behavior: smooth;
    overflow-x: clip;
    scroll-padding-top: 72px;
  }
  section[id]{ scroll-margin-top: 72px; }
  body{ overflow-x: clip; }
  :focus-visible{ outline: 3px solid rgba(0,166,81,.35); outline-offset: 3px; }

  .hero{
    background: linear-gradient(160deg, #003d9e 0%, #003087 45%, #001a4d 100%);
  }
  .hero::before{ display: none; }
  .hero::after{ display: none; }
  .hero-inner{
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(40px, 5vw, 72px);
    padding: clamp(64px, 7vw, 96px) var(--pad-x) clamp(68px, 7.5vw, 104px);
  }
  .eyebrow{
    min-height: 34px;
    border-color: rgba(255,255,255,.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  }
  .hero h1{
    max-width: 780px;
    letter-spacing: -0.035em;
  }
  .hero h1 .underline::after{
    bottom: 4px;
    height: 8px;
    opacity:.5;
  }
  .hero-break{ display:none; }
  .hero-sub{
    max-width: 580px;
    color:#d9e2f5;
    line-height: 1.66;
    font-size: clamp(16px, 1.3vw, 19px);
  }
  .pillars{
    gap: 10px;
  }
  .pillars span:not(.sep){
    color:#fff;
  }
  .hero-ctas{
    align-items:center;
  }
  .btn{
    min-height: 52px;
    border-radius: 0;
  }
  .btn-primary{
    box-shadow: 0 4px 16px -6px rgba(0,100,50,.35);
  }
  .btn-ghost{
    background: transparent;
  }
  .trust-row{
    padding-top: 20px;
    border-top:1px solid rgba(255,255,255,.1);
    gap: 12px;
  }
  .trust-row .small{
    color:rgba(255,255,255,0.65);
  }
  .trust-row .small::before{
    content:'';
    display:inline-block;
    width:14px; height:1px;
    margin-right:9px;
    background:rgba(255,255,255,0.35);
    transform: translateY(-3px);
  }
  .hero-card{
    padding: clamp(24px, 4vw, 34px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.28);
  }
  .hero-card .big{
    display:flex;
    align-items:flex-start;
    gap: 8px;
    font-size: clamp(52px, min(7vw, 10vh), 92px);
  }
  .hero-card .big small{
    color: rgba(255,255,255,0.75);
    font-size: .34em;
    margin-top: .2em;
  }
  .hero-card .row{
    padding: 10px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .hero-card .row:last-child{ border-bottom:0; }
  .hero-bottombar-inner{
    justify-content: space-between;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .sec-head{
    align-items:flex-start;
  }
  .sec-title{
    letter-spacing:-.03em;
    line-height: 1.1;
  }
  .sec-sub{
    line-height: 1.68;
    font-size: 16px;
  }

  .stats-grid,
  .services-grid,
  .partners-grid,
  .why-grid{
    box-shadow: 0 24px 70px -62px rgba(0,26,77,.75);
  }
  .stat{
    min-height: 210px;
  }

  .service{
    min-height: 330px;
    display:flex;
    flex-direction:column;
  }
  .service::after{ display: none; }
  .service .ico{
    border:1px solid rgba(0,48,135,.11);
  }
  .service h3{
    letter-spacing:-.02em;
  }
  .service p{
    line-height:1.65;
  }
  .service .more{
    margin-top:auto;
    padding-top: 24px;
  }

  .weg{
    background: #003087;
  }
  .weg-grid{
    gap: clamp(44px, 6vw, 76px);
  }
  .weg-badge{
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }
  .weg h2{
    letter-spacing:-.035em;
    max-width: 620px;
  }
  .weg p{
    line-height:1.75;
  }
  .weg-ben .b{
    padding: 14px 0;
    border-top:1px solid rgba(255,255,255,.1);
  }
  .weg-panel{
    transform: translateZ(0);
  }
  .weg-panel-img{
    aspect-ratio: 4 / 3.65;
  }
  .weg-panel-img img{
    object-position:center;
  }
  .weg-cred-bottom{
    gap: 16px;
  }

  .partner{
    position:relative;
    isolation:isolate;
  }
  .partner::after{
    content:'';
    position:absolute;
    inset:auto 24px 18px;
    height:1px;
    background: linear-gradient(90deg, transparent, rgba(0,48,135,.22), transparent);
    opacity:0;
    transition:opacity .18s ease;
  }
  .partner:hover::after{ opacity:1; }
  .partner.lg{
    background:
      linear-gradient(135deg, rgba(0,48,135,.08), rgba(0,166,81,.04)),
      #fff;
  }

  .why{
    min-height: 178px;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  }
  .why:hover{
    background:#fbfcff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -28px rgba(0,48,135,.45);
    z-index:1;
  }

  .sectors-grid{
    gap: 18px;
  }
  .sector{
    border-color:#dde2eb;
  }

  .about-img{
    background:
      linear-gradient(180deg, rgba(5,10,28,.1), rgba(0,48,135,.05)),
      url('../images/eletroar-hero.webp') center/cover no-repeat,
      linear-gradient(135deg, #f5f7fb 0%, #e6ebf3 100%);
  }
  .about-img::before{
    background-image:
      linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  }
  .about-img::after{
    border-color: rgba(255,255,255,.32);
  }
  .about-img .lab{
    color:#fff;
    background: rgba(0,10,50,.68);
    padding: 8px 10px;
  }

  .final-cta{
    background:
      radial-gradient(900px 360px at 50% 0%, rgba(0,166,81,.16), transparent 62%),
      linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  }

  /* ---------- WEG METRICS STRIP ---------- */
  .weg-strip{
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,16,64,0.28);
    position: relative;
    z-index: 1;
  }
  .weg-strip-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
  }
  .weg-strip-item{
    background: rgba(0,20,80,0.38);
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.18s ease;
  }
  .weg-strip-item:hover{ background: rgba(0,48,135,0.25); }
  .wsi-v{
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 40px);
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .wsi-v sup{
    color: var(--gold);
    font-size: 0.48em;
    font-weight: 700;
    vertical-align: super;
    margin-left: 1px;
  }
  .wsi-l{
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b95b3;
  }
  @media (max-width: 720px){ .weg-strip-grid{ grid-template-columns: repeat(2,1fr); } }

  /* ---------- SPEC CARDS ---------- */
  .spec{
    background: #f0f4fa;
    color: var(--ink);
    position: relative;
    overflow: hidden;
  }
  .spec::before{ display: none; }
  .spec-eyebrow{ color: var(--blue) !important; }
  .spec-eyebrow::before{ background: var(--blue) !important; }
  .spec .sec-title{ color: var(--ink); }
  .spec .sec-sub{ color: var(--ink-2); }

  .spec-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    box-shadow: 0 8px 32px -16px rgba(0,26,77,0.1);
  }
  @media (max-width: 1080px){ .spec-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .spec-grid{ grid-template-columns: 1fr; } }

  .spec-card{
    background: #fff;
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
  }
  .spec-card::after{
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.24s ease;
  }
  .spec-card:hover{ background: #f7faff; box-shadow: 0 4px 20px -8px rgba(0,48,135,0.12); }
  .spec-card:hover::after{ transform: scaleY(1); }

  .spec-hd{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
  }
  .spec-idx{
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    color: var(--ink-2);
    letter-spacing: 0.14em;
  }
  .spec-ico{
    width: 34px; height: 34px;
    display: grid; place-items: center;
    color: var(--blue);
    background: rgba(0,48,135,0.07);
    border: 1px solid rgba(0,48,135,0.14);
    flex-shrink: 0;
  }
  .spec-card h3{
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .spec-list{
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 7px;
    flex: 1;
  }
  .spec-list li{
    font-size: 13px;
    color: var(--ink-2);
    padding-left: 13px;
    position: relative;
    line-height: 1.45;
  }
  .spec-list li::before{
    content: '';
    position: absolute; left: 0; top: 7px;
    width: 5px; height: 1px;
    background: var(--blue);
  }
  .spec-cta{
    margin-top: 18px;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600; font-size: 12px;
    color: var(--blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    transition: gap 0.18s ease, opacity 0.18s ease;
  }
  .spec-cta:hover{ gap: 10px; opacity: 0.8; }

  /* ---------- AUTH WHY ---------- */
  .auth-why{ background: var(--bg-alt); }

  .auth-compare{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 40px;
    box-shadow: 0 18px 50px -36px rgba(0,26,77,0.18);
  }
  @media (max-width: 760px){ .auth-compare{ grid-template-columns: 1fr; } }

  .auth-item{
    background: #fff;
    padding: 22px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: background 0.15s ease;
  }
  .auth-item:hover{ background: #fafbfe; }

  .auth-ico{
    flex: none;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    background: rgba(0,166,81,0.06);
    border: 1px solid rgba(0,166,81,0.15);
    color: var(--green);
  }
  .auth-ico svg{ width: 16px; height: 16px; }

  .auth-label{
    font-family: 'Manrope', sans-serif;
    font-weight: 700; font-size: 14.5px;
    color: var(--ink); margin-bottom: 7px;
  }
  .auth-ok{
    font-size: 13px; color: #1a7a42; font-weight: 500;
    padding-left: 14px; position: relative;
    margin-bottom: 4px; line-height: 1.4;
  }
  .auth-ok::before{ content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--green); }
  .auth-no{
    font-size: 12.5px; color: #9aa3bb;
    padding-left: 14px; position: relative;
    text-decoration: line-through; line-height: 1.4;
  }
  .auth-no::before{ content: '×'; position: absolute; left: 0; color: #b8bdcc; text-decoration: none; }

  .auth-cta-block{
    display: flex; align-items: center;
    justify-content: space-between; gap: 32px;
    padding: 36px 40px;
    background: linear-gradient(135deg, #002d7a 0%, #001a4d 100%);
    color: #fff;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .auth-cta-block::before{
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 0% 50%, #000 30%, transparent 70%);
    pointer-events: none;
  }
  .auth-cta-text{ position: relative; }
  .auth-cta-text .sec-eyebrow{
    color: var(--gold); margin-bottom: 10px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Grotesk'; font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .auth-cta-text .sec-eyebrow::before{
    content: ''; width: 18px; height: 1px;
    background: var(--gold); display: inline-block;
  }
  .auth-cta-text p{
    color: #c8d3ee; font-size: 15px;
    max-width: 540px; margin: 0; line-height: 1.65;
  }
  .auth-cta-block .btn{ position: relative; flex-shrink: 0; }
  @media (max-width: 760px){
    .auth-cta-block{ padding: 28px 24px; }
    .auth-cta-block .btn{ width: 100%; justify-content: center; }
  }

  /* ── Notebook optimization: wide viewport, limited height (14"/15") ── */
  @media (min-width: 1024px) and (max-height: 900px){
    .hero-inner{
      padding-top: clamp(36px, 5vh, 56px);
      padding-bottom: clamp(38px, 5.5vh, 60px);
    }
    .hero h1{
      font-size: clamp(34px, 4.8vw, 56px);
      margin-top: 14px;
    }
    .hero-sub{ margin-top: 14px; }
    .pillars{ margin-top: 12px; }
    .hero-ctas{ margin-top: 20px; }
    .trust-row{ display: none; }
    .hero-card .big{ font-size: clamp(48px, 6.5vh, 78px); }
    .hero-bottombar-inner{ padding-top: 11px; padding-bottom: 11px; }
    section{ padding: clamp(40px, 5vw, 72px) 0; }
    .sec-head{ margin-bottom: 40px; }
    .stat{ min-height: 160px; }
    .service{ min-height: 260px; }
    .faq-section{ padding: 56px 0; }
    .reviews-head{ margin-bottom: 44px; }
    .about-grid{ gap: 36px; }
    .weg-grid{ gap: clamp(32px, 4vw, 52px); }
    .weg-panel-img{ aspect-ratio: 16 / 10; }
    .contact-top{ padding: 36px 0 24px; }
    .contact-grid{ padding-top: 32px; padding-bottom: 44px; }
  }

  /* ── Extra-compressed height: Chrome maximizado em Windows 125% (~750px viewport útil) ── */
  @media (min-width: 1024px) and (max-height: 820px){
    section{ padding: clamp(24px, 3.5vw, 48px) 0; }
    .sec-head{ margin-bottom: 28px; }
    .stat{ min-height: 140px; }
    .service{ min-height: 220px; }
    .faq-section{ padding: 40px 0; }
    .reviews-head{ margin-bottom: 28px; }
    .about-grid{ gap: 24px; }
    .weg-grid{ gap: 24px; }
    .weg-panel-img{ aspect-ratio: 16 / 8; }
    .contact-top{ padding: 20px 0 14px; }
    .contact-grid{ padding-top: 20px; padding-bottom: 28px; }
    section[id]{ scroll-margin-top: calc(56px - clamp(24px, 3.5vw, 48px)); }
    #contato{ scroll-margin-top: 36px; }
  }

  @media (max-width: 980px){
    .hero-inner{
      grid-template-columns: 1fr;
      padding-top: clamp(40px, 6vh, 64px);
    }
    .hero::after{ display:none; }
    .hero-card{ max-width: 600px; }
    .weg-panel-img{ aspect-ratio: 16 / 11; }
    .about-grid{ gap: 42px; }
  }

  /* ── Tablet intermediate ── */
  @media (max-width: 1024px) and (min-width: 769px){
    .sectors-grid{ grid-template-columns: repeat(2,1fr); }
    .reviews-grid{ grid-template-columns: repeat(2,1fr); }
    .foot-top{ grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 720px){
    :root{ --pad-x: clamp(18px, 5vw, 28px); }
    .hero h1{
      font-size: clamp(32px, 9.2vw, 38px);
      line-height:1.06;
      letter-spacing:-.028em;
    }
    .hero-break{ display:block; }
    .hero-sub{
      font-size: 16px;
      line-height:1.62;
    }
    .pillars{
      display:grid;
      grid-template-columns:1fr;
      gap: 8px;
    }
    .pillars .sep{ display:none; }
    .trust-row{
      display:grid;
      grid-template-columns:1fr;
    }
    .hero-bottombar-inner{
      display:grid;
      grid-template-columns:1fr;
      padding-left: var(--pad-x);
      padding-right: var(--pad-x);
    }
    .stats-grid{ grid-template-columns:1fr; }
    .stat{ min-height:auto; }
    .weg-ben{ grid-template-columns:1fr; }
    .weg-ben .b:nth-child(odd){ padding-right: 0; }
    .weg-ben .b:nth-child(even){ padding-left: 0; border-left: 0; }
    .weg-cred{ padding: 20px; }
    .weg-cred-bottom{
      align-items:flex-start;
      flex-direction:column;
      padding: 14px 20px;
      line-height:1.5;
    }
    .partners-grid{ grid-template-columns:1fr; }
    .sectors-grid{ grid-template-columns: repeat(2,1fr); }
    .about-meta{ grid-template-columns:1fr; }
    .foot-top{ grid-template-columns:1fr; }
    .final-cta .ctas .btn{ width:100%; justify-content:center; }
  }

  @media (max-width: 420px){
    .eyebrow,
    .sec-eyebrow{
      letter-spacing:.08em;
      font-size: 11px;
    }
    .hero-card .label{
      max-width: 190px;
    }
    .hero-card .big{
      font-size: 54px;
    }
    .reviews-stat .big{
      font-size: 52px;
    }
    .wa-fab{
      right: 16px;
      bottom: 16px;
    }
  }

  @media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
      animation-duration:.01ms !important;
      animation-iteration-count:1 !important;
      scroll-behavior:auto !important;
      transition-duration:.01ms !important;
    }
  }

  /* ── sectors 8-grid ── */
  .sectors-grid--8{ grid-template-columns: repeat(4, 1fr); }
  @media(max-width: 900px){ .sectors-grid--8{ grid-template-columns: repeat(2, 1fr); } }
  @media(max-width: 480px){ .sectors-grid--8{ grid-template-columns: 1fr 1fr; } }

  /* ── FAQ ── */
  .faq-section{ padding: 80px 0; background: var(--bg-alt); }
  .faq-grid{ display: flex; gap: 12px; margin-top: 40px; align-items: flex-start; }
  .faq-col{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
  .faq-item{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item[open]{ border-color: var(--blue); }
  .faq-q{
    padding: 18px 20px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    line-height: 1.45;
  }
  .faq-q::-webkit-details-marker{ display: none; }
  .faq-q::after{
    content: '+';
    font-size: 18px;
    font-weight: 400;
    color: var(--blue);
    flex-shrink: 0;
    line-height: 1;
    transition: transform .2s;
  }
  .faq-item[open] .faq-q::after{ transform: rotate(45deg); }
  .faq-a{
    padding: 0 20px 18px;
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.7;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  @media(max-width: 720px){
    .faq-grid{ flex-direction: column; }
  }

  /* ── gallery img: absolute fill, prevents CLS and overflow ── */
  .gallery-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
  }
  .gallery-img .gallery-overlay,
  .gallery-img .gallery-label { position: relative; z-index: 2; }

  /* ── sector placeholder backgrounds — each segment with a unique tint ── */
  .sector:nth-child(1) .pic { background: linear-gradient(135deg, #e5f5ee 0%, #cce8db 100%); }
  .sector:nth-child(1) .pic::after { border-color: rgba(0,120,60,0.2); }
  .sector:nth-child(2) .pic { background: linear-gradient(135deg, #e6ecf5 0%, #d4dff0 100%); }
  .sector:nth-child(3) .pic { background: linear-gradient(135deg, #f5f0e6 0%, #ece0cc 100%); }
  .sector:nth-child(4) .pic { background: linear-gradient(135deg, #ececf5 0%, #dcddf0 100%); }
  .sector:nth-child(5) .pic { background: linear-gradient(135deg, #f0e8f2 0%, #e4d4ea 100%); }
  .sector:nth-child(6) .pic { background: linear-gradient(135deg, #f5f0e6 0%, #ece0cc 100%); }
  .sector:nth-child(7) .pic { background: linear-gradient(135deg, #e6f2f5 0%, #cce4ec 100%); }
  .sector:nth-child(8) .pic { background: linear-gradient(135deg, #e5f5ee 0%, #cce8db 100%); }

  /* ── mobile hero CTAs: stack full-width below 520px ── */
  @media (max-width: 520px) {
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
  }

  /* ── mobile hero card: reduce padding and font on very small screens ── */
  @media (max-width: 400px) {
    .hero-card { padding: 20px 18px; }
    .hero-card .big { font-size: 52px; }
  }

  /* ── mobile sectors grid: force 2 columns even at narrow widths ── */
  @media (max-width: 420px) {
    .sectors-grid--8 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sector { padding: 18px 14px; }
    .sector h3 { font-size: 17px; }
  }

  /* ── WEG credential verify badge ── */
  .weg-verify {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 14px;
    font-size: 11.5px; color: rgba(255,255,255,.5);
    font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.06em;
  }
  .weg-verify svg { color: var(--green); flex-shrink: 0; }

  /* ── REGIONAL PAGES — template completo (Fase 3 + novas páginas) ── */

  /* nav */
  .rp-nav-back { background: #003087; border-bottom: 1px solid rgba(255,255,255,.12); padding: 12px 0; font-size: 13px; color: #fff; }
  .rp-nav-back-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .rp-nav-back a.logo { display: flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; }
  .rp-nav-back .cta { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none; }

  /* breadcrumb */
  .rp-breadcrumb { padding: 10px 0; font-size: 12.5px; color: rgba(255,255,255,.65); background: #002070; border-bottom: 1px solid rgba(255,255,255,.08); }
  .rp-breadcrumb a { color: inherit; text-decoration: none; }
  .rp-breadcrumb a:hover { color: #fff; }
  .rp-breadcrumb span { margin: 0 6px; opacity: .5; }

  /* hero */
  .rp-hero { padding: 72px 0 60px; background: linear-gradient(160deg, #003d9e, #003087, #001a4d); color: #fff; }
  .rp-hero-eyebrow, .rp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
  .rp-hero h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; font-family: 'Manrope', sans-serif; }
  .rp-hero h1 em { font-style: normal; color: var(--green); }
  .rp-hero-sub, .rp-hero > .container > p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 620px; margin-bottom: 32px; line-height: 1.7; }
  .rp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
  .rp-trust { display: flex; gap: 20px; flex-wrap: wrap; }
  .rp-trust span, .rp-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,.65); }
  .rp-trust svg, .rp-trust-item svg { color: var(--green); flex-shrink: 0; }

  /* services */
  .rp-services { padding: 72px 0; background: #003087; color: #fff; }
  .rp-grid, .rp-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
  .rp-card, .rp-service-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 24px; transition: border-color .2s, background .2s; }
  .rp-card:hover, .rp-service-card:hover { border-color: var(--green); background: rgba(255,255,255,.09); }
  .rp-card .ico, .rp-service-card .ico { width: 40px; height: 40px; background: rgba(0,166,81,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--green); }
  .rp-card h3, .rp-service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; font-family: 'Manrope', sans-serif; }
  .rp-card p, .rp-service-card p { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.6; margin-bottom: 14px; }
  .rp-card a, .rp-service-card a { font-size: 12.5px; font-weight: 600; color: var(--green); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }

  /* specs */
  .rp-specs { padding: 64px 0; background: #002070; border-top: 1px solid rgba(255,255,255,.08); color: #fff; }
  .rp-specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-top: 36px; }
  .rp-spec { display: flex; flex-direction: column; gap: 4px; }
  .rp-spec .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); font-family: 'Space Grotesk', sans-serif; }
  .rp-spec .val { font-size: 15px; font-weight: 700; }
  .rp-spec .desc { font-size: 13px; color: rgba(255,255,255,.62); }

  /* brands */
  .rp-marcas { padding: 48px 0; background: #002070; border-top: 1px solid rgba(255,255,255,.06); color: #fff; }
  .rp-marcas-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
  .rp-marca { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 12px 20px; font-weight: 700; font-size: 14px; }

  /* why section (WEG page) */
  .rp-why { padding: 64px 0; background: #001a4d; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.06); color: #fff; }
  .rp-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 36px; }
  .rp-why-item { display: flex; flex-direction: column; gap: 6px; }
  .rp-why-item .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); font-family: 'Space Grotesk', sans-serif; }
  .rp-why-item .val { font-size: 15px; font-weight: 700; }
  .rp-why-item .desc { font-size: 13px; color: rgba(255,255,255,.62); }

  /* faq */
  .rp-faq { padding: 64px 0; background: #001a4d; color: #fff; }
  .rp-faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
  .rp-faq details { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
  .rp-faq details[open] { border-color: var(--green); }
  .rp-faq summary { padding: 16px 18px; font-weight: 600; font-size: 14.5px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: #fff; font-family: 'Manrope', sans-serif; }
  .rp-faq summary::-webkit-details-marker { display: none; }
  .rp-faq summary::after { content: '+'; font-size: 18px; font-weight: 400; color: var(--green); flex-shrink: 0; transition: transform .2s; }
  .rp-faq details[open] summary::after { transform: rotate(45deg); }
  .rp-faq .ans { padding: 4px 18px 16px; font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.7; border-top: 1px solid rgba(255,255,255,.08); padding-top: 14px; }
  .rp-faq .ans a { color: var(--green); }

  /* cta final */
  .rp-cta-final, .rp-cta-section { padding: 72px 0; text-align: center; background: #002070; color: #fff; }
  .rp-cta-final h2, .rp-cta-section h2 { font-size: clamp(22px, 4vw, 34px); font-weight: 800; margin-bottom: 14px; font-family: 'Manrope', sans-serif; }
  .rp-cta-final p, .rp-cta-section p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* related / cross-links */
  .rp-related { padding: 48px 0; background: #1a2942; border-top: 1px solid rgba(255,255,255,.08); color: #fff; }
  .rp-related-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
  .rp-related-card { flex: 1; min-width: 200px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); padding: 18px 20px; text-decoration: none; color: #fff; display: flex; flex-direction: column; gap: 4px; transition: border-color .2s; }
  .rp-related-card:hover { border-color: var(--green); }
  .rp-related-card .rc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: 4px; }
  .rp-related-card .rc-title { font-size: 14px; font-weight: 700; }
  .rp-related-card .rc-desc { font-size: 12px; color: rgba(255,255,255,.55); }

  /* ---------- REVIEWS PREMIUM ---------- */
  #avaliacoes.reviews-premium {
    background: #f7f8fa;
    color: var(--ink);
  }

  #avaliacoes.reviews-premium .reviews-premium-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  #avaliacoes.reviews-premium .reviews-premium-head {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(36px, 5vw, 64px);
  }

  #avaliacoes.reviews-premium .reviews-premium-copy {
    min-width: 0;
  }

  #avaliacoes.reviews-premium .reviews-premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--blue);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  #avaliacoes.reviews-premium .reviews-premium-eyebrow::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--blue);
    flex: 0 0 auto;
  }

  #avaliacoes.reviews-premium .reviews-premium-title {
    margin: 24px 0 0;
    max-width: 780px;
    color: #071638;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
  }

  #avaliacoes.reviews-premium .reviews-premium-text {
    margin: 22px 0 0;
    max-width: 760px;
    color: #42506a;
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.62;
  }

  #avaliacoes.reviews-premium .reviews-premium-score {
    border-left: 1px solid #cfd7e6;
    padding-left: clamp(28px, 4vw, 52px);
    min-height: 150px;
    display: grid;
    align-content: center;
    justify-items: start;
  }

  #avaliacoes.reviews-premium .reviews-premium-score-main {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #071638;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(64px, 6.5vw, 88px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: 0;
  }

  #avaliacoes.reviews-premium .reviews-premium-score-star {
    color: #e3a019;
    font-size: .72em;
    line-height: 1;
  }

  #avaliacoes.reviews-premium .review-premium-stars {
    color: #e3a019;
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  #avaliacoes.reviews-premium .reviews-premium-score .review-premium-stars {
    margin-top: 18px;
    font-size: 26px;
  }

  #avaliacoes.reviews-premium .reviews-premium-score-label {
    margin-top: 18px;
    color: #42506a;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  #avaliacoes.reviews-premium .reviews-premium-button {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid var(--blue);
    border-radius: 8px;
    background: #fff;
    color: var(--blue);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 26px -22px rgba(0, 48, 135, .55);
    transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  }

  #avaliacoes.reviews-premium .reviews-premium-button:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 30px -22px rgba(0, 48, 135, .7);
  }

  #avaliacoes.reviews-premium .reviews-premium-google-mark {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
  }

  #avaliacoes.reviews-premium .reviews-carousel {
    overflow: hidden;
    position: relative;
  }

  #avaliacoes.reviews-premium .reviews-carousel-track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  #avaliacoes.reviews-premium .reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }

  #avaliacoes.reviews-premium .reviews-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfd7e6;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  #avaliacoes.reviews-premium .reviews-carousel-dot[aria-selected="true"] {
    background: var(--blue);
    transform: scale(1.3);
  }

  #avaliacoes.reviews-premium .review-premium-card {
    position: relative;
    min-width: 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(22px, 2.2vw, 30px);
    background: #fff;
    border: 1px solid #dde3ee;
    border-radius: 18px;
    box-shadow: 0 20px 45px -34px rgba(0, 26, 77, .42);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  }

  #avaliacoes.reviews-premium .review-premium-card:hover {
    border-color: rgba(0, 48, 135, .28);
    box-shadow: 0 24px 52px -34px rgba(0, 26, 77, .55);
    transform: translateY(-2px);
  }

  #avaliacoes.reviews-premium .review-premium-header {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
  }

  #avaliacoes.reviews-premium .review-premium-avatar {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #0053b8);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  }

  #avaliacoes.reviews-premium .review-premium-card:nth-child(even) .review-premium-avatar {
    background: linear-gradient(135deg, #178577, #0a6a5e);
  }

  #avaliacoes.reviews-premium .review-premium-info {
    min-width: 0;
    flex: 1;
  }

  #avaliacoes.reviews-premium .review-premium-info h3 {
    margin: 0;
    color: #071638;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
  }

  #avaliacoes.reviews-premium .review-premium-info p {
    margin: 5px 0 0;
    color: #52607a;
    font-size: 14px;
    line-height: 1.35;
  }

  #avaliacoes.reviews-premium .review-premium-google {
    flex: 0 0 auto;
    display: block;
    width: 30px;
    height: 30px;
    padding: 4px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0 8px 20px -16px rgba(0, 26, 77, .45);
  }

  #avaliacoes.reviews-premium .review-premium-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  #avaliacoes.reviews-premium .review-premium-time {
    color: #52607a;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }

  #avaliacoes.reviews-premium .review-premium-quote {
    margin: 0;
    flex: 1;
    color: #071638;
    font-size: 15.5px;
    line-height: 1.65;
  }

  #avaliacoes.reviews-premium .review-premium-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    max-width: 100%;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(0, 48, 135, .28);
    border-radius: 7px;
    background: #f9fbff;
    color: var(--blue);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
  }

  #avaliacoes.reviews-premium .reviews-premium-trust {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid #dde3ee;
    color: #52607a;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  @media (prefers-reduced-motion: reduce) {
    #avaliacoes.reviews-premium .reviews-carousel-track {
      transition: none;
    }
  }

  @media (max-width: 900px) {
    #avaliacoes.reviews-premium .reviews-premium-head {
      grid-template-columns: 1fr;
    }

    #avaliacoes.reviews-premium .reviews-premium-score {
      border-left: 0;
      border-top: 1px solid #cfd7e6;
      padding-left: 0;
      padding-top: 28px;
    }
  }

  @media (max-width: 720px) {
    #avaliacoes.reviews-premium .reviews-premium-title {
      font-size: clamp(32px, 9vw, 42px);
    }

    #avaliacoes.reviews-premium .reviews-premium-score-main {
      font-size: clamp(56px, 18vw, 72px);
    }

    #avaliacoes.reviews-premium .reviews-premium-button {
      width: 100%;
    }
  }

  @media (max-width: 420px) {
    #avaliacoes.reviews-premium .review-premium-card {
      min-height: 0;
    }

    #avaliacoes.reviews-premium .review-premium-header {
      align-items: flex-start;
    }

    #avaliacoes.reviews-premium .review-premium-rating {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  /* Anchored sections: immediately visible if JS hasn't fired yet */
  @media (scripting: none){
    .reveal{ opacity:1; transform:none; }
  }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     BLOG — índice + artigos técnicos
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

  /* blog nav */
  .blog-nav { background: #003087; border-bottom: 1px solid rgba(255,255,255,.12); padding: 12px 0; font-size: 13px; color: #fff; }
  .blog-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .blog-nav a.logo { display: flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; }
  .blog-nav-links { display: flex; align-items: center; gap: 20px; }
  .blog-nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); text-decoration: none; transition: color .15s; }
  .blog-nav-links a:hover { color: #fff; }
  .blog-nav .cta { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none; }

  /* blog breadcrumb */
  .blog-breadcrumb { padding: 10px 0; font-size: 12.5px; color: var(--ink-2); background: #f0f4fa; border-bottom: 1px solid var(--line); }
  .blog-breadcrumb a { color: inherit; text-decoration: none; }
  .blog-breadcrumb a:hover { color: var(--blue); }
  .blog-breadcrumb span { margin: 0 6px; opacity: .5; }

  /* blog index — hero */
  .blog-index-hero { padding: 64px 0 52px; background: linear-gradient(160deg, #003d9e, #003087, #001a4d); color: #fff; }
  .blog-index-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 14px; font-family: 'Manrope', sans-serif; }
  .blog-index-hero p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 600px; line-height: 1.7; }
  .blog-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif; }

  /* blog index — grid */
  .blog-list-sec { padding: 64px 0; background: var(--bg-alt); }
  .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
  .blog-card { background: #fff; border: 1px solid var(--line); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s, box-shadow .2s; text-decoration: none; color: var(--ink); }
  .blog-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,48,135,.07); }
  .blog-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-family: 'Space Grotesk', sans-serif; }
  .blog-card-title { font-size: 17px; font-weight: 700; line-height: 1.3; font-family: 'Manrope', sans-serif; color: var(--ink); }
  .blog-card-excerpt { font-size: 14px; color: var(--ink-2); line-height: 1.65; flex: 1; }
  .blog-card-meta { font-size: 11.5px; color: var(--ink-2); font-family: 'Space Grotesk', sans-serif; }
  .blog-card-read { font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; }

  /* article header */
  .article-header { padding: 64px 0 52px; background: linear-gradient(160deg, #003d9e, #003087, #001a4d); color: #fff; }
  .article-header h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.18; margin-bottom: 18px; font-family: 'Manrope', sans-serif; max-width: 820px; }
  .article-header-excerpt { font-size: 17px; color: rgba(255,255,255,.8); max-width: 680px; line-height: 1.7; margin-bottom: 28px; }
  .article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .article-meta span { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,.6); font-family: 'Space Grotesk', sans-serif; }
  .article-meta svg { color: var(--green); flex-shrink: 0; }

  /* article body layout */
  .article-body-wrap { padding: 64px 0; background: #fff; }
  .article-layout { display: grid; grid-template-columns: 1fr 288px; gap: 64px; align-items: start; }
  .article-body { min-width: 0; }
  .article-body h2 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; font-family: 'Manrope', sans-serif; color: var(--ink); margin: 44px 0 16px; line-height: 1.25; padding-top: 4px; border-top: 2px solid var(--line); }
  .article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
  .article-body h3 { font-size: 17px; font-weight: 700; font-family: 'Manrope', sans-serif; color: var(--ink); margin: 28px 0 10px; }
  .article-body p { font-size: 16px; color: var(--ink-2); line-height: 1.8; margin-bottom: 18px; }
  .article-body ul, .article-body ol { margin: 0 0 20px 22px; }
  .article-body li { font-size: 16px; color: var(--ink-2); line-height: 1.75; margin-bottom: 8px; }
  .article-body strong { color: var(--ink); font-weight: 600; }
  .article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
  .article-body a:hover { color: var(--blue-deep); }

  /* mid-article CTA box */
  .article-cta-box { background: #eef2f8; border-left: 3px solid var(--blue); padding: 24px 28px; margin: 44px 0; }
  .article-cta-box .box-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-family: 'Space Grotesk', sans-serif; margin-bottom: 10px; }
  .article-cta-box h3 { font-size: 17px; font-weight: 800; font-family: 'Manrope', sans-serif; color: var(--ink); margin-bottom: 8px; }
  .article-cta-box p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 18px; line-height: 1.65; }

  /* article sidebar */
  .article-sidebar { position: sticky; top: 88px; }
  .sidebar-card { background: var(--bg-alt); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
  .sidebar-card .sidebar-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-family: 'Space Grotesk', sans-serif; margin-bottom: 12px; }
  .sidebar-card h3 { font-size: 15px; font-weight: 700; font-family: 'Manrope', sans-serif; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
  .sidebar-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 16px; }
  .sidebar-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .sidebar-links li a { font-size: 13.5px; font-weight: 600; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 6px; }
  .sidebar-links li a::before { content: '→'; font-size: 12px; opacity: .7; }
  .sidebar-links li a:hover { color: var(--blue-deep); }

  /* article FAQ */
  .article-faq { padding: 56px 0; background: var(--bg-alt); }

  /* article CTA final */
  .article-cta-final { padding: 72px 0; text-align: center; background: #003087; color: #fff; }
  .article-cta-final h2 { font-size: clamp(22px, 4vw, 32px); font-weight: 800; font-family: 'Manrope', sans-serif; margin-bottom: 14px; }
  .article-cta-final p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 520px; margin: 0 auto 32px; line-height: 1.65; }
  .article-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* article related */
  .article-related { padding: 48px 0; background: #1a2942; color: #fff; }
  .article-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 24px; }
  .article-related-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); padding: 20px; text-decoration: none; color: #fff; transition: border-color .2s; display: flex; flex-direction: column; gap: 8px; }
  .article-related-card:hover { border-color: var(--green); }
  .article-related-card .rel-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); font-family: 'Space Grotesk', sans-serif; }
  .article-related-card .rel-title { font-size: 14px; font-weight: 700; font-family: 'Manrope', sans-serif; line-height: 1.3; }
  .article-related-card .rel-desc { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.5; }

  /* blog responsive */
  @media (max-width: 980px) {
    .article-layout { grid-template-columns: 1fr; gap: 40px; }
    .article-sidebar { position: static; }
  }
  @media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-nav-links { display: none; }
    .article-header { padding: 48px 0 36px; }
    .article-body-wrap { padding: 48px 0; }
    .article-cta-box { padding: 20px; }
  }
