      @font-face {
        font-family: "Terminator Real NFI";
        src: url("fonts/terminator-real-nfi.otf") format("opentype");
        font-weight: normal;
        font-style: normal;
        font-display: swap;
      }

      :root {
        --bg: #f0f9ff;
        --hero-bg: #ffffff;
        --section-bg: #ffffff;
        --section-alt-bg: #e8f3fb;
        --section-soft-bg: #f1f5f9;
        --panel: #ffffff;
        --panel-2: #f8fafc;
        --border: #dbeafe;
        --border-strong: #cbd5e1;
        --text: #0f172a;
        --muted: #64748b;
        --accent: #0891b2;
        --accent-hover: #06b6d4;
        --accent-deep: #0e7490;
        --accent-soft: rgba(8, 145, 178, 0.12);
        --accent-glow: rgba(6, 182, 212, 0.18);
        --logo-text: #0b2380;
        --logo-text-muted: #1e3a8a;
        --success: #16a34a;
        --danger: #ef4444;
        --shadow: 0 18px 50px rgba(14, 116, 144, 0.12);
        --max: 1120px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: "Segoe UI", system-ui, sans-serif;
        background:
          radial-gradient(circle at 100% 0%, rgba(125, 211, 252, 0.35), transparent 42%),
          radial-gradient(circle at 0% 100%, rgba(167, 243, 208, 0.2), transparent 38%),
          var(--bg);
        color: var(--text);
        line-height: 1.6;
      }

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

      .asset-card__icon i {
       width: 24px;
        height: 24px;
      }

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

      .wrap {
        width: min(100% - 2rem, var(--max));
        margin: 0 auto;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        background: rgba(255, 255, 255, 0.82);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 30px rgba(14, 116, 144, 0.06);
      }

      .site-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.85rem 0;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        font-weight: 700;
      }
      
      .logo {
        transition: all 0.2s ease;
      }

      .logo:hover {
        transform: translateY(-1px);
      }

       .logo:hover .logo__mark {
        transform: scale(1.05) rotate(3deg);
        filter: drop-shadow(0 8px 20px rgba(6,182,212,0.4));
      }

      .logo__mark {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
       }
       
       .logo__mark svg {        
        width: 100%;
        height: 100%;
        display: block;
       }


      .logo__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.05;
        gap: 0.08rem;
      }

      .logo__brand {
        font-family: "Terminator Real NFI", "Segoe UI", sans-serif;
        font-weight: 600;
        font-size: clamp(1rem, 2.5vw, 1.18rem);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--logo-text, #0b2380);
        text-shadow: 0 1px 2px rgba(0,0,0,0.05);
      }

      .logo__line {
        display: flex;
        align-items: center;
        gap: 0.28rem;
        font-family: "Terminator Real NFI", "Segoe UI", sans-serif;
        font-weight: normal;
        font-size: clamp(0.52rem, 1.25vw, 0.62rem);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--logo-text, #0b2380);
        white-space: nowrap;
      }

      .logo__line span:not(.logo__dot) {
        color: var(--logo-text);
      }

      .logo__dot {
        color: var(--logo-text-muted);
      }

      .logo__product {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--accent-deep);
      }
      
.logo--footer:hover .logo__mark {
  transform: scale(1.05);
  transition: 0.2s;
}


     .logo--footer {
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.2s ease
      }

      .nav {
        display: none;
        gap: 1.25rem;
        color: var(--muted);
        font-size: 0.92rem;
      }

      .nav a:hover {
        color: var(--text);
      }

      .header-actions {
        display: flex;
        gap: 0.55rem;
        align-items: center;
        flex-shrink: 0;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.65rem 1rem;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 600;
        font-size: 0.92rem;
        cursor: pointer;
        transition: 0.15s ease;
      }

      .btn--primary {
        background: linear-gradient(135deg, var(--accent-hover), var(--accent-deep));
        color: #fff;
        box-shadow: 0 10px 24px var(--accent-glow);
      }

      .btn--primary:hover {
        background: linear-gradient(135deg, #67e8f9, var(--accent));
      }

      .btn--ghost {
        border-color: #bae6fd;
        background: rgba(255, 255, 255, 0.75);
        color: var(--accent-deep);
      }

      .btn--ghost:hover {
        border-color: var(--accent);
        background: #fff;
        color: var(--accent-deep);
      }

      .btn.locale-toggle {
        padding: 0.7rem 1.05rem;
        min-width: 6.25rem;
        white-space: nowrap;
        border: 1px solid #fdba74;
        background: linear-gradient(135deg, #ffedd5, #fed7aa);
        color: #9a3412;
        font-weight: 700;
        font-size: 0.92rem;
        letter-spacing: normal;
        text-transform: none;
        box-shadow:
          0 0 0 2px rgba(251, 146, 60, 0.18),
          0 6px 18px rgba(251, 146, 60, 0.22);
        animation: locale-toggle-glow 2.8s ease-in-out infinite;
      }

      .btn.locale-toggle:hover {
        border-color: #fb923c;
        background: linear-gradient(135deg, #fed7aa, #fdba74);
        color: #7c2d12;
        transform: translateY(-1px);
        box-shadow:
          0 0 0 3px rgba(251, 146, 60, 0.24),
          0 8px 22px rgba(251, 146, 60, 0.28);
      }
      
.cta-final {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: white;
}

.cta-final h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.cta-final p {
  opacity: 0.9;
  margin-bottom: 25px;
}

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

.cta-final .btn--primary {
  background: white;
  color: #0891b2;
}

.cta-final .btn--ghost {
  border: 1px solid white;
  color: white;
}

.cta-final {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  text-align: center;
}

.site-footer__inner {
  flex-direction: column;
  gap: 10px;
}



      @keyframes locale-toggle-glow {
        0%,
        100% {
          box-shadow:
            0 0 0 2px rgba(251, 146, 60, 0.18),
            0 6px 18px rgba(251, 146, 60, 0.22);
        }

        50% {
          box-shadow:
            0 0 0 4px rgba(251, 146, 60, 0.28),
            0 8px 22px rgba(251, 146, 60, 0.3);
        }
      }

     .feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(203,213,225,0.5);
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
    }

    .feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(14,116,144,0.15);
   }

      .hero {
        padding: 3.5rem 0 2.5rem;
        text-align: center;
        background:
          radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.18), transparent 34%),
          radial-gradient(circle at 88% 8%, rgba(52, 211, 153, 0.12), transparent 28%),
          var(--hero-bg);
        border-bottom: 1px solid var(--border);
      }

      .hero__grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
      }

      .hero__copy {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero__eyebrow {
        display: inline-block;
        margin-bottom: 0.65rem;
        padding: 0.25rem 0.7rem;
        border-radius: 999px;
        background: #cffafe;
        color: var(--accent-deep);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      .hero__kicker {
        margin: 0 0 0.5rem;
        color: var(--accent-deep);
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: -0.01em;
      }

      .hero h1 {
        margin: 0 0 1rem;
        font-size: clamp(2rem, 5vw, 3.2rem);
        line-height: 1.08;
        letter-spacing: -0.02em;
        max-width: 26ch;
      }

      .hero__lead {
        margin: 0 auto 1.5rem;
        color: var(--muted);
        font-size: 1.05rem;
        max-width: 56rem;
      }

      .hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        justify-content: center;
      }

      .hero__note {
        margin: 0 auto;
        color: var(--muted);
        font-size: 0.88rem;
        max-width: 48rem;
      }

      .reveal {
         opacity: 0;
         transform: translateY(30px);
         transition: all 0.7s ease;
      }

      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .trust {
        padding: 1.25rem 0 2rem;
        background: var(--section-alt-bg);
        border-bottom: 1px solid var(--border-strong);
      }

      .trust__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
      }

      .trust__item {
        padding: 0.85rem 1rem;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 10px 30px rgba(14, 116, 144, 0.06);
        font-size: 0.88rem;
      }

      .trust__item strong {
        display: block;
        margin-bottom: 0.15rem;
        color: var(--text);
      }

      .section {
        padding: 3.5rem 0;
        background: var(--section-bg);
      }

      .section--alt {
        background: var(--section-alt-bg);
        border-top: 1px solid var(--border-strong);
        border-bottom: 1px solid var(--border-strong);
      }

      .section--soft {
        background: var(--section-soft-bg);
        border-top: 1px solid var(--border-strong);
      }

      .section__head {
        max-width: 44rem;
        margin-bottom: 2rem;
      }

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

      .section__head h2 {
        margin: 0 0 0.65rem;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
      }

      .section__head p {
        margin: 0;
        color: var(--muted);
      }

      .pillars {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .pillar {
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--panel);
        box-shadow: 0 12px 32px rgba(14, 116, 144, 0.06);
        overflow: hidden;
      }

      .pillar__media {
        aspect-ratio: 16 / 10;
        overflow: hidden;
        border-bottom: 1px solid var(--border);
      }

      .pillar__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .pillar__body {
        padding: 1.15rem 1.25rem 1.25rem;
      }

      .pillar h3 {
        margin: 0 0 0.45rem;
        font-size: 1.05rem;
      }

      .infra-band {
        margin-top: 2rem;
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
        border: 1px solid #bae6fd;
        background: linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(255, 255, 255, 0.92));
        box-shadow: 0 14px 36px rgba(14, 116, 144, 0.08);
      }

      .infra-band__eyebrow {
        margin: 0 0 0.35rem;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--accent-deep);
      }

      .infra-band__head {
        text-align: center;
        max-width: 42rem;
        margin: 0 auto 1.25rem;
      }

      .infra-band__head h3 {
        margin: 0 0 0.5rem;
        font-size: 1.35rem;
      }

      .infra-band__head p {
        margin: 0;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .infra-band__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
      }

      .infra-band__item {
        padding: 1rem 1.05rem;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.88);
        font-size: 0.88rem;
      }

      .infra-band__item strong {
        display: block;
        margin-bottom: 0.25rem;
        color: var(--text);
        font-size: 0.95rem;
      }

      .infra-band__badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        width: fit-content;
        margin: 1rem auto 0;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #cbd5e1;
        font-size: 0.78rem;
        font-weight: 600;
        color: #334155;
      }

      .pillar p {
        margin: 0;
        color: var(--muted);
        font-size: 0.92rem;
      }

      .features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .feature {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.85rem;
        padding: 1rem 1.1rem;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: var(--panel);
        box-shadow: 0 8px 24px rgba(14, 116, 144, 0.05);
      }

      .feature.reveal {
        animation: revealDelay 0.7s ease forwards;
      }

      .feature.reveal:nth-child(1) {
        animation-delay: 0s;
      }

      .feature.reveal:nth-child(2) {
        animation-delay: 0.1s;
      }

      .feature.reveal:nth-child(3) {
        animation-delay: 0.2s;
      }

      .feature.reveal:nth-child(4) {
        animation-delay: 0.3s;
      }

      .feature.reveal:nth-child(5) {
        animation-delay: 0.4s;
      }

      .feature.reveal:nth-child(6) {
        animation-delay: 0.5s;
      }

      @keyframes revealDelay {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .feature__icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: #cffafe;
        color: var(--accent-deep);
        flex-shrink: 0;
      }

      .feature__icon svg {
        width: 1.25rem;
        height: 1.25rem;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .feature h3 {
        margin: 0 0 0.25rem;
        font-size: 1rem;
      }

      .feature p {
        margin: 0;
        color: var(--muted);
        font-size: 0.9rem;
      }

      .asset-markets {
        margin-top: 2.75rem;
        padding-top: 2.25rem;
        border-top: 1px solid var(--border);
      }

      .asset-markets__head {
        margin-bottom: 1.5rem;
      }

      .asset-markets__eyebrow {
        margin: 0 0 0.45rem;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--accent-deep);
      }

      .asset-markets__head h3 {
        margin: 0 0 0.55rem;
        font-size: clamp(1.25rem, 2.5vw, 1.55rem);
        line-height: 1.25;
      }

      .asset-markets__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .asset-card {
        position: relative;
        padding: 1.35rem 1.25rem 1.25rem;
        border-radius: 18px;
        border: 1px solid var(--border);
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 14px 36px rgba(14, 116, 144, 0.07);
        overflow: hidden;
      }

      .asset-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-hover));
        opacity: 0.85;
      }

      .asset-card--pets::before {
        background: linear-gradient(90deg, #f59e0b, #fbbf24);
      }

      .asset-card--moto::before {
        background: linear-gradient(90deg, #dc2626, #f97316);
      }

      .asset-card--scooter::before {
        background: linear-gradient(90deg, #0891b2, #22d3ee);
      }

      .asset-card--fleet::before {
        background: linear-gradient(90deg, #059669, #34d399);
      }

      .asset-card__tag {
        display: inline-block;
        margin-bottom: 0.65rem;
        padding: 0.18rem 0.55rem;
        border-radius: 999px;
        background: var(--accent-soft);
        color: var(--accent-deep);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      .asset-card--pets .asset-card__tag {
        background: rgba(245, 158, 11, 0.15);
        color: #b45309;
      }

      .asset-card--moto .asset-card__tag {
        background: rgba(239, 68, 68, 0.12);
        color: #b91c1c;
      }

      .asset-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: 0.85rem;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: var(--accent-soft);
        color: var(--accent-deep);
      }

      .asset-card--pets .asset-card__icon {
        background: rgba(245, 158, 11, 0.14);
        color: #b45309;
      }

      .asset-card--moto .asset-card__icon {
        background: rgba(239, 68, 68, 0.1);
        color: #b91c1c;
      }

      .asset-card__icon svg {
        width: 1.45rem;
        height: 1.45rem;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.75;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .asset-card h4 {
        margin: 0 0 0.45rem;
        font-size: 1.05rem;
        line-height: 1.25;
      }

      .asset-card p {
        margin: 0 0 0.75rem;
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.5;
      }

      .asset-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.35rem;
      }

      .asset-card li {
        position: relative;
        padding-left: 1.1rem;
        font-size: 0.82rem;
        color: var(--text);
        line-height: 1.4;
      }

      .asset-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-deep);
        font-weight: 700;
      }

      .asset-card--pets li::before {
        color: #d97706;
      }

      .asset-card--moto li::before {
        color: #dc2626;
      }

      .asset-markets__cta {
        margin-top: 1.5rem;
        padding: 1.25rem 1.35rem;
        border-radius: 18px;
        border: 1px solid rgba(8, 145, 178, 0.22);
        background: linear-gradient(135deg, rgba(236, 254, 255, 0.95), rgba(240, 249, 255, 0.95));
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .asset-markets__cta p {
        margin: 0;
        max-width: 38rem;
        color: var(--text);
        font-size: 0.92rem;
        line-height: 1.5;
      }

      .asset-markets__cta strong {
        color: var(--accent-deep);
      }

      .use-cases {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .use-case {
        padding: 1.35rem;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: var(--panel);
        box-shadow: 0 12px 32px rgba(14, 116, 144, 0.06);
      }

      .use-case h3 {
        margin: 0 0 0.45rem;
      }

      .use-case p {
        margin: 0;
        color: var(--muted);
      }

      .pricing-trial-banner {
        margin: 0 auto 1.25rem;
        max-width: 52rem;
        padding: 0.85rem 1.1rem;
        border-radius: 14px;
        border: 1px solid rgba(14, 116, 144, 0.35);
        background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(6, 182, 212, 0.08));
        color: var(--text);
        font-size: 0.95rem;
        line-height: 1.45;
        text-align: center;
        font-weight: 500;
      }

      .pricing {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .plan {
        padding: 1.35rem;
        border-radius: 18px;
        border: 1px solid var(--border);
        background: var(--panel);
        box-shadow: 0 12px 32px rgba(14, 116, 144, 0.06);
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
      }

      .plan--featured {
        border-color: var(--accent);
        box-shadow: 0 18px 40px var(--accent-glow);
        background: linear-gradient(180deg, #ffffff, #ecfeff);
      }

      .plan--mobile {
        border-color: #7dd3fc;
        background: linear-gradient(180deg, #ffffff, #f0f9ff);
      }

      .plan__note {
        margin: 0;
        font-size: 0.78rem;
        color: var(--muted);
        line-height: 1.45;
      }

      .plan__badge {
        align-self: flex-start;
        padding: 0.2rem 0.55rem;
        border-radius: 999px;
        background: #cffafe;
        color: var(--accent-deep);
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
      }

      .plan__trial-badge {
        align-self: flex-start;
        padding: 0.2rem 0.55rem;
        border-radius: 999px;
        background: rgba(16, 185, 129, 0.12);
        border: 1px solid rgba(16, 185, 129, 0.4);
        color: #047857;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
      }

      .plan__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
        align-items: center;
      }

      .plan h3 {
        margin: 0;
        font-size: 1.15rem;
      }

      .plan__price {
        margin: 0;
        font-size: 2rem;
        font-weight: 800;
        line-height: 1;
      }

      .plan__price small {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--muted);
      }

      .plan ul {
        margin: 0;
        padding-left: 1.1rem;
        color: var(--muted);
        font-size: 0.92rem;
      }

      .plan li + li {
        margin-top: 0.35rem;
      }

      .pricing-maps-note {
        padding: 1.15rem 1.25rem;
        border-radius: 16px;
        border: 1px solid rgba(8, 145, 178, 0.22);
        background: linear-gradient(135deg, rgba(236, 254, 255, 0.95), rgba(240, 249, 255, 0.95));
      }

      .pricing-addons {
        margin-top: 1.5rem;
        display: grid;
        gap: 1rem;
      }

      .pricing-addon--whitelabel {
        border-color: rgba(255, 153, 0, 0.28);
        background: linear-gradient(135deg, rgba(255, 251, 235, 0.98), rgba(254, 243, 199, 0.55));
      }

      .pricing-addon--whitelabel h3 {
        color: #b45309;
      }

      .pricing-addon--sutran {
        border-color: rgba(8, 145, 178, 0.35);
        background: linear-gradient(135deg, rgba(236, 254, 255, 0.98), rgba(207, 250, 254, 0.6));
      }

      .pricing-addon--sutran h3 {
        color: var(--accent-deep);
      }

      .pricing-maps-note h3 {
        margin: 0 0 0.5rem;
        font-size: 1rem;
        color: var(--accent-deep);
      }

      .pricing-maps-note p {
        margin: 0;
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.55;
      }

      .contact {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .contact-card,
      .contact-form {
        padding: 1.35rem;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: var(--panel);
        box-shadow: 0 12px 32px rgba(14, 116, 144, 0.06);
      }

      .contact-card h3,
      .contact-form h3 {
        margin-top: 0;
      }

      .contact-card p,
      .contact-form p {
        color: var(--muted);
      }

      .contact-list {
        list-style: none;
        padding: 0;
        margin: 1rem 0 0;
      }

      .contact-list li + li {
        margin-top: 0.65rem;
      }

      .contact-list a {
        color: var(--accent-deep);
        font-weight: 600;
      }

      label {
        display: block;
        margin-bottom: 0.35rem;
        font-size: 0.85rem;
        color: var(--muted);
      }

      input,
      select,
      textarea {
        width: 100%;
        margin-bottom: 0.85rem;
        padding: 0.75rem 0.85rem;
        border-radius: 10px;
        border: 1px solid #cbd5e1;
        background: #fff;
        color: var(--text);
        font: inherit;
      }

      input:focus,
      select:focus,
      textarea:focus {
        outline: 2px solid rgba(8, 145, 178, 0.25);
        border-color: var(--accent);
      }

      textarea {
        min-height: 110px;
        resize: vertical;
      }

      .site-footer {
        padding: 2rem 0 2.5rem;
        border-top: 1px solid var(--border-strong);
        background: var(--section-alt-bg);
        color: var(--muted);
        font-size: 0.88rem;
      }

      .site-footer__inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .site-footer__inner p {
        margin: 0;
      }

      .logo--footer .logo__mark {
        width: 2rem;
        height: 2rem;
      }

      .site-footer a {
        color: var(--accent-deep);
      }

      @media (min-width: 760px) {
        .nav {
          display: flex;
        }

        .hero__grid {
          grid-template-columns: 1.05fr 0.95fr;
        }

        .trust__grid {
          grid-template-columns: repeat(4, 1fr);
        }

        .pillars {
          grid-template-columns: repeat(2, 1fr);
        }

        .infra-band__grid {
          grid-template-columns: repeat(4, 1fr);
        }

        .features {
          grid-template-columns: repeat(2, 1fr);
        }

        .asset-markets__grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .use-cases,
        .pricing {
          grid-template-columns: repeat(2, 1fr);
        }

        .contact {
          grid-template-columns: 0.9fr 1.1fr;
        }
      }

      @media (min-width: 1180px) {
        .asset-markets__grid {
          grid-template-columns: repeat(4, 1fr);
        }

        .use-cases {
          grid-template-columns: repeat(4, 1fr);
        }

        .pricing {
          grid-template-columns: repeat(4, 1fr);
        }

        .pricing-addons {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366 0%, #20c556 50%, #1ba34a 100%);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 
    0 0 0 4px rgba(37, 211, 102, 0.2),
    0 8px 32px rgba(37, 211, 102, 0.5),
    inset -2px -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

.whatsapp-float:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 
    0 0 0 6px rgba(37, 211, 102, 0.25),
    0 16px 48px rgba(37, 211, 102, 0.7),
    inset -2px -2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0% { 
    box-shadow: 
      0 0 0 4px rgba(37, 211, 102, 0.2),
      0 8px 32px rgba(37, 211, 102, 0.5),
      inset -2px -2px 8px rgba(0, 0, 0, 0.15);
  }
  50% { 
    box-shadow: 
      0 0 0 8px rgba(37, 211, 102, 0.15),
      0 8px 32px rgba(37, 211, 102, 0.6),
      inset -2px -2px 8px rgba(0, 0, 0, 0.15);
  }
  100% { 
    box-shadow: 
      0 0 0 4px rgba(37, 211, 102, 0.2),
      0 8px 32px rgba(37, 211, 102, 0.5),
      inset -2px -2px 8px rgba(0, 0, 0, 0.15);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

.whatsapp-float::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 85px;
  background: #0f172a;
  color: #25d366;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(5px) translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-benefits-inline {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}



  .landing-login-modal {
    border: 0;
    padding: 0;
    border-radius: 20px;
    width: min(92vw, 460px);
    box-shadow: 0 30px 80px rgba(2, 132, 199, 0.3);
    background: transparent;
  }

  .landing-login-modal::backdrop {
    background: rgba(2, 6, 23, 0.55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .landing-login-card {
    position: relative;
    margin: 0;
    padding: 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #dbeafe;
    display: grid;
    gap: 0.6rem;
  }

  .landing-login-close {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
  }

  .landing-login-eyebrow {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0891b2;
    font-weight: 700;
  }

  .landing-login-card h3 {
    margin: 0;
    font-size: 1.35rem;
  }

  .landing-login-subtitle,
  .landing-login-demo-hint {
    margin: 0 0 0.2rem;
    color: #64748b;
    font-size: 0.93rem;
  }

  .landing-login-demo-hint {
    color: #0f766e;
    background: #ecfeff;
    border: 1px solid #99f6e4;
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
  }

  .landing-login-card label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
  }

  .landing-login-card input {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.62rem 0.75rem;
    font: inherit;
  }

  .landing-login-remember {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #334155;
    cursor: pointer;
    user-select: none;
    margin-top: 0.15rem;
  }

  .landing-login-remember input {
    width: auto;
    padding: 0;
    margin: 0;
  }

  .landing-login-demo-request {
    display: grid;
    gap: 0.55rem;
    border: 1px solid #99f6e4;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0fdfa, #ecfeff);
    padding: 0.85rem 0.95rem;
    margin-top: 0.15rem;
  }

  .landing-login-demo-title,
  .landing-login-demo-copy {
    margin: 0;
  }

  .landing-login-demo-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.92rem;
  }

  .landing-login-demo-copy {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .landing-login-demo-btn {
    justify-self: start;
    white-space: nowrap;
  }

  .landing-login-error {
    margin: 0.3rem 0 0;
    color: #b91c1c;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    font-size: 0.9rem;
  }

  .landing-login-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-top: 0.4rem;
  }

  .hidden {
    display: none !important;
  }
