:root {
      --blue: #0a7eb0;
      --blue-deep: #045a82;
      --blue-dark: #02344c;
      --blue-glow: #3ec4ff;
      --aqua: #2ec4b6;
      --violet: #7b61ff;
      --coral: #ff6b6b;
      --gold: #f4b942;
      --pink: #ff7eb3;
      --lime: #7bed9f;
      --ink: #0f2430;
      --gray: #4d6673;
      --line: rgba(10, 126, 176, 0.14);
      --white: #ffffff;
      --bg: #f3fafd;
      --max: 1140px;
      --shadow: 0 20px 50px rgba(2, 52, 76, 0.12);
      --radius: 22px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Montserrat", system-ui, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }

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

    /* Ambient background blobs */
    .bg-blobs {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      overflow: hidden;
    }
    .bg-blobs span {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.45;
      animation: blob 18s ease-in-out infinite;
    }
    .bg-blobs span:nth-child(1) {
      width: 420px; height: 420px;
      background: #9adcf5;
      top: -80px; left: -100px;
    }
    .bg-blobs span:nth-child(2) {
      width: 380px; height: 380px;
      background: #b8f0e8;
      top: 40%; right: -120px;
      animation-delay: -6s;
    }
    .bg-blobs span:nth-child(3) {
      width: 300px; height: 300px;
      background: #d4c7ff;
      bottom: 5%; left: 20%;
      animation-delay: -11s;
    }
    @keyframes blob {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(30px, -20px) scale(1.08); }
    }

    /* TOP BAR */
    .topbar {
      background: linear-gradient(90deg, #045a82, #0a7eb0 40%, #2ec4b6);
      color: white;
      font-size: 0.84rem;
      font-weight: 600;
      text-align: center;
      padding: 0.6rem 1rem;
      letter-spacing: 0.02em;
    }
    .topbar a {
      color: white;
      border-bottom: 1px solid rgba(255,255,255,0.55);
      margin-left: 0.25rem;
    }

    /* NAV */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
      background: rgba(255,255,255,0.82);
      border-bottom: 1px solid rgba(10, 126, 176, 0.1);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 1rem;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: linear-gradient(145deg, #0a7eb0, #045a82);
      box-shadow: 0 10px 24px rgba(10, 126, 176, 0.35);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }
    .brand-mark svg { width: 28px; height: 34px; }
    .brand-text {
      font-family: "Archivo Black", sans-serif;
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--blue-deep);
      line-height: 1.05;
    }
    .brand-text span {
      display: block;
      font-family: "Montserrat", sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--gray);
      margin-top: 0.2rem;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.2rem 1.25rem;
      list-style: none;
      flex-wrap: wrap;
    }
    .nav-links a {
      font-family: "Archivo Black", sans-serif;
      font-size: 0.74rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--ink);
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--blue); }
    .nav-cta {
      background: linear-gradient(135deg, #0a7eb0, #2ec4b6) !important;
      color: white !important;
      padding: 0.7rem 1.1rem !important;
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(10, 126, 176, 0.3);
    }
    .nav-cta:hover { filter: brightness(1.05); }
    .menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--ink);
    }

    /* HERO */
    .hero {
      padding: 3rem 0 4rem;
      position: relative;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 2rem;
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      border: 1px solid var(--line);
      color: var(--blue-deep);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      margin-bottom: 1.2rem;
      box-shadow: 0 8px 20px rgba(10, 126, 176, 0.08);
    }
    .eyebrow i {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2ec4b6, #0a7eb0);
      box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.2);
    }
    h1 {
      font-family: "Archivo Black", sans-serif;
      font-size: clamp(2.4rem, 5.5vw, 3.9rem);
      line-height: 1.02;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: var(--blue-dark);
    }
    h1 .grad {
      background: linear-gradient(120deg, #0a7eb0, #2ec4b6 50%, #7b61ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-lead {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 34rem;
      margin-bottom: 1.6rem;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 1.6rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      font-family: "Archivo Black", sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.95rem 1.35rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, #0a7eb0, #2ec4b6);
      color: white;
      box-shadow: 0 14px 30px rgba(10, 126, 176, 0.35);
    }
    .btn-primary:disabled { opacity: 0.7; cursor: wait; transform: none; }
    .btn-ghost {
      background: white;
      color: var(--blue-deep);
      border: 1px solid var(--line);
      box-shadow: 0 8px 20px rgba(10, 126, 176, 0.06);
    }
    .trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }
    .trust-pills span {
      background: white;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0.45rem 0.8rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gray);
    }

    /* Hero stage with big IV bags */
    .hero-stage {
      position: relative;
      min-height: 480px;
      display: grid;
      place-items: center;
    }
    .stage-glow {
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(62, 196, 255, 0.45), transparent 68%);
      filter: blur(10px);
    }
    .stage-ring {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 1px dashed rgba(10, 126, 176, 0.25);
      animation: spin 28s linear infinite;
    }
    .stage-ring-2 {
      width: 360px;
      height: 360px;
      border-style: solid;
      border-color: rgba(46, 196, 182, 0.15);
      animation-direction: reverse;
      animation-duration: 36s;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .iv-float {
      position: relative;
      z-index: 2;
      animation: floaty 5s ease-in-out infinite;
      filter: drop-shadow(0 28px 35px rgba(2, 52, 76, 0.22));
    }
    .iv-float.side-left {
      position: absolute;
      left: 4%;
      bottom: 8%;
      width: 110px;
      opacity: 0.92;
      animation-delay: -1.5s;
      z-index: 1;
      transform: rotate(-12deg);
    }
    .iv-float.side-right {
      position: absolute;
      right: 2%;
      top: 10%;
      width: 100px;
      opacity: 0.9;
      animation-delay: -3s;
      z-index: 1;
      transform: rotate(14deg);
    }
    .iv-float.main { width: min(230px, 55vw); }
    @keyframes floaty {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }
    .iv-float.side-left { animation-name: floaty-left; }
    .iv-float.side-right { animation-name: floaty-right; }
    @keyframes floaty-left {
      0%, 100% { transform: rotate(-12deg) translateY(0); }
      50% { transform: rotate(-12deg) translateY(-10px); }
    }
    @keyframes floaty-right {
      0%, 100% { transform: rotate(14deg) translateY(0); }
      50% { transform: rotate(14deg) translateY(-12px); }
    }

    .hero-stats {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.6rem;
      z-index: 3;
      width: min(100%, 340px);
    }
    .hero-stats div {
      flex: 1;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(10px);
      border: 1px solid white;
      border-radius: 16px;
      padding: 0.7rem 0.5rem;
      text-align: center;
      box-shadow: var(--shadow);
    }
    .hero-stats strong {
      display: block;
      font-family: "Archivo Black", sans-serif;
      color: var(--blue-deep);
      font-size: 0.95rem;
    }
    .hero-stats span {
      font-size: 0.72rem;
      color: var(--gray);
      font-weight: 600;
    }

    /* SECTIONS */
    section { padding: 4.5rem 0; position: relative; }
    .section-title {
      font-family: "Archivo Black", sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.3rem);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      text-align: center;
      color: var(--blue-dark);
      margin-bottom: 0.65rem;
    }
    .section-sub {
      text-align: center;
      color: var(--gray);
      max-width: 40rem;
      margin: 0 auto 2.4rem;
      font-size: 1.02rem;
    }

    /* Marquee of mini bags */
    .marquee-wrap {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      margin: 0 0 1rem;
    }
    .marquee {
      display: flex;
      gap: 1rem;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .marquee-card {
      width: 150px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 0.85rem 0.7rem 0.9rem;
      text-align: center;
      box-shadow: 0 10px 24px rgba(2, 52, 76, 0.06);
    }
    .marquee-card .bag { width: 70px; margin: 0 auto 0.5rem; }
    .marquee-card strong {
      display: block;
      font-size: 0.72rem;
      font-family: "Archivo Black", sans-serif;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--blue-deep);
    }
    .marquee-card span {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--aqua);
    }
    @keyframes marquee {
      to { transform: translateX(-50%); }
    }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }
    .glass-card {
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 28px;
      padding: 1.8rem;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .glass-card h2 {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: 1.55rem;
      letter-spacing: 0.02em;
      color: var(--blue-dark);
      margin-bottom: 0.9rem;
    }
    .glass-card p {
      color: var(--gray);
      margin-bottom: 0.9rem;
    }
    .check-list {
      list-style: none;
      display: grid;
      gap: 0.65rem;
      margin: 1.1rem 0 1.4rem;
    }
    .check-list li {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
      color: var(--gray);
      font-weight: 500;
      font-size: 0.95rem;
    }
    .check-list li::before {
      content: "";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.1rem;
      background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat,
        linear-gradient(135deg, #0a7eb0, #2ec4b6);
    }

    .showcase {
      position: relative;
      min-height: 420px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 40%),
        linear-gradient(145deg, #045a82, #0a7eb0 45%, #2ec4b6);
      overflow: hidden;
      display: grid;
      place-items: center;
      box-shadow: var(--shadow);
      color: white;
      padding: 2rem;
    }
    .showcase .sparkle {
      position: absolute;
      width: 8px; height: 8px;
      background: white;
      border-radius: 50%;
      opacity: 0.7;
      animation: twinkle 3s ease-in-out infinite;
    }
    .showcase .sparkle:nth-child(1) { top: 18%; left: 20%; }
    .showcase .sparkle:nth-child(2) { top: 30%; right: 18%; animation-delay: -1s; width: 6px; height: 6px; }
    .showcase .sparkle:nth-child(3) { bottom: 22%; left: 28%; animation-delay: -1.8s; }
    @keyframes twinkle {
      0%, 100% { opacity: 0.25; transform: scale(0.8); }
      50% { opacity: 1; transform: scale(1.2); }
    }
    .showcase-copy {
      position: absolute;
      bottom: 1.4rem;
      left: 1.4rem;
      right: 1.4rem;
      z-index: 2;
    }
    .showcase-copy h3 {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: 1.25rem;
      margin-bottom: 0.3rem;
    }
    .showcase-copy p { opacity: 0.9; font-size: 0.92rem; }

    /* Why */
    .why {
      background: linear-gradient(180deg, transparent, rgba(10, 126, 176, 0.05), transparent);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .why-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 1.35rem 1.15rem;
      text-align: center;
      box-shadow: 0 12px 30px rgba(2, 52, 76, 0.05);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }
    .why-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 0.9rem;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 1.5rem;
    }
    .why-card:nth-child(1) .why-icon { background: linear-gradient(145deg, #d7f6ff, #9adcf5); }
    .why-card:nth-child(2) .why-icon { background: linear-gradient(145deg, #fff3c4, #f4b942); }
    .why-card:nth-child(3) .why-icon { background: linear-gradient(145deg, #d8fff0, #7bed9f); }
    .why-card:nth-child(4) .why-icon { background: linear-gradient(145deg, #ebe4ff, #7b61ff); color: white; }
    .why-card h3 {
      font-family: "Archivo Black", sans-serif;
      font-size: 0.88rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--blue-dark);
      margin-bottom: 0.4rem;
    }
    .why-card p { color: var(--gray); font-size: 0.9rem; }

    /* MENU with IV bag art */
    .tier-label {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      justify-content: center;
      margin: 2.4rem 0 1.25rem;
    }
    .tier-label span {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.92rem;
      color: var(--blue-deep);
      background: white;
      border: 1px solid var(--line);
      padding: 0.45rem 1rem;
      border-radius: 999px;
      box-shadow: 0 8px 18px rgba(10, 126, 176, 0.08);
    }
    .tier-label::before,
    .tier-label::after {
      content: "";
      height: 2px;
      width: min(120px, 12vw);
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
      border-radius: 2px;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }
    .menu-card {
      position: relative;
      background: white;
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 1.2rem 1.2rem 1.3rem;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 12px 28px rgba(2, 52, 76, 0.05);
    }
    .menu-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: var(--accent, linear-gradient(90deg, #0a7eb0, #2ec4b6));
    }
    .menu-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(2, 52, 76, 0.14);
    }
    .menu-card.featured {
      border-color: transparent;
      background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #0a7eb0, #2ec4b6, #7b61ff) border-box;
      border: 2px solid transparent;
    }
    .menu-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: linear-gradient(135deg, #f4b942, #ff9f43);
      color: #5a3a00;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.3rem 0.55rem;
      border-radius: 999px;
      z-index: 2;
    }
    .bag-stage {
      height: 180px;
      display: grid;
      place-items: center;
      margin: 0.2rem 0 0.7rem;
      position: relative;
    }
    .bag-stage .bag-svg {
      width: 108px;
      filter: drop-shadow(0 16px 18px rgba(2, 52, 76, 0.18));
      transition: transform 0.25s;
    }
    .menu-card:hover .bag-svg { transform: translateY(-6px) scale(1.04); }
    .bag-stage .droplets {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .menu-card h3 {
      font-family: "Archivo Black", sans-serif;
      font-size: 1.05rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--blue-dark);
      margin-bottom: 0.3rem;
    }
    .menu-price {
      font-weight: 800;
      font-size: 1.25rem;
      background: linear-gradient(120deg, var(--blue-deep), var(--aqua));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.55rem;
    }
    .menu-price small {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gray);
      background: none;
      -webkit-text-fill-color: var(--gray);
    }
    .menu-card > p {
      color: var(--gray);
      font-size: 0.92rem;
      margin-bottom: 0.7rem;
      flex: 1;
    }
    .menu-card .benefits {
      font-size: 0.8rem;
      color: #6b8290;
      font-style: italic;
      margin-bottom: 1rem;
      line-height: 1.45;
    }
    .menu-card .btn { width: 100%; margin-top: auto; }

    /* Addons */
    .addons {
      background: white;
      border-block: 1px solid var(--line);
    }
    .table-wrap {
      overflow-x: auto;
      border-radius: 20px;
      border: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(2, 52, 76, 0.05);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 520px;
    }
    th, td {
      padding: 0.9rem 1.1rem;
      text-align: left;
      border-bottom: 1px solid var(--line);
      font-size: 0.94rem;
    }
    th {
      background: linear-gradient(135deg, #045a82, #0a7eb0);
      color: white;
      font-family: "Archivo Black", sans-serif;
      font-size: 0.76rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 400;
    }
    td:last-child, th:last-child {
      text-align: right;
      font-weight: 800;
      color: var(--blue-deep);
      white-space: nowrap;
    }
    th:last-child { color: white; }
    tbody tr:hover { background: #f0faff; }
    tr:last-child td { border-bottom: none; }
    .table-note {
      margin-top: 0.9rem;
      color: var(--gray);
      font-size: 0.88rem;
    }

    /* Process */
    .process {
      background: linear-gradient(145deg, #02344c, #045a82 50%, #0a7eb0);
      color: white;
      overflow: hidden;
    }
    .process .section-title { color: white; }
    .process .section-sub { color: rgba(255,255,255,0.8); }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .step {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 20px;
      padding: 1.3rem;
      backdrop-filter: blur(8px);
    }
    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-family: "Archivo Black", sans-serif;
      background: linear-gradient(135deg, #3ec4ff, #2ec4b6);
      color: #02344c;
      margin-bottom: 0.85rem;
    }
    .step h3 {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: 0.88rem;
      letter-spacing: 0.04em;
      margin-bottom: 0.4rem;
    }
    .step p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

    /* Quotes */
    .quote-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .quote {
      background: white;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 1.35rem;
      box-shadow: 0 12px 28px rgba(2, 52, 76, 0.05);
      position: relative;
    }
    .quote::before {
      content: "“";
      position: absolute;
      top: 0.4rem;
      right: 1rem;
      font-size: 3.5rem;
      line-height: 1;
      color: rgba(10, 126, 176, 0.12);
      font-family: Georgia, serif;
    }
    .quote p {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: 0.9rem;
      font-style: italic;
      position: relative;
    }
    .quote strong {
      color: var(--blue-deep);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* FAQ */
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: grid;
      gap: 0.7rem;
    }
    details {
      background: white;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 1rem 1.15rem;
      box-shadow: 0 8px 20px rgba(2, 52, 76, 0.04);
    }
    details[open] { border-color: rgba(10, 126, 176, 0.35); }
    summary {
      cursor: pointer;
      font-weight: 700;
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      color: var(--blue);
      font-size: 1.3rem;
      font-weight: 500;
    }
    details[open] summary::after { content: "–"; }
    details .answer {
      color: var(--gray);
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--line);
      font-size: 0.95rem;
    }

    /* Contact */
    .contact {
      padding-bottom: 5rem;
    }
    .contact-shell {
      border-radius: 32px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      background: linear-gradient(135deg, #02344c, #0a7eb0 55%, #2ec4b6);
      box-shadow: 0 30px 60px rgba(2, 52, 76, 0.25);
      position: relative;
      align-items: start;
    }
    .contact-shell::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
      right: -60px;
      top: -60px;
    }
    .contact-info {
      color: white;
      padding: clamp(1.6rem, 4vw, 2.5rem);
      position: sticky;
      top: 1rem;
      z-index: 1;
    }
    .contact-info h2 {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 0.75rem;
    }
    .contact-info > p {
      opacity: 0.9;
      margin-bottom: 1.4rem;
      max-width: 34ch;
    }
    .contact-bags {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1.4rem;
    }
    .contact-bags .mini {
      width: 54px;
      filter: drop-shadow(0 8px 12px rgba(0,0,0,0.2));
      animation: floaty 4.5s ease-in-out infinite;
    }
    .contact-bags .mini:nth-child(2) { animation-delay: -1s; }
    .contact-bags .mini:nth-child(3) { animation-delay: -2s; }
    .contact-meta {
      display: grid;
      gap: 0.75rem;
    }
    .contact-meta div {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 14px;
      padding: 0.85rem 1rem;
    }
    .contact-meta strong {
      display: block;
      font-family: "Archivo Black", sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.75;
      margin-bottom: 0.2rem;
    }
    .contact-meta a {
      color: white;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .booking-form {
      background: white;
      margin: 1rem;
      border-radius: 24px;
      padding: 1.4rem;
      position: relative;
      z-index: 1;
      display: grid;
      gap: 0.8rem;
      box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }
    .booking-form h3 {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--blue-deep);
      font-size: 1.05rem;
    }
    .form-section {
      display: grid;
      gap: 0.75rem;
      padding: 0.85rem 0 0.35rem;
      border-top: 1px solid #e2eef4;
    }
    .form-section:first-of-type { border-top: none; padding-top: 0.2rem; }
    .form-section-title {
      font-family: "Archivo Black", sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--blue-deep);
      margin: 0;
    }
    .form-section-note {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--gray);
      line-height: 1.4;
      margin: 0;
    }
    .form-fieldset {
      border: 1px solid #d7e8f0;
      border-radius: 14px;
      padding: 0.75rem 0.85rem;
      margin: 0;
      background: #f7fcff;
    }
    .form-fieldset legend {
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--ink);
      padding: 0 0.25rem;
    }
    .check-grid {
      display: grid;
      gap: 0.55rem;
    }
    .radio-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.25rem;
    }
    .booking-form label.choice,
    label.choice {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.35;
      cursor: pointer;
    }
    .booking-form label.choice input,
    label.choice input {
      width: auto;
      margin-top: 0.15rem;
      flex-shrink: 0;
      accent-color: var(--blue);
    }
    .choice-none {
      margin-top: 0.25rem;
      padding-top: 0.55rem;
      border-top: 1px dashed #d7e8f0;
    }
    .consent-line {
      background: #f0faf7;
      border: 1px solid #cfe9e2;
      border-radius: 12px;
      padding: 0.7rem 0.8rem;
    }
    .booking-form label {
      display: grid;
      gap: 0.3rem;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--ink);
    }
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
      width: 100%;
      border: 1px solid #d7e8f0;
      border-radius: 12px;
      padding: 0.75rem 0.85rem;
      background: #f7fcff;
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .booking-form input:focus,
    .booking-form select:focus,
    .booking-form textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(10, 126, 176, 0.12);
      background: white;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }
    .form-note {
      font-size: 0.76rem;
      color: var(--gray);
      text-align: center;
    }
    .form-error {
      display: none;
      background: #ffecec;
      border: 1px solid #ffc9c9;
      color: #9b1c1c;
      border-radius: 12px;
      padding: 0.7rem 0.85rem;
      font-size: 0.88rem;
    }
    .form-error.show { display: block; }
    .form-notice {
      background: #fff8e6;
      border: 1px solid #f4d48a;
      color: #6b4e00;
      border-radius: 12px;
      padding: 0.75rem 0.9rem;
      font-size: 0.84rem;
      line-height: 1.45;
    }
    .form-notice strong { color: #5a3a00; }
    .booking-form .btn-ghost {
      border: 1px solid #d7e8f0;
      background: #f7fcff;
      color: var(--blue-deep);
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 1.5rem 0.5rem;
    }
    .form-success.show { display: block; }
    .form-success h3 { margin-bottom: 0.45rem; }
    .form-success p { color: var(--gray); }
    .booking-form.sent .fields { display: none; }

    footer {
      background: #0b1c26;
      color: #8aa0ad;
      padding: 2.2rem 0 2rem;
      font-size: 0.88rem;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.2rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand {
      font-family: "Archivo Black", sans-serif;
      color: white;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.2rem;
      list-style: none;
    }
    .footer-links a:hover { color: #7ad4ff; }
    .disclaimer {
      font-size: 0.76rem;
      line-height: 1.55;
      max-width: 900px;
    }

    @media (max-width: 960px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem 1.35rem;
        border-bottom: 1px solid var(--line);
        gap: 0.85rem;
      }
      .nav-links.open { display: flex; }
      .menu-btn { display: block; }
      .hero-grid,
      .about-grid,
      .contact-shell,
      .why-grid,
      .menu-grid,
      .steps,
      .quote-grid { grid-template-columns: 1fr 1fr; }
      .hero-stage { min-height: 420px; }
    }
    @media (max-width: 640px) {
      .hero-grid,
      .about-grid,
      .contact-shell,
      .why-grid,
      .menu-grid,
      .steps,
      .quote-grid,
      .form-row { grid-template-columns: 1fr; }
      .iv-float.side-left,
      .iv-float.side-right { display: none; }
      .hero-stage { min-height: 380px; }
      .contact-shell { margin: 0; border-radius: 24px; }
      .booking-form { margin: 0 0.75rem 0.75rem; }
    }
