    :root {
      --teal: #18d6c8;
      --teal-2: #8bfff2;
      --teal-deep: #069e96;
      --ink: #050707;
      --ink-soft: #111817;
      --cream: #fffdf8;
      --sand: #fff2df;
      --card: #ffffff;
      --muted: #667370;
      --line: rgba(5, 7, 7, 0.11);
      --gold: #ffd37a;
      --danger-soft: #fff0e8;
      --danger-text: #5e4034;
      --error-text: #b9472f;
      --error-border: #d65f4a;
      --teal-soft: #d8fffb;
      --detail-bg: #f7fbfa;
      --radius-xl: 34px;
      --radius-lg: 24px;
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
      --shadow-soft: 0 20px 54px rgba(5, 7, 7, 0.09);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .page { overflow: hidden; }
    .container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

    h1, h2, h3 {
      margin: 0;
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      letter-spacing: -0.06em;
      line-height: 0.94;
    }

    h1 { font-size: clamp(62px, 10vw, 138px); max-width: 840px; text-wrap: balance; }
    h2 { font-size: clamp(42px, 6vw, 78px); max-width: 760px; text-wrap: balance; }
    h3 { font-size: 28px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 16px 24px;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 850;
      letter-spacing: -0.025em;
      white-space: nowrap;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: var(--ink);
      background: linear-gradient(135deg, var(--teal), var(--teal-2));
      box-shadow: 0 18px 48px rgba(24, 214, 200, 0.36);
    }
    .btn-primary:hover { box-shadow: 0 24px 60px rgba(24, 214, 200, 0.48); }
    .btn-dark {
      color: white;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(16px);
      min-height: 46px;
      padding: 12px 16px;
      font-size: 14px;
    }

    .nav {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 20;
      padding: 18px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .logo-mark {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(14px);
    }

    .logo-img {
      height: 44px;
      width: auto;
      display: block;
      filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.18));
    }

    .logo-mark svg { width: 25px; height: 25px; }

    .hero {
      min-height: 100svh;
      position: relative;
      display: grid;
      align-items: end;
      color: white;
      padding: 108px 0 42px;
      background:
        linear-gradient(180deg, rgba(5, 7, 7, 0.36) 0%, rgba(5, 7, 7, 0.18) 35%, rgba(5, 7, 7, 0.94) 100%),
        url("https://images.unsplash.com/photo-1502680390469-be75c86b636f?auto=format&fit=crop&w=2400&q=82") center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 170px;
      background: linear-gradient(0deg, var(--ink), transparent);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--teal-soft);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.055em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 999px;
      background: var(--teal);
    }

    .hero-copy {
      max-width: 650px;
      margin: 22px 0 28px;
      color: rgba(255, 255, 255, 0.84);
      font-size: clamp(18px, 2.3vw, 25px);
      line-height: 1.45;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .microcopy {
      margin: 13px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      line-height: 1.45;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 12px;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.86);
      background: rgba(255, 255, 255, 0.11);
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(14px);
      font-size: 13px;
      font-weight: 800;
    }

    .booking-card {
      padding: 24px;
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, 0.11);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(24px);
      box-shadow: var(--shadow);
    }

    .booking-label {
      margin-bottom: 10px;
      color: var(--teal-soft);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .price {
      margin: 0 0 8px;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(42px, 5vw, 66px);
      font-weight: 800;
      line-height: 0.92;
      letter-spacing: -0.07em;
    }

    .price span {
      display: block;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.74);
      font-family: "Manrope", sans-serif;
      font-size: 16px;
      font-weight: 750;
      letter-spacing: -0.02em;
      line-height: 1.35;
    }

    .quick-list {
      display: grid;
      gap: 12px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.86);
      font-weight: 750;
    }

    .quick-list li { display: flex; gap: 10px; align-items: flex-start; }
    .check {
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: var(--ink);
      background: var(--teal);
      font-size: 14px;
      font-weight: 900;
    }

    .section-pad { padding: 92px 0; }
    .dark { color: white; background: var(--ink); }
    .section-head {
      display: grid;
      grid-template-columns: 0.9fr 1fr;
      gap: 30px;
      align-items: end;
      margin-bottom: 34px;
    }

    .lead {
      max-width: 650px;
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .dark .lead { color: rgba(255, 255, 255, 0.72); }

    .steps {
      color: white;
      background: var(--ink);
      padding-top: 76px;
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .step {
      min-height: 260px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      padding: 26px;
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .step::after {
      content: attr(data-num);
      position: absolute;
      right: -10px;
      bottom: -28px;
      color: rgba(24, 214, 200, 0.12);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 138px;
      font-weight: 800;
      letter-spacing: -0.08em;
    }

    .step-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      position: relative;
      z-index: 1;
      border-radius: 16px;
      background: var(--teal);
      color: var(--ink);
    }

    .step h3 { position: relative; z-index: 1; max-width: 260px; font-size: 32px; }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .photo-card {
      min-height: 560px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, transparent 0%, rgba(5, 7, 7, 0.62) 100%),
        url("/pengar-cutback.jpg") center/cover no-repeat;
      box-shadow: var(--shadow-soft);
    }

    .badge {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    }

    .badge strong {
      display: block;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 34px;
      line-height: 1;
      letter-spacing: -0.06em;
    }

    .badge span { display: block; margin-top: 7px; color: var(--muted); font-weight: 850; }

    .story-card {
      padding: 44px;
      border-radius: var(--radius-xl);
      background: white;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .story-card p {
      margin: 0;
      font-size: clamp(20px, 2.4vw, 30px);
      font-weight: 780;
      line-height: 1.32;
      letter-spacing: -0.035em;
    }

    .small-line { margin-top: 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }

    .local {
      color: white;
      background:
        radial-gradient(circle at 22% 0%, rgba(24, 214, 200, 0.18), transparent 34%),
        var(--ink);
    }

    .local-box { width: min(900px, 100%); margin: 0 auto; text-align: center; }
    .local h2 { margin: 0 auto 24px; }
    .local p {
      margin: 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: clamp(20px, 3vw, 34px);
      font-weight: 720;
      line-height: 1.35;
      letter-spacing: -0.04em;
    }

    .pricing { background: var(--sand); }
    .pricing-card {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      overflow: hidden;
      border-radius: 36px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .price-panel {
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 40px;
      color: white;
      background:
        linear-gradient(180deg, rgba(5, 7, 7, 0.18), rgba(5, 7, 7, 0.78)),
        url("/pengar-tube.jpg") center/cover no-repeat;
    }

    .pill {
      width: fit-content;
      display: inline-flex;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--ink);
      background: var(--gold);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .details-panel { padding: 40px; }
    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 24px 0;
    }

    .detail {
      padding: 20px;
      border-radius: 22px;
      background: var(--detail-bg);
      border: 1px solid var(--line);
    }

    .detail strong { display: block; margin-bottom: 8px; font-size: 15px; letter-spacing: -0.02em; }
    .detail span { display: block; color: var(--muted); font-size: 14px; line-height: 1.5; }
    .fineprint { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

    .secure-note {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: var(--danger-soft);
      color: var(--danger-text);
      font-size: 13px;
      font-weight: 750;
      line-height: 1.45;
    }

    /* ============================================
       BOOKING FORM (Step 1) + STEP 2 reveal
       ============================================ */
    .booking-form {
      display: grid;
      gap: 14px;
      margin: 22px 0 0;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field { display: grid; gap: 6px; }

    .field label {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .field label .req { color: var(--teal-deep); margin-left: 2px; }
    .field label .opt { color: var(--muted); font-weight: 700; margin-left: 4px; }

    .field input[type="text"],
    .field input[type="email"],
    .field input[type="tel"],
    .field input[type="date"],
    .field select,
    .field textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: white;
      font-family: "Manrope", sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      -webkit-appearance: none;
      appearance: none;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--teal-deep);
      box-shadow: 0 0 0 3px rgba(24, 214, 200, 0.18);
    }

    .field input.invalid,
    .field select.invalid,
    .field textarea.invalid {
      border-color: var(--error-border);
    }

    .field textarea {
      resize: vertical;
      min-height: 78px;
      line-height: 1.45;
    }

    /* Custom dropdown arrow */
    .field select {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23050707' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }

    .field-error {
      font-size: 12px;
      color: var(--error-text);
      font-weight: 700;
      display: none;
    }
    .field.has-error .field-error { display: block; }

    .field-hint {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.4;
    }
    .field.has-error .field-hint { display: none; }

    /* Phone compound field — flag selector + number input */
    .phone-wrap {
      display: flex;
      align-items: stretch;
      background: white;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .phone-wrap:focus-within {
      border-color: var(--teal-deep);
      box-shadow: 0 0 0 3px rgba(24, 214, 200, 0.18);
    }

    .field.has-error .phone-wrap {
      border-color: var(--error-border);
    }

    .phone-wrap .dial-select {
      flex: 0 0 auto;
      width: auto;
      max-width: 200px;
      padding: 14px 28px 14px 14px;
      border: 0;
      border-right: 1px solid var(--line);
      border-radius: 0;
      background-color: var(--detail-bg);
      background-position: right 8px center;
      font-size: 14px;
    }

    .phone-wrap .dial-select:focus {
      border-color: transparent;
      box-shadow: none;
    }

    .field .phone-wrap input[type="tel"] {
      flex: 1;
      width: auto;
      padding: 14px 16px;
      border: 0;
      border-radius: 0;
      background: transparent;
    }

    .field .phone-wrap input[type="tel"]:focus {
      border-color: transparent;
      box-shadow: none;
    }

    .field .phone-wrap input[type="tel"].invalid {
      border-color: transparent;
    }

    /* Honeypot — visually hidden, never displayed to humans */
    .honeypot {
      position: absolute;
      left: -10000px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .policy-note {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-top: 4px;
      padding: 12px 14px;
      border-radius: 14px;
      background: var(--danger-soft);
      color: var(--danger-text);
      font-size: 13px;
      font-weight: 750;
      line-height: 1.45;
    }

    .btn-submit {
      width: 100%;
      margin-top: 6px;
    }
    .btn-submit[disabled] {
      opacity: 0.55;
      cursor: wait;
      transform: none !important;
    }

    .form-status-error {
      margin-top: 8px;
      padding: 12px 14px;
      border-radius: 12px;
      background: var(--danger-soft);
      color: var(--danger-text);
      font-size: 13px;
      font-weight: 700;
      display: none;
    }
    .form-status-error.visible { display: block; }

    /* Step 2 — Confirm and pay */
    .step-2 {
      margin-top: 22px;
      padding: 24px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(24, 214, 200, 0.12), rgba(139, 255, 242, 0.08));
      border: 1px solid rgba(24, 214, 200, 0.32);
      display: none;
      animation: stepReveal 0.5s ease both;
    }
    .step-2.visible { display: block; }
    @keyframes stepReveal {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .step-2-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      font-weight: 850;
      font-size: 14px;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .check-circle {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--teal);
      color: var(--ink);
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 14px;
      flex: 0 0 auto;
    }

    .step-2 .summary {
      margin: 0 0 16px;
      padding: 12px 14px;
      background: white;
      border-radius: 14px;
      border: 1px solid var(--line);
      font-size: 14px;
      font-weight: 700;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .step-2 stripe-buy-button {
      display: block;
      margin: 0 0 14px;
    }

    .step-2 .step-2-note {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .faq { background: var(--cream); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .faq-item {
      padding: 24px;
      border-radius: 24px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .faq-item h3 { margin-bottom: 12px; font-size: 24px; }
    .faq-item p { margin: 0; color: var(--muted); line-height: 1.6; }

    .closing {
      min-height: 76svh;
      display: grid;
      place-items: center;
      padding: 96px 0 34px;
      color: white;
      text-align: center;
      background:
        radial-gradient(circle at 50% 0%, rgba(24, 214, 200, 0.2), transparent 36%),
        linear-gradient(180deg, var(--ink-soft), var(--ink));
    }

    .closing h2 { margin: 0 auto 24px; max-width: 850px; }
    .closing .lead { margin: 0 auto 30px; color: rgba(255, 255, 255, 0.74); max-width: 580px; }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
      margin-top: 72px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
      font-weight: 750;
    }

    .mobile-sticky {
      display: none;
      position: fixed;
      z-index: 60;
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 10px;
      border-radius: 999px;
      background: rgba(5, 7, 7, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
    }

    .mobile-sticky .btn { width: 100%; min-height: 56px; }
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 880px) {
      .container { width: min(100% - 28px, 760px); }
      .hero { min-height: 100svh; padding: 96px 0 118px; }
      .hero-grid, .section-head, .split, .pricing-card { grid-template-columns: 1fr; }
      .booking-card { display: none; }
      .step-grid, .faq-grid, .details-grid, .form-row { grid-template-columns: 1fr; }
      .section-pad { padding: 68px 0; }
      .step { min-height: 220px; }
      .photo-card { min-height: 470px; }
      .story-card, .details-panel, .price-panel { padding: 26px; }
      .mobile-sticky { display: block; }
      body { padding-bottom: 86px; }
      .nav .btn-dark { display: none; }
      .hero-copy { margin-bottom: 22px; }
    }

    @media (max-width: 430px) {
      h1 { font-size: 66px; }
      .brand { font-size: 20px; }
      .btn { width: 100%; }
      .hero-actions { align-items: stretch; }
      .trust-row { gap: 8px; }
      .trust-pill { font-size: 12px; }
      .photo-card { min-height: 420px; }
      .step h3 { font-size: 30px; }
      .local-box, .local p { text-align: left; }
      .footer-links { margin-top: 54px; }
    }

    /* Details panel — avoids inline style="" in HTML */
    .details-panel .eyebrow { color: var(--teal-deep); margin-top: 0; }
    .details-panel h2 { font-size: clamp(38px, 5vw, 62px); }
