    :root {
      --ink: #031957;
      --ink-2: #000000;
      --ink-3: #167dff;
      --paper: #ffffff;
      --paper-2: #ffffff;
      --brand: #2544e5;
      --brand-light: #4180c2;
      --brand-soft: rgba(37, 68, 229, .08);
      --valid: #1c7a5b;
      --line: #dde3f0;
      --line-2: #ffffff;
      --muted: #000000;
      --muted-2: #000000;
      --ink-line: rgba(37, 68, 229, .16);
      --shadow-sm: 0 2px 8px rgba(33, 28, 28, .06);
      --shadow-md: 0 14px 30px rgba(33, 28, 28, .07);
      --shadow-lg: 0 24px 56px rgba(33, 28, 28, .12);
      --radius: 14px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      padding-top: 96px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    .display {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -.025em
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img {
      max-width: 100%;
      display: block
    }

    button,
    input,
    textarea,
    select {
      font-family: inherit
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px
    }

    .center {
      text-align: center;
      margin-left: auto;
      margin-right: auto
    }

    .eyebrow {
      font-family: 'Spline Sans Mono', monospace;
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--brand);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .eyebrow::before {
      content: "";
      width: 18px;
      height: 1px;
      background: var(--brand)
    }

    .eyebrow.center::before {
      display: none
    }

    .eyebrow.center {
      justify-content: center;
    }

    /* ===== SCROLL PROGRESS ===== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0;
      z-index: 200;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      transition: width .1s linear;
    }

    /* ===== TOAST ===== */
    .toasts {
      position: fixed;
      top: 90px;
      right: 24px;
      z-index: 600;
      display: flex;
      flex-direction: column;
      gap: 10px;
      pointer-events: none
    }

    .toast {
      pointer-events: auto;
      background: var(--ink);
      color: var(--paper);
      padding: 14px 18px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 18px 40px rgba(33, 28, 28, .25);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 280px;
      max-width: 380px;
      transform: translateX(120%);
      opacity: 0;
      transition: transform .35s cubic-bezier(.5, 1.6, .4, 1), opacity .3s;
    }

    .toast.show {
      transform: translateX(0);
      opacity: 1
    }

    .toast .tic {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--valid);
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .toast .tic svg {
      width: 14px;
      height: 14px;
      color: #fff
    }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 66px);
      max-width: 1160px;
      z-index: 200;
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(24px) saturate(200%);
      -webkit-backdrop-filter: blur(24px) saturate(200%);
      border: 1px solid rgba(255, 255, 255, 0.38);
      border-radius: 22px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1.5px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(255, 255, 255, 0.12);
      transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    }

    .nav-in {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;
      height: auto;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: -.02em
    }

    .logo-img {
      height: 45px;
      width: auto;

      display: block
    }

    .nav-links {
      display: flex;
      gap: 6px;
      align-items: center
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      padding: 9px 15px;
      border-radius: 7px;
      color: var(--ink-2);
      transition: background .18s, color .18s;
    }

    .nav-links a:hover {
      background: rgba(37, 68, 229, .1);
      color: var(--ink)
    }

    .nav-cta {
      background: var(--ink) !important;
      color: var(--paper) !important;
      padding: 10px 18px !important;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px
    }

    .nav-cta:hover {
      background: var(--brand) !important
    }

    .nav-cta .dot {
      width: 7px;
      height: 7px;
      background: #4ade80;
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .6)
      }

      50% {
        opacity: .6;
        transform: scale(1.25);
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0)
      }
    }

    .burger {
      display: none;
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 9px;
      cursor: pointer
    }

    .burger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--ink);
      margin: 4px 0;
      transition: transform .25s, opacity .2s
    }

    .burger.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg)
    }

    .burger.open span:nth-child(2) {
      opacity: 0
    }

    .burger.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg)
    }

    /* ===== HERO — 2 COLUMNS ===== */
    .hero {
      padding: 64px 0 72px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 0% 0%, rgba(106, 169, 255, .14), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(37, 68, 229, .08), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 68, 229, .04), transparent 60%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: .28;
      background-image: repeating-radial-gradient(circle at 80% 30%, transparent 0, transparent 13px, var(--ink-line) 13px, var(--ink-line) 14px);
      -webkit-mask: radial-gradient(circle at 80% 30%, #000, transparent 65%);
      mask: radial-gradient(circle at 80% 30%, #000, transparent 65%);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 56px;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(34px, 4.6vw, 54px);
      margin: 16px 0 18px;
      font-weight: 800;
      letter-spacing: -.035em
    }

    .hero h1 em {
      font-style: italic;
      color: var(--brand);
      position: relative;
      display: inline-block
    }

    .hero h1 em::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: .04em;
      height: .5em;
      background: linear-gradient(180deg, transparent 60%, rgba(106, 169, 255, .25) 60%);
      z-index: -1;
    }

    .hero p.lead {
      font-size: 17px;
      color: var(--ink-2);
      max-width: 540px;
      line-height: 1.65;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-weight: 600;
      font-size: 15px;
      padding: 14px 24px;
      border-radius: 9px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform .15s, background .18s, box-shadow .25s, border-color .18s;
      text-decoration: none;
      font-family: inherit;
    }

    .btn:active {
      transform: translateY(1px)
    }

    .btn-primary {
      background: var(--ink);
      color: var(--paper)
    }

    .btn-primary:hover {
      background: var(--brand);
      box-shadow: 0 12px 28px rgba(37, 68, 229, .32)
    }

    .btn-ghost {
      background: var(--paper-2);
      color: var(--ink);
      border-color: var(--line)
    }

    .btn-ghost:hover {
      border-color: var(--ink);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm)
    }

    .btn-success {
      background: linear-gradient(135deg, #25d366 0%, #128c4f 100%);
      color: #fff;
      box-shadow: 0 4px 14px rgba(37, 211, 102, .28);
      border-color: transparent;
    }

    .btn-success:hover {
      background: linear-gradient(135deg, #2ee874 0%, #1ebd5a 100%);
      box-shadow: 0 14px 30px rgba(37, 211, 102, .38);
      transform: translateY(-2px);
    }

    /* ===== NAV CARDS (Hero right side) ===== */
    .nav-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .nav-card {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 18px;
      transition: transform .22s, box-shadow .25s, border-color .22s, background .22s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      text-align: left;
      width: 100%;
      font-family: inherit;
      color: inherit;
    }

    .nav-card::after {
      content: "↓";
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%) translateX(8px);
      font-size: 18px;
      color: var(--brand);
      font-family: 'Spline Sans Mono', monospace;
      opacity: 0;
      transition: opacity .25s, transform .25s;
    }

    .nav-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-light);
    }

    .nav-card:hover::after {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }

    .nav-card .ic {
      width: 52px;
      height: 52px;
      flex: none;
      border-radius: 13px;
      background: var(--brand-soft);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .22s, color .22s;
    }

    .nav-card .ic svg {
      width: 26px;
      height: 26px
    }

    .nav-card:hover .ic {
      background: var(--ink);
      color: var(--paper);
    }

    .nav-card .body h3 {
      font-size: 17px;
      margin: 0;
      line-height: 1.25;
    }

    .nav-card .body p {
      font-size: 13.5px;
      color: var(--muted);
      margin-top: 3px;
      line-height: 1.4;
    }

    /* ===== STATUS CHIP ===== */
    .status-strip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--paper-2);
      border: 1px solid var(--line);
      padding: 8px 16px;
      border-radius: 999px;
      font-family: 'Spline Sans Mono', monospace;
      font-size: 12px;
      color: var(--ink-2);
    }

    .status-strip .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
      animation: pulse 2s infinite;
    }

    .status-strip b {
      color: var(--ink);
      font-weight: 600
    }

    /* ===== SECTIONS ===== */
    section {
      position: relative
    }

    .band {
      padding: 80px 0
    }

    .band-ink {
      background: linear-gradient(180deg, var(--ink), var(--ink-3));
      color: var(--paper)
    }

    .band-ink .eyebrow {
      color: var(--brand-light)
    }

    .band-ink .eyebrow::before {
      background: var(--brand-light)
    }

    .band-paper {
      background: var(--paper-2);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line)
    }

    .sec-head {
      max-width: 720px;
      margin: 0 auto 48px;
      text-align: center
    }

    .sec-head h2 {
      font-size: clamp(28px, 3.8vw, 44px);
      margin: 14px 0 14px
    }

    .sec-head p {
      font-size: 16px;
      color: var(--muted);
      max-width: 620px;
      margin: 0 auto;
    }

    .band-ink .sec-head p {
      color: rgba(244, 246, 252, .7)
    }

    /* ===== PARTNERSHIP CARDS ===== */
    .partner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .pcard {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 36px;
      display: flex;
      flex-direction: column;
      transition: transform .25s, box-shadow .25s, border-color .25s;
      position: relative;
      overflow: hidden;
    }

    .pcard::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .pcard.partner-card::before {
      background: linear-gradient(90deg, #4180c2, var(--brand));
    }

    .pcard.reseller-card::before {
      background: linear-gradient(90deg, var(--brand), #167dff);
    }

    .pcard:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--brand-light);
    }

    .pcard .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Spline Sans Mono', monospace;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--brand);
      font-weight: 600;
      background: var(--brand-soft);
      padding: 6px 12px;
      border-radius: 999px;
      align-self: flex-start;
      margin-bottom: 18px;
    }

    .pcard h3 {
      font-size: clamp(24px, 2.4vw, 30px);
      margin: 0 0 6px;
      letter-spacing: -.025em;
    }

    .pcard .sub {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .pcard ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px;
    }

    .pcard ul li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--ink);
      line-height: 1.5;
    }

    .pcard ul li .check {
      flex: none;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(28, 122, 91, .12);
      color: var(--valid);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .pcard ul li .check svg {
      width: 14px;
      height: 14px;
    }

    .pcard .cta-wrap {
      margin-top: auto;
    }

    .pcard .cta-wrap .btn {
      width: 100%;
      justify-content: center;
      padding: 16px 24px;
      font-size: 15px;
    }

    /* ===== CONTADOR HIGHLIGHT ===== */
    .highlight {
      background: linear-gradient(135deg, var(--brand) 0%, var(--ink-2) 100%);
      color: var(--paper);
      border-radius: 24px;
      padding: 56px;
      text-align: center;
      position: relative;
      overflow: hidden;
      max-width: 1020px;
      margin: 0 auto;
    }

    .highlight::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 60%;
      height: 200%;
      background: repeating-radial-gradient(circle, rgba(255, 255, 255, .05) 0, rgba(255, 255, 255, .05) 2px, transparent 2px, transparent 16px);
      transform: rotate(-15deg);
      pointer-events: none;
    }

    .highlight .eyebrow {
      color: rgba(244, 246, 252, .75);
      position: relative;
      justify-content: center;
    }

    .highlight .eyebrow::before {
      background: rgba(244, 246, 252, .4);
      display: block;
    }

    .highlight h2 {
      font-size: clamp(26px, 3.4vw, 38px);
      margin: 16px auto 16px;
      max-width: 720px;
      position: relative;
    }

    .highlight p {
      font-size: 16px;
      color: rgba(244, 246, 252, .82);
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }

    .highlight .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(244, 246, 252, .14);
      border: 1px solid rgba(244, 246, 252, .25);
      padding: 8px 16px;
      border-radius: 999px;
      font-family: 'Spline Sans Mono', monospace;
      font-size: 12px;
      letter-spacing: .08em;
      color: var(--paper);
      margin-bottom: 4px;
      position: relative;
    }

    /* ===== ECOSSISTEMA ===== */
    .eco-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .eco {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .22s, box-shadow .25s, border-color .22s;
      position: relative;
      overflow: hidden;
    }

    .eco:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-light);
    }

    .eco .ic {


      border-radius: 14px;

      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      transition: background .22s, color .22s;
    }



    .eco .ic svg {
      width: 28px;
      height: 28px;
    }

    .eco .ic img {
      width: 214px;

      object-fit: contain;
    }

    .eco h3 {
      font-size: 18px;
      margin: 0;
      letter-spacing: -.015em;
    }

    .eco p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.55;
    }

    .eco .tag {
      display: inline-flex;
      align-self: flex-start;
      font-family: 'Spline Sans Mono', monospace;
      font-size: 10.5px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 4px 9px;
      border-radius: 6px;
      background: var(--paper);
      margin-top: 8px;
    }

    /* ===== ECO COMO BOTÃO (Ecossistema clicável) ===== */
    button.eco {
      width: 100%;
      text-align: left;
      cursor: pointer;
      font-family: inherit;
      color: inherit;
      appearance: none;
      -webkit-appearance: none;
    }

    button.eco:focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 3px;
    }

    button.eco .cta-link {
      font-family: 'Spline Sans Mono', monospace;
      font-size: 11.5px;
      color: var(--brand);
      font-weight: 600;
      letter-spacing: .04em;
      margin-top: auto;
      padding-top: 4px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap .2s, color .2s;
    }

    button.eco:hover .cta-link {
      gap: 10px;
      color: var(--ink);
    }

    /* ===== CONTATO / FECHAMENTO ===== */
    .contact-band {
      background: linear-gradient(180deg, var(--ink), var(--ink-3));
      color: var(--paper);
      padding: 76px 0;
      position: relative;
      overflow: hidden;
    }

    .contact-band::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: .18;
      background-image: repeating-radial-gradient(circle at 85% 20%, transparent 0, transparent 13px, rgba(255, 255, 255, .35) 13px, rgba(255, 255, 255, .35) 14px);
      -webkit-mask: radial-gradient(circle at 85% 20%, #000, transparent 60%);
      mask: radial-gradient(circle at 85% 20%, #000, transparent 60%);
    }

    .contact-wrap {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 48px;
      align-items: center;
    }

    .contact-wrap .eyebrow {
      color: var(--brand-light)
    }

    .contact-wrap .eyebrow::before {
      background: var(--brand-light)
    }

    .contact-wrap h2 {
      font-size: clamp(26px, 3.4vw, 38px);
      margin: 14px 0 14px;
    }

    .contact-wrap p {
      font-size: 16px;
      color: rgba(244, 246, 252, .78);
      line-height: 1.7;
      max-width: 480px;
    }

    .contact-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 20px;
      padding: 32px;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .contact-card .wa-ic {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, #25d366 0%, #128c4f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      box-shadow: 0 12px 24px rgba(37, 211, 102, .3);
    }

    .contact-card .wa-ic svg {
      width: 26px;
      height: 26px;
      color: #fff;
    }

    .contact-card h3 {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .contact-card p {
      font-size: 14px;
      color: rgba(244, 246, 252, .7);
      margin-bottom: 22px;
      max-width: none;
    }

    .contact-card .btn-success {
      width: 100%;
      justify-content: center;
    }

    /* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
    .wa-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 300;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366 0%, #128c4f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 14px 32px rgba(37, 211, 102, .42);
      transition: transform .22s, box-shadow .22s;
      opacity: 0;
      transform: translateY(20px) scale(.85);
      pointer-events: none;
    }

    .wa-float.show {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .wa-float:hover {
      transform: translateY(-3px) scale(1.06);
      box-shadow: 0 18px 40px rgba(37, 211, 102, .52);
    }

    .wa-float svg {
      width: 30px;
      height: 30px;
      color: #fff;
    }

    .wa-float .wa-pulse {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(37, 211, 102, .45);
      animation: wa-pulse 2.2s infinite;
      z-index: -1;
    }

    @keyframes wa-pulse {
      0% {
        transform: scale(1);
        opacity: .6
      }

      100% {
        transform: scale(1.6);
        opacity: 0
      }
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--ink);
      color: rgba(244, 246, 252, .7);
      padding: 64px 0 28px;
      border-top: 1px solid rgba(106, 169, 255, .2)
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 38px
    }

    .foot-grid h5 {
      font-family: 'Spline Sans Mono', monospace;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--brand-light);
      margin-bottom: 16px;
      font-weight: 500
    }

    .foot-grid a {
      display: block;
      font-size: 14px;
      margin-bottom: 10px;
      color: rgb(255, 255, 255);
      transition: color .2s
    }

    .foot-grid a:hover {
      color: var(--paper)
    }

    .foot-brand p {
      font-size: 14px;
      max-width: 320px;
      margin-top: 14px;
      line-height: 1.6;
      color: rgb(253, 254, 255);
    }

    .foot-brand .invia-tag {
      display: inline-flex;
      align-items: baseline;
      gap: 4px;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 26px;
      letter-spacing: -.02em;
      color: var(--paper);
      margin-top: 18px;
    }

    .foot-brand .invia-tag sup {
      color: var(--brand-light);
      font-size: 14px;
    }

    .foot-bottom {
      border-top: 1px solid rgba(106, 169, 255, .15);
      padding-top: 22px;
      font-size: 12.5px;
      font-family: 'Spline Sans Mono', monospace;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      color: rgba(244, 246, 252, .5)
    }

    .foot-contact p {
      font-size: 14px;
      color: rgb(255, 255, 255);
      line-height: 1.6;
      margin-bottom: 6px;
    }

    .foot-contact a.phone {
      color: var(--paper);
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .foot-contact a.phone:hover {
      color: var(--brand-light);
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(3, 25, 87, .7);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 500;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      transition: opacity .25s;
    }

    .modal-overlay.show {
      display: flex;
      opacity: 1;
    }

    .modal {
      background: var(--paper-2);
      border-radius: 22px;
      max-width: 600px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 40px 36px 32px;
      position: relative;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
      transform: translateY(20px) scale(.98);
      transition: transform .3s cubic-bezier(.5, 1.6, .4, 1);
    }

    .modal-overlay.show .modal {
      transform: translateY(0) scale(1);
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--paper);
      border: 1px solid var(--line);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--ink);
      transition: background .2s, transform .2s;
      line-height: 1;
    }

    .modal-close:hover {
      background: var(--ink);
      color: var(--paper);
      transform: rotate(90deg);
    }

    .modal-head {
      text-align: center;
      margin-bottom: 24px;
    }

    .modal-head .ic {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      box-shadow: 0 12px 24px rgba(37, 68, 229, .3);
    }

    .modal-head .ic svg {
      width: 28px;
      height: 28px;
    }

    .modal-head h2 {
      font-size: 24px;
      margin-bottom: 8px;
      letter-spacing: -.025em;
    }

    .modal-head p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.55;
      max-width: 460px;
      margin: 0 auto;
    }

    .field {
      margin-bottom: 14px;
    }

    .field-row {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 12px;
    }

    .field-row-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }

    .field label {
      display: block;
      font-family: 'Spline Sans Mono', monospace;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
      font-weight: 500
    }

    .field input,
    .field select {
      width: 100%;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 12px 14px;
      border-radius: 10px;
      transition: border-color .2s, background .2s, box-shadow .2s;
      outline: none
    }

    .field input::placeholder {
      color: var(--muted-2);
      font-weight: 400
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--brand);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(37, 68, 229, .14)
    }

    .field input.invalid,
    .field select.invalid {
      border-color: #dc2626;
      background: rgba(220, 38, 38, .04);
    }

    .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 18px 0 22px;
      padding: 14px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 10px;
      cursor: pointer;
      transition: border-color .2s;
    }

    .checkbox-wrap:hover {
      border-color: var(--brand-light);
    }

    .checkbox-wrap input[type="checkbox"] {
      width: 20px;
      height: 20px;
      flex: none;
      accent-color: var(--brand);
      margin-top: 1px;
      cursor: pointer;
    }

    .checkbox-wrap label {
      font-size: 14px;
      color: var(--ink);
      line-height: 1.5;
      cursor: pointer;
    }

    .modal-submit {
      width: 100%;
      justify-content: center;
      padding: 16px 24px;
      font-size: 15px;
    }

    /* ===== SELECTION MODAL ===== */
    .modal-select {
      max-width: 560px;
      padding: 40px 32px 32px;
    }

    .select-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 8px;
    }

    .select-card {
      background: var(--paper);
      border: 1.5px solid var(--line);
      border-radius: 16px;
      padding: 22px 20px 20px;
      text-align: left;
      cursor: pointer;
      transition: transform .22s, box-shadow .25s, border-color .22s, background .22s;
      font-family: inherit;
      color: inherit;
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }

    .select-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }

    .select-card:hover {
      transform: translateY(-4px);
      border-color: var(--brand);
      box-shadow: 0 16px 34px rgba(37, 68, 229, .18);
      background: var(--paper-2);
    }

    .select-card:hover::before {
      transform: scaleX(1);
    }

    .select-card .ic {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--brand-soft);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .22s, color .22s;
      flex: none;
    }

    .select-card:hover .ic {
      background: var(--ink);
      color: var(--paper);
    }

    .select-card .ic svg {
      width: 24px;
      height: 24px;
    }

    .select-card h3 {
      font-size: 17px;
      margin: 0;
      letter-spacing: -.015em;
      color: var(--ink);
    }

    .select-card p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.5;
      margin: 0;
    }

    .select-card .cta {
      font-family: 'Spline Sans Mono', monospace;
      font-size: 12px;
      color: var(--brand);
      font-weight: 600;
      letter-spacing: .04em;
      margin-top: auto;
      padding-top: 6px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap .2s, color .2s;
    }

    .select-card:hover .cta {
      gap: 10px;
      color: var(--ink);
    }

    @media (max-width: 560px) {
      .modal-select {
        padding: 32px 22px 24px;
      }

      .select-cards {
        grid-template-columns: 1fr;
      }
    }

    /* ===== REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1)
    }

    .reveal.in {
      opacity: 1;
      transform: none
    }

    .reveal[data-delay="1"] {
      transition-delay: .08s
    }

    .reveal[data-delay="2"] {
      transition-delay: .16s
    }

    .reveal[data-delay="3"] {
      transition-delay: .24s
    }

    .reveal[data-delay="4"] {
      transition-delay: .32s
    }

    .reveal[data-delay="5"] {
      transition-delay: .40s
    }

    .reveal[data-delay="6"] {
      transition-delay: .48s
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 980px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero {
        padding: 48px 0 56px;
      }

      .partner-grid {
        grid-template-columns: 1fr;
      }

      .eco-grid {
        grid-template-columns: 1fr 1fr;
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 82%;
        max-width: 320px;
        background: var(--paper-2);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.5, 0, .2, 1);
        box-shadow: -20px 0 50px rgba(33, 28, 28, .18);
        z-index: 55;
      }

      .nav-links.open {
        transform: translateX(0)
      }

      .nav-links a {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px
      }

      .burger {
        display: block
      }

      .highlight {
        padding: 40px 28px;
      }
    }

    @media (max-width: 560px) {
      .eco-grid {
        grid-template-columns: 1fr;
      }

      .field-row-3 {
        grid-template-columns: 1fr;
      }

      .field-row {
        grid-template-columns: 1fr;
      }

      .modal {
        padding: 32px 22px 24px;
      }

      .band {
        padding: 56px 0;
      }

      .foot-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 40px 0 48px;
      }

      .toasts {
        left: 16px;
        right: 16px;
        top: 80px
      }

      .toast {
        min-width: 0;
        max-width: none
      }

      .pcard {
        padding: 28px 24px;
      }

      .nav-card {
        padding: 18px 20px;
      }

      .contact-band {
        padding: 56px 0;
      }

      .wa-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
      }

      .wa-float svg {
        width: 26px;
        height: 26px;
      }
    }

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

      .reveal {
        opacity: 1;
        transform: none
      }
    }
