 html {
      scroll-behavior: smooth;    }

/* ── Tokens ── */
    :root {
      --navy:   #0f1e3c;
      --gold:   #e8a820;
      --gold-lt:#f5c842;
      --white:  #ffffff;
      --off:    #f5f4f0;
      --muted:  #6b7280;
      --radius: 14px;
      --shadow: 0 8px 32px rgba(15,30,60,.10);
    }

   

    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--navy); background: var(--white); }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ════ HEADER ════ */
    header {
      position: sticky; top: 0; z-index: 100;
      background: linear-gradient(90deg, var(--navy) 0%, #1a3260 100%);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 68px;
      box-shadow: 0 2px 16px rgba(0,0,0,.25);
    }
    .logo { display: flex; align-items: center; gap: 10px; max-width: 12em; margin-top: 5px; }
  
    
    nav { display: flex; align-items: center; gap: 8px; }
    nav a {
      font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500;
      color: rgba(255,255,255,.78); padding: 6px 14px; border-radius: 6px;
      transition: color .2s, background .2s;
    }
    nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
    .btn-portal {
      margin-left: 16px;
      background: var(--gold); color: var(--navy) !important;
      font-weight: 700 !important; padding: 8px 20px !important;
      border-radius: 8px !important; font-size: .88rem !important;
    }
    .btn-portal:hover { background: var(--gold-lt) !important; }

    /* ── Hamburger ── */
    .hamburger {
      display: none;
      flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile drawer ── */
    .nav-drawer {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0;
      background: linear-gradient(180deg, #1a3260 0%, var(--navy) 100%);
      padding: 16px 24px 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,.3);
      z-index: 99; flex-direction: column; gap: 4px;
    }
    .nav-drawer.open { display: flex; }
    .nav-drawer a {
      font-size: 1rem; font-weight: 500;
      color: rgba(255,255,255,.82); padding: 12px 16px; border-radius: 8px;
      transition: background .2s, color .2s;
    }
    .nav-drawer a:hover { background: rgba(255,255,255,.08); color: var(--white); }
    .nav-drawer .btn-portal {
      margin-left: 0 !important; margin-top: 8px !important; text-align: center;
    }

    /* ════ HERO ════ */
    .hero {
      display: grid; grid-template-columns: 1fr 1.2fr;
      align-items: center; gap: 48px;
      max-width: 1400px; margin: 0 auto;
      padding: 72px 48px 64px;
    }
    .hero-text h1 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
      line-height: 1.15; margin-bottom: 20px;
    }
    .hero-text h1 span { color: var(--gold); }
    .hero-text p {
      font-size: 1rem; color: var(--muted); line-height: 1.7;
      max-width: 420px; margin-bottom: 32px;
    }
    .hero-actions { display: flex; flex-direction: column; gap: 16px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--navy);
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .95rem;
      padding: 14px 28px; border-radius: 10px; width: fit-content;
      box-shadow: 0 4px 18px rgba(232,168,32,.35);
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .whatsapp-link {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .92rem; font-weight: 500; color: var(--navy);
    }
    .whatsapp-link .wa-icon {
      width: 34px; height: 34px; background: #25d366;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .whatsapp-link .wa-icon svg { width: 18px; height: 18px; fill: white; }

.hero-img {
  width: 100%;
  height: 100%;
  max-width: 700px;
  border-radius: 20px;
  border: 6px solid transparent;
  background:
  linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #0f3057, #214a60) border-box;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15)
}

    /*.hero-img {
      border-radius: 20px; border: 3px solid var(--gold);
      box-shadow: var(--shadow);
      aspect-ratio: 4/3; object-fit: cover; width: 100%; max-height: 420px;
    }*/

    /* ════ AUDIENCE ════ */
    .audience {
      background: var(--off);
      padding: 64px 24px;
      text-align: center;
    }
    .section-label {
      display: block; font-size: .75rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Sora', sans-serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 700; color: var(--navy); margin-bottom: 36px;
    }
    .chips {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
      max-width: 700px; margin: 0 auto;
    }
    .chip {
      background: var(--white); border: 1.5px solid #e2e5ec;
      padding: 12px 24px; border-radius: 50px;
      font-size: .9rem; font-weight: 500; color: var(--navy);
      box-shadow: 0 2px 8px rgba(0,0,0,.05);
      transition: border-color .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .chip:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(232,168,32,.18); }

    /* ════ BENEFITS ════ */
    .benefits-outer {
      background: var(--off); padding: 64px 48px;
    }
    .benefits-wrapper {
      background: var(--white);
      box-shadow: -8px 0 0 0 var(--gold), 0 8px 48px rgba(0,0,0,.13);
      border-radius: var(--radius);
      max-width: 1064px; margin: 0 auto;
    }
    .benefits {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 56px; padding: 56px 48px;
    }
    .benefits-text h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700;
      line-height: 1.25; margin-bottom: 8px;
    }
    .benefits-text .sub { color: var(--muted); font-size: .95rem; margin-bottom: 32px; }
    .benefit-card {
      background: var(--gold); border-radius: var(--radius);
      padding: 16px 22px; margin-bottom: 12px;
      font-family: 'Sora', sans-serif; font-weight: 600; font-size: .95rem;
      color: var(--navy); display: flex; align-items: center; gap: 10px;
      box-shadow: 0 4px 14px rgba(232,168,32,.25);
    }
    .benefit-card .check {
      width: 22px; height: 22px; background: var(--navy);
      border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .benefit-card .check svg { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 2.5; fill: none; }
    .benefits-img {
      border-radius: 16px; border: 3px solid var(--navy);
      box-shadow: var(--shadow);
      aspect-ratio: 4/3; object-fit: cover; width: 100%; max-height: 340px;
    }

    /* ════ SERVICES ════ */
    .services { padding: 72px 48px; text-align: center; }
    .service-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
      max-width: 1060px; margin: 0 auto;
    }
    .service-card {
      background: var(--white); border: 1.5px solid #e2e5ec;
      border-radius: var(--radius); padding: 28px 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,.05);
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .service-card:hover {
      border-color: var(--gold); transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(232,168,32,.15);
    }
    .service-icon {
      width: 46px; height: 46px; background: var(--gold);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .service-icon svg { width: 22px; height: 22px; stroke: var(--navy); stroke-width: 2; fill: none; }
    .service-card h3 {
      font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy);
    }

    /* ════ FOOTER ════ */
    footer {
      background: var(--navy); padding: 60px 48px 0; color: rgba(255,255,255,.65);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
      gap: 48px; max-width: 1160px; margin: 0 auto; padding-bottom: 48px;
    }
    .footer-brand p { font-size: .88rem; line-height: 1.65; margin-top: 10px; color: rgba(255,255,255,.5); }
    footer h4 {
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .8rem;
      letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
    }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .2s; }
    footer ul li a:hover { color: var(--white); }
    footer ul li span { font-size: .9rem; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 18px 0; max-width: 1160px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      font-size: .8rem; color: rgba(255,255,255,.35);
    }
    .footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
    .footer-bottom a:hover { color: var(--gold); }
    .footer-legal { display: flex; gap: 20px; }

    /* ════ RESPONSIVE ════ */
    @media (max-width: 960px) {
      header { padding: 0 24px; }
      header nav { display: none; }
      .hamburger { display: flex; }
      .hero { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
      .hero-img { order: -1; max-height: 260px; max-height: 70vh;}
      .hero-text p { max-width: 100%; }
      .audience { padding: 48px 24px; }
      .benefits-outer { padding: 48px 24px; }
      .benefits { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
      .benefits-img { order: -1; max-height: 220px; }
      .services { padding: 52px 24px; }
      .service-grid { grid-template-columns: 1fr 1fr; }
      footer { padding: 48px 24px 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; padding-bottom: 32px; }
    }

    @media (max-width: 560px) {
      .hero-img { max-height: 200px; max-height: 60vh; }
      .benefits-img { max-height: 180px; }
      .chip { padding: 10px 16px; font-size: .85rem; }
      .service-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }