:root {
        --bg: #ffffff;
        --card: #f9fafb;
        --muted: #000000;
        --text: #111827;
        --accent: #facc15;
        --accent-2: #eab308;
        --ring: #facc1533;
        --border: #e5e7eb;
      }

      * {
        box-sizing: border-box
      }

      html {
        scroll-behavior: smooth
      }

      body {
        margin: 0;
        font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
        background: var(--bg);
        color: var(--text);
      }

      a {
        color: inherit;
        text-decoration: none
      }

      img {
        max-width: 100%;
        height: auto
      }

      .container {
        width: min(1200px, 92%);
        margin-inline: auto
      }

      .btn {
        display: inline-flex;
        gap: .5rem;
        align-items: center;
        padding: .875rem 1.15rem;
        border-radius: 14px;
        background: var(--accent);
        color: #03110a;
        font-weight: 700;
        box-shadow: 0 6px 20px -6px var(--ring);
        transition: .2s ease
      }

      .btn:hover {
        transform: translateY(-2px);
        background: var(--accent-2)
      }

      .btn.secondary {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text)
      }

      .tag {
        display: inline-block;
        padding: .25rem .6rem;
        border: 1px solid var(--border);
        border-radius: 999px;
        color: var(--muted);
        font-size: .8rem
      }

      header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(11, 18, 32, .75);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #0f213a
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 64px
      }

      .nav a.logo {
        display: flex;
        gap: .6rem;
        align-items: center;
        font-weight: 800
      }

      .nav ul {
        display: flex;
        gap: 1rem;
        list-style: none;
        margin: 0;
        padding: 0
      }

      .nav a.link {
        padding: .6rem .8rem;
        border-radius: 10px;
        color: var(--muted)
      }

      .nav a.link:hover {
        color: var(--text);
        background: #0c1b31
      }

      .menu-btn {
        display: none;
        background: transparent;
        border: 0;
        color: var(--text)
      }

      @media (max-width: 860px) {
        .nav ul {
          display: none;
          position: absolute;
          left: 0;
          right: 0;
          top: 64px;
          flex-direction: column;
          background: #0b1529;
          border-bottom: 1px solid #0f213a
        }

        .nav ul.open {
          display: flex
        }

        .menu-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 44px;
          height: 44px
        }
      }

      .hero {
        padding: 56px 0 24px;
        background:
          radial-gradient(1000px 400px at 10% -10%, #1a2b47 0%, transparent 60%),
          radial-gradient(700px 300px at 100% 0%, #122034 0%, transparent 50%)
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 2rem;
        align-items: center
      }

      .hero h1 {
        font-size: clamp(2rem, 4.5vw, 3rem);
        line-height: 1.1;
        margin: .4rem 0
      }

      .hero p.lead {
        color: var(--muted);
        font-size: clamp(1rem, 2vw, 1.1rem)
      }

      .hero .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.25rem
      }

      .card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 1rem
      }

      .card h3 {
        margin: .2rem 0 .4rem;
        font-size: 1.05rem
      }

      .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem
      }

      @media (max-width: 1024px) {
        .hero-grid {
          grid-template-columns: 1fr
        }

        .hero .cards {
          grid-template-columns: 1fr 1fr
        }
      }

      @media (max-width: 640px) {
        .grid-3 {
          grid-template-columns: 1fr
        }

        .hero .cards {
          grid-template-columns: 1fr
        }
      }

      section {
        padding: 56px 0;
        border-top: 1px solid #0f213a
      }

      h2 {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
        margin: 0 0 1rem
      }

      .muted {
        color: var(--muted)
      }

      .list {
        display: grid;
        gap: .6rem
      }

      .list li {
        list-style: none;
        display: flex;
        gap: .6rem;
        align-items: flex-start
      }

      .pill {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        border: 1px solid var(--border);
        padding: .35rem .6rem;
        border-radius: 999px;
        font-size: .88rem;
        color: var(--muted)
      }

      .fleet {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem
      }

      .fleet .item {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 18px;
        overflow: hidden
      }

      .fleet .body {
        padding: 1rem
      }

      .price {
        font-weight: 800;
        font-size: 1.25rem
      }

      .table {
        width: 100%;
        border-collapse: collapse;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 14px;
        overflow: hidden
      }

      .table th,
      .table td {
        padding: .9rem;
        border-bottom: 1px solid var(--border);
        text-align: left
      }

      .table tr:last-child td {
        border-bottom: 0
      }

      .badge {
        background: #0c1b31;
        border: 1px solid #16345e;
        color: #8fb6ff;
        padding: .25rem .5rem;
        border-radius: 8px;
        font-size: .75rem
      }

      .cta {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 60
      }

      .cta a {
        display: flex;
        align-items: center;
        gap: .5rem;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: #25D366;
        color: #012d11;
        font-weight: 800;
        box-shadow: 0 12px 30px -10px #25d36655
      }

      footer {
        padding: 40px 0;
        color: var(--muted);
        text-align: center
      }

      .kicker {
        display: flex;
        gap: .6rem;
        flex-wrap: wrap
      }

      .shadow-soft {
        box-shadow: 0 10px 40px -18px rgba(0, 0, 0, .6)
      }