    :root {
      color-scheme: dark;
      --bg: #03060d;
      --bg-2: #07111f;
      --surface: rgba(10, 16, 29, 0.86);
      --surface-2: rgba(15, 22, 39, 0.72);
      --surface-3: rgba(255, 255, 255, 0.045);
      --line: rgba(255, 255, 255, 0.10);
      --line-strong: rgba(95, 179, 249, 0.22);
      --text: #f7f9fb;
      --muted: #aab4c3;
      --blue: #5fb3f9;
      --magenta: #ee6fc0;
      --max: 1280px;
      --radius: 12px;
      --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      --display: "Hanken Grotesk", Inter, system-ui, sans-serif;
      --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    @media (prefers-reduced-motion: no-preference) {
      html { scroll-behavior: smooth; }
    }
    a:focus-visible, button:focus-visible, select:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
    }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: var(--body);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    img { max-width: 100%; display: block; }

    .site {
      min-height: 100vh;
      background:
        radial-gradient(circle at 85% 12%, rgba(95, 179, 249, .12), transparent 30%),
        radial-gradient(circle at 90% 60%, rgba(238, 111, 192, .09), transparent 26%),
        linear-gradient(180deg, #02040a 0%, #040914 58%, #03060d 100%);
    }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin-inline: auto;
    }

    .topbar {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 30;
      background: rgba(3, 6, 13, .78);
      border-bottom: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(18px);
    }

    .nav {
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand { display: inline-flex; align-items: center; gap: 14px; min-width: max-content; }
    .brand-logo {
      width: 48px; height: 48px;
      object-fit: contain;
      border-radius: 8px;
      background: #000;
      padding: 4px;
      border: 1px solid rgba(255,255,255,.08);
    }
    .brand-name {
      white-space: nowrap;
      font-family: var(--display);
      letter-spacing: -.015em;
      font-weight: 800;
      font-size: 19px;
      color: var(--text);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-family: var(--mono);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(247,249,251,.78);
    }
    .nav-links a { transition: color .2s ease; }
    .nav-links a:hover { color: var(--blue); }
    .nav-links a.active { color: var(--blue); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      cursor: pointer;
      border-radius: 10px;
      padding: 14px 22px;
      font-family: var(--mono);
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: 12px;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #ffffff;
      background: linear-gradient(135deg, var(--magenta), #d85bab);
      box-shadow: 0 14px 32px rgba(238, 111, 192, .16);
    }
    .btn-primary:hover { box-shadow: 0 18px 40px rgba(238, 111, 192, .22); }
    .btn-secondary {
      color: var(--blue);
      background: rgba(95, 179, 249, .04);
      border: 1px solid rgba(95, 179, 249, .38);
    }
    .btn-secondary:hover { border-color: rgba(95,179,249,.6); background: rgba(95,179,249,.09); }
    .mobile-menu {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px; height: 44px;
      background: transparent;
      color: white;
      border: 0;
      border-radius: 8px;
      font-size: 26px;
      cursor: pointer;
    }
    .mobile-menu:hover { background: rgba(255,255,255,.06); }

    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--bg);
      isolation: isolate;
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right 15%;
      z-index: -3;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(90deg, rgba(3,6,13,.99) 0%, rgba(3,6,13,.95) 32%, rgba(3,6,13,.70) 55%, rgba(3,6,13,.22) 100%),
        linear-gradient(180deg, rgba(3,6,13,.12) 0%, rgba(3,6,13,.86) 100%);
      pointer-events: none;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 58%, rgba(95,179,249,.12), transparent 24%),
        linear-gradient(180deg, transparent 70%, var(--bg) 100%);
      pointer-events: none;
      z-index: -1;
    }
    .hero-grid {
      position: relative;
      padding-top: 108px;
      padding-bottom: 78px;
      display: grid;
      grid-template-columns: minmax(0, 680px) 1fr;
      gap: 40px;
    }
    .hero-content { max-width: 700px; }
    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      border-radius: 999px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .eyebrow-dot {
      width: 8px; height: 8px;
      background: var(--magenta);
      border-radius: 999px;
      box-shadow: 0 0 12px rgba(238,111,192,.35);
    }
    h1, h2, h3 { font-family: var(--display); margin: 0; line-height: 1.05; letter-spacing: -.035em; }
    .hero h1 {
      font-size: clamp(44px, 5.1vw, 72px);
      font-weight: 900;
      line-height: 1.03;
      letter-spacing: -.028em;
      max-width: 720px;
      color: #ffffff;
    }
    .hero h1 .line { display: block; }
    .hero h1 .accent {
      display: block;
      color: var(--blue);
      text-shadow: 0 0 18px rgba(95,179,249,.14);
    }
    .hero-copy {
      margin: 22px 0 0;
      max-width: 620px;
      color: #c5cdda;
      font-size: clamp(17px, 1.45vw, 20px);
      line-height: 1.65;
    }
    .hero-copy strong { color: #ffffff; font-weight: 650; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 700px;
      margin-top: 42px;
    }
    .metric {
      padding: 18px;
      border-radius: 10px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.10);
      backdrop-filter: blur(12px);
    }
    .metric strong {
      display: block;
      color: var(--text);
      font-family: var(--display);
      font-size: 30px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .metric span {
      display: block;
      color: var(--muted);
      font-family: var(--mono);
      font-size: 11px;
      line-height: 1.45;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .quick-track {
      position: absolute;
      right: 32px;
      top: 128px;
      width: min(420px, calc(100% - 64px));
      padding: 22px;
      border-radius: 14px;
      background: rgba(7, 12, 22, .5);
      border: 1px solid rgba(255,255,255,.15);
      backdrop-filter: blur(10px);
      box-shadow: 0 24px 72px rgba(0,0,0,.36);
    }
    .quick-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 14px; }
    .track-title { display: flex; align-items: center; gap: 11px; min-width: 0; }
    .track-icon {
      width: 34px; height: 34px;
      display: inline-grid;
      place-items: center;
      border-radius: 8px;
      color: var(--text);
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.14);
      flex: 0 0 auto;
    }
    .track-icon svg { width: 21px; height: 21px; }
    .quick-head h3 { font-size: 16px; letter-spacing: -.02em; }
    .track-copy {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      margin: 0 0 16px;
    }
    .quick-track .btn { width: 100%; }
    input, textarea, select {
      width: 100%;
      color: var(--text);
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      padding: 14px 14px;
      outline: none;
      color-scheme: dark;
    }
    select option { background-color: #0b1220; color: #f7f9fb; }
    input::placeholder, textarea::placeholder { color: rgba(170,180,195,.55); }
    input:focus, textarea:focus, select:focus { border-color: rgba(95,179,249,.55); box-shadow: 0 0 0 4px rgba(95,179,249,.08); }
    button:disabled, input:disabled, select:disabled { cursor: not-allowed; opacity: .6; }

    section { position: relative; }
    .section-pad { padding: 68px 0; }
    .section-head {
      max-width: 640px;
      margin-bottom: 34px;
    }
    .section-kicker {
      display: inline-flex;
      color: var(--muted);
      font-family: var(--mono);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .14em;
      margin-bottom: 12px;
    }
    .section-head h2 { font-size: clamp(34px, 4vw, 54px); font-weight: 850; margin-bottom: 14px; }
    .section-copy { color: var(--muted); margin: 0; font-size: 17px; max-width: 560px; }

    .services-band {
      background:
        radial-gradient(circle at 92% 15%, rgba(238,111,192,.035), transparent 27%),
        radial-gradient(circle at 9% 75%, rgba(95,179,249,.05), transparent 29%),
        #040814;
      border-block: 1px solid rgba(255,255,255,.06);
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
    }
    .service-grid.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-card {
      position: relative;
      min-height: 340px;
      padding: 30px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025)),
        rgba(10,17,31,.74);
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }
    .service-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
      opacity: .5;
    }
    .service-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.22); background: rgba(12,20,36,.84); }
    .card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
    .icon-box {
      width: 58px; height: 58px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: var(--text);
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
    }
    .icon-box svg,
    .track-icon svg,
    .whatsapp-float svg,
    .trust-icon svg,
    .footer-icons svg {
      display: block;
      fill: none;
      stroke: currentColor;
      vector-effect: non-scaling-stroke;
    }
    .tag {
      padding: 7px 12px;
      border-radius: 999px;
      color: rgba(247,249,251,.54);
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.07);
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .service-card h3 { font-size: 25px; line-height: 1.15; margin-bottom: 14px; font-weight: 850; }
    .service-card p { color: var(--muted); font-size: 17px; margin: 0 0 26px; }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--text);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: -.01em;
      transition: color .18s ease;
    }
    .service-link:hover { color: var(--blue); }
    .service-link svg { transition: transform .18s ease; }
    .service-link:hover svg { transform: translateX(4px); }

    .trust-strip { padding: 40px 0; }
    .trust-strip-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.025);
      border-radius: 12px;
      overflow: hidden;
    }
    .trust-item { display: flex; align-items: center; gap: 16px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.07); }
    .trust-item:last-child { border-right: 0; }
    .trust-icon {
      width: 48px; height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.12);
      color: var(--text);
      flex: 0 0 auto;
    }
    .trust-icon svg { width: 24px; height: 24px; }
    .trust-text strong { display: block; font-family: var(--display); font-size: 28px; line-height: 1; color: var(--text); }
    .trust-text span { display: block; margin-top: 6px; color: var(--muted); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

    .cert-band {
      background:
        radial-gradient(circle at 12% 20%, rgba(95,179,249,.05), transparent 26%),
        radial-gradient(circle at 88% 78%, rgba(238,111,192,.04), transparent 24%),
        #03060d;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .cert-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }
    .cert-card {
      padding: 30px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
        rgba(10,17,31,.74);
      border: 1px solid rgba(95,179,249,.16);
    }
    .cert-card .icon-box { margin-bottom: 20px; }
    .cert-card h3 { font-size: 21px; margin-bottom: 10px; }
    .cert-card p { color: var(--muted); font-size: 15px; margin: 0; }
    .trust-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
    .trust-tags .tag { transition: border-color .18s ease, background .18s ease, color .18s ease; }
    .trust-tags .tag:hover { border-color: rgba(95,179,249,.4); background: rgba(95,179,249,.09); color: var(--text); }

    .quote-section { padding: 72px 0; background: #040814; }
    .quote-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr); gap: 56px; align-items: center; }
    .quote-copy h2 { font-size: clamp(34px, 4.5vw, 58px); max-width: 620px; }
    .proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 30px; max-width: 580px; }
    .proof { padding: 18px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
    .proof strong { display: block; color: var(--text); font-family: var(--display); font-size: 22px; margin-bottom: 4px; }
    .proof span { color: var(--muted); font-size: 14px; }
    .quote-card {
      padding: 28px;
      border-radius: 14px;
      background: rgba(13,21,35,.84);
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: 0 24px 86px rgba(0,0,0,.28);
    }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .field { display: flex; flex-direction: column; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    .form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .form-actions .btn { flex: 1; min-width: 200px; }
    .toggle-group { display: flex; gap: 8px; }
    .toggle-option {
      flex: 1;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-family: var(--mono);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-weight: 700;
      cursor: pointer;
      transition: border-color .18s ease, background .18s ease, color .18s ease;
    }
    .toggle-option.active { border-color: rgba(95,179,249,.5); background: rgba(95,179,249,.12); color: var(--text); }
    label { display: flex; align-items: center; gap: 6px; color: var(--muted); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .10em; }
    .field-check { display: inline-flex; color: var(--blue); opacity: 0; transform: scale(.6); transition: opacity .15s ease, transform .15s ease; }
    .field-check.visible { opacity: 1; transform: scale(1); }
    .form-status { display: none; grid-column: 1 / -1; margin: 0; padding: 13px 16px; border-radius: 10px; font-size: 14px; line-height: 1.5; }
    .form-status.visible { display: block; }
    .form-status.ok { color: #bfe3ff; background: rgba(95,179,249,.10); border: 1px solid rgba(95,179,249,.35); }
    .form-status.error { color: #ffd7ee; background: rgba(238,111,192,.10); border: 1px solid rgba(238,111,192,.35); }
    textarea { min-height: 104px; resize: vertical; }

    .footer {
      background: #000000;
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 48px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .65fr .75fr .75fr;
      gap: 60px;
      align-items: start;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
    .footer-brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 8px; background: #000; }
    .footer-brand strong { font-family: var(--display); font-weight: 900; font-size: 26px; line-height: 1.05; letter-spacing: -.03em; }
    .footer-about { color: var(--muted); max-width: 420px; margin: 0; font-size: 18px; }
    .footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
    .footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: rgba(247,249,251,.82); font-family: var(--mono); font-size: 14px; letter-spacing: .02em; transition: color .18s ease; }
    .footer-contact a:hover { color: var(--blue); }
    .footer-contact svg { flex: 0 0 auto; width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
    .footer-col h4 {
      margin: 0 0 18px;
      color: #fff;
      font-family: var(--mono);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .footer-col a {
      display: block;
      color: rgba(247,249,251,.82);
      font-family: var(--mono);
      font-size: 15px;
      letter-spacing: .03em;
      margin: 13px 0;
      transition: color .18s ease;
    }
    .footer-col a:hover { color: var(--blue); }
    .footer-soon { display: block; color: rgba(247,249,251,.38); font-family: var(--mono); font-size: 15px; letter-spacing: .03em; margin: 13px 0; cursor: default; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding-top: 26px;
      color: rgba(247,249,251,.70);
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: .04em;
    }
    .credit-link { color: rgba(247,249,251,.42); text-decoration: none; transition: color .18s ease; }
    .credit-link:hover { color: rgba(247,249,251,.72); }
    .footer-icons { display: flex; gap: 14px; color: rgba(247,249,251,.72); }
    .footer-icons a {
      display: inline-grid; place-items: center;
      width: 38px; height: 38px;
      border-radius: 8px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(247,249,251,.72);
      transition: color .18s ease, border-color .18s ease, background .18s ease;
    }
    .footer-icons a:hover { color: var(--blue); border-color: rgba(95,179,249,.42); background: rgba(95,179,249,.08); }
    .footer-icons svg { width: 18px; height: 18px; }

    .cargo-band {
      background:
        radial-gradient(circle at 12% 18%, rgba(95,179,249,.065), transparent 25%),
        radial-gradient(circle at 86% 72%, rgba(238,111,192,.045), transparent 24%),
        #03060d;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .cargo-card .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: grid;
      gap: 10px;
      color: rgba(247,249,251,.78);
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: .02em;
    }
    .cargo-card .feature-list li { display: flex; align-items: center; gap: 9px; }
    .cargo-card .feature-list li::before {
      content: "";
      width: 7px; height: 7px;
      border-radius: 999px;
      background: rgba(247,249,251,.55);
      flex: 0 0 auto;
    }
    .whatsapp-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 60;
      width: 58px; height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(5,10,20,.90);
      color: #fff;
      border: 1px solid rgba(95,179,249,.24);
      box-shadow: 0 18px 48px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.045);
      backdrop-filter: blur(16px);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      overflow: hidden;
    }
    .whatsapp-float::before {
      content: "";
      position: absolute;
      right: 12px;
      top: 10px;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--magenta);
      box-shadow: 0 0 12px rgba(238,111,192,.35);
    }
    .whatsapp-float:hover {
      transform: translateY(-3px);
      border-color: rgba(95,179,249,.46);
      background: rgba(7,14,28,.94);
    }
    .whatsapp-float svg { width: 24px; height: 24px; }

    .page-hero {
      padding: 150px 0 64px;
      background:
        radial-gradient(circle at 85% 10%, rgba(95,179,249,.10), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(238,111,192,.06), transparent 28%),
        var(--bg);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .page-hero .section-head { max-width: 760px; margin-bottom: 0; }
    .logo-reveal {
      display: flex;
      justify-content: center;
      margin: 0 0 36px;
    }
    .logo-reveal .logo-reveal-frame {
      width: min(220px, 50vw);
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
    }
    .logo-reveal video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.18);
    }
    .about-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 60px; align-items: start; }
    .about-copy p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
    .about-copy p:last-child { margin-bottom: 0; }
    .about-copy strong { color: var(--text); }
    .value-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
    .value-item { display: flex; gap: 16px; align-items: flex-start; }
    .value-item .icon-box { flex: 0 0 auto; width: 48px; height: 48px; }
    .value-item .icon-box svg { width: 22px; height: 22px; }
    .value-item h3 { font-size: 18px; margin-bottom: 6px; }
    .value-item p { color: var(--muted); font-size: 15px; margin: 0; }
    .segment-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
    .segment-card { padding: 26px; border-radius: var(--radius); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.10); }
    .segment-card h3 { font-size: 19px; margin-bottom: 10px; }
    .segment-card p { color: var(--muted); font-size: 15px; margin: 0; }

    .photo-feature { margin: 0 0 56px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.10); }
    .photo-feature picture { display: block; position: relative; }
    .photo-feature img { width: 100%; max-height: 460px; object-fit: cover; display: block; filter: saturate(.68) contrast(1.12) brightness(.93); }
    .photo-feature picture::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(150deg, rgba(6,12,24,.5), rgba(95,179,249,.14));
      mix-blend-mode: soft-light;
      pointer-events: none;
    }
    .photo-feature figcaption { padding: 16px 20px; background: rgba(255,255,255,.03); color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: .04em; }

    .proof-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
    .proof-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.10); transition: transform .22s ease, border-color .22s ease; }
    .proof-photo:hover { transform: translateY(-5px); border-color: rgba(95,179,249,.32); }
    .proof-photo picture { display: block; overflow: hidden; position: relative; }
    .proof-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; filter: saturate(.68) contrast(1.12) brightness(.93); transition: transform .4s ease, filter .3s ease; }
    .proof-photo picture::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(150deg, rgba(6,12,24,.5), rgba(95,179,249,.14));
      mix-blend-mode: soft-light;
      pointer-events: none;
    }
    .proof-photo:hover img { transform: scale(1.06); filter: saturate(.68) contrast(1.14) brightness(.8); }
    .operacion-band { padding: 44px 0; }
    .proof-gallery.compact { max-width: 1020px; margin-inline: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .proof-gallery.compact .proof-photo img { aspect-ratio: 16 / 10; }
    .proof-gallery.compact .proof-photo-label { font-size: 15px; }
    .proof-gallery.compact figcaption p { font-size: 13px; }
    .proof-photo figcaption { padding: 18px 20px; background: rgba(255,255,255,.03); }
    .proof-photo-label { display: block; font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--text); margin-bottom: 6px; }
    .proof-photo figcaption p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

    .legal-body { max-width: 760px; padding-bottom: 24px; }
    .legal-body h2 { font-size: 24px; margin: 38px 0 12px; }
    .legal-body h2:first-child { margin-top: 0; }
    .legal-body p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
    .legal-body ul { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
    .legal-body strong { color: var(--text); }
    .legal-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
    .legal-updated { color: rgba(247,249,251,.5); font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 28px; }

    .answer-box {
      max-width: 760px;
      padding: 22px 24px;
      border-radius: var(--radius);
      background: rgba(95,179,249,.07);
      border: 1px solid rgba(95,179,249,.28);
      color: var(--text);
      font-size: 17px;
      line-height: 1.65;
    }
    .answer-box strong { color: var(--blue); }
    .faq-list { max-width: 760px; display: grid; gap: 12px; }
    .faq-list details {
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 10px;
      background: rgba(255,255,255,.03);
      overflow: hidden;
    }
    .faq-list details[open] { border-color: rgba(95,179,249,.32); }
    .faq-list summary {
      cursor: pointer;
      padding: 16px 18px;
      font-family: var(--display);
      font-weight: 700;
      font-size: 16px;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after { content: "+"; color: var(--blue); font-size: 20px; font-weight: 600; flex: 0 0 auto; }
    .faq-list details[open] summary::after { content: "–"; }
    .faq-list details p { margin: 0; padding: 0 18px 18px; color: var(--muted); font-size: 15px; line-height: 1.65; }
    .step-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: paso; }
    .step-list li { display: flex; gap: 16px; align-items: flex-start; counter-increment: paso; }
    .step-list li::before {
      content: counter(paso, decimal-leading-zero);
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 700;
      color: var(--blue);
      border: 1px solid rgba(95,179,249,.35);
      border-radius: 8px;
      width: 38px; height: 38px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
    }
    .step-list h3 { font-size: 17px; margin-bottom: 4px; }
    .step-list p { margin: 0; color: var(--muted); font-size: 15px; }

    @media (max-width: 1080px) {
      .nav-links {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 18px;
        background: rgba(3,6,13,.98);
        border-bottom: 1px solid rgba(255,255,255,.08);
        backdrop-filter: blur(18px);
      }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
      .nav-links a:last-child { border-bottom: 0; }
      .topbar .nav > .btn { display: none; }
      .mobile-menu { display: flex; }
      .hero { flex-direction: column; align-items: stretch; min-height: 0; }
      .hero-grid { grid-template-columns: 1fr; padding-top: 96px; padding-bottom: 52px; }
      .hero h1 { font-size: clamp(40px, 10vw, 58px); max-width: 100%; }
      .hero-copy { font-size: 17px; }
      .quick-track { position: static; margin: 32px auto 0; }
      .quote-grid, .footer-grid { grid-template-columns: 1fr; }
      .service-grid, .cert-grid, .service-grid.grid-4 { grid-template-columns: 1fr; }
      .proof-gallery.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .whatsapp-float { right: 18px; bottom: 18px; }
      .whatsapp-float::before { right: 10px; top: 8px; }
      .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2) { border-right: 0; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .segment-grid { grid-template-columns: 1fr; }
      .page-hero { padding-top: 128px; }
    }

    @media (max-width: 700px) {
      .container { width: min(100% - 32px, var(--max)); }
      .brand-name { font-size: 16px; }
      .brand-logo { width: 42px; height: 42px; }
      .proof-gallery, .proof-gallery.compact { grid-template-columns: 1fr; }
      .photo-feature img { max-height: 320px; }
      .hero-overlay {
        background-image:
          linear-gradient(90deg, rgba(3,6,13,.98) 0%, rgba(3,6,13,.90) 62%, rgba(3,6,13,.62) 100%),
          linear-gradient(180deg, rgba(3,6,13,.08) 0%, rgba(3,6,13,.88) 100%);
      }
      .hero-video { display: none; }
      .hero {
        background-image: url("hero-bg.jpg");
        background-image: image-set(url("hero-bg.webp") type("image/webp"), url("hero-bg.jpg") type("image/jpeg"));
        background-size: cover;
        background-position: 72% 15%;
      }
      .hero-grid { padding-top: 112px; padding-bottom: 54px; }
      .hero h1 { font-size: 46px; }
      .hero-metrics, .proof-grid, .form-grid, .trust-strip-grid { grid-template-columns: 1fr; }
      .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
      .trust-item:last-child { border-bottom: 0; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .quick-track { width: calc(100% - 32px); }
      .section-pad, .quote-section { padding: 68px 0; }
      .service-card { min-height: auto; padding: 24px; }
      .card-top { margin-bottom: 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .footer-grid { gap: 36px; }
      .toggle-group { flex-direction: column; }
      .page-hero { padding: 108px 0 44px; }
    }
