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

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0e1a;
    color: #e8eaf0;
    line-height: 1.6;
  }

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

  /* ── NAV ── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .nav-logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: #fff;
  }
  .nav-logo span { color: #f59e0b; }
  .nav-email {
    font-size: 0.85rem;
    color: #8b93a7;
  }
  .nav-email:hover { color: #e8eaf0; }

  /* ── HERO ── */
  .hero {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #050a18;
  }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,14,26,0.88) 0%, rgba(10,14,26,0.25) 60%);
    display: flex;
    align-items: center;
    padding: 0 4rem;
  }
  .hero-content { max-width: 640px; }
  .hero-tag {
    display: inline-block;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
  }
  .hero h1 em {
    font-style: normal;
    color: #f59e0b;
  }
  .hero p {
    font-size: 1.1rem;
    color: #c5c9d6;
    margin-bottom: 2rem;
    max-width: 520px;
  }
  .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0a0e1a;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-align: center;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.35);
  }
  .hero-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
  }

  /* ── SECTION ── */
  .section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
  }
  .section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 0.75rem;
  }
  .section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
  }
  .section-subtitle {
    text-align: center;
    color: #8b93a7;
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── AI TRIP PLANNER ── */
  .ai-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(245,158,11,0.25);
  }
  .ai-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .ai-section {
    background: linear-gradient(135deg, #111827, #1a2235);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin: 0 auto 5rem;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .ai-section.reverse {
    grid-template-columns: 1fr 1fr;
  }
  .ai-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    color: #f59e0b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
  }
  .ai-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .ai-title em {
    font-style: normal;
    color: #f59e0b;
  }
  .ai-text {
    font-size: 0.95rem;
    color: #8b93a7;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .ai-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .ai-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #c5c9d6;
  }
  .ai-check {
    width: 20px;
    height: 20px;
    background: rgba(245,158,11,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #f59e0b;
    flex-shrink: 0;
  }
  .ai-demo-box {
    background: #0a0e1a;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .ai-demo-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
  }
  .demo-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 1rem;
  }
  .demo-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .demo-msg {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
  }
  .demo-msg.user { justify-content: flex-end; }
  .demo-bubble {
    max-width: 75%;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .demo-msg:not(.user) .demo-bubble {
    background: #1f2937;
    color: #e8eaf0;
  }
  .demo-msg.user .demo-bubble {
    background: rgba(245,158,11,0.2);
    border: 1px solid rgba(245,158,11,0.3);
    color: #f59e0b;
  }
  .demo-timer {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #6b7280;
  }
  .demo-timer-bar {
    flex: 1;
    height: 4px;
    background: #1f2937;
    border-radius: 4px;
    overflow: hidden;
  }
  .demo-timer-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    width: 0%;
    transition: width 2s linear;
  }

  /* ── SERVICES GRID ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  .service-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .service-card:hover {
    border-color: rgba(245,158,11,0.5);
    transform: translateY(-2px);
  }
  .service-icon {
    width: 44px;
    height: 44px;
    background: rgba(245,158,11,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .service-card h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
  .service-card p { font-size: 0.82rem; color: #6b7280; line-height: 1.5; }

  /* ── HOW IT WORKS (4 steps) ── */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    position: relative;
  }
  .step-num {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: #0a0e1a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  .step h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
  .step p { font-size: 0.82rem; color: #8b93a7; line-height: 1.5; }

  /* ── PRICING ── */
  .pricing-card {
    background: linear-gradient(135deg, #111827, #1a2235);
    border: 1px solid rgba(245,158,11,0.35);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 620px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
  }
  .pricing-badge {
    display: inline-block;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    color: #f59e0b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
  }
  .pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }
  .pricing-price span {
    font-size: 1.5rem;
    font-weight: 400;
    color: #8b93a7;
  }
  .pricing-period {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
  }
  .pricing-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #c5c9d6;
  }
  .pricing-includes .check-icon {
    width: 20px;
    height: 20px;
    background: rgba(245,158,11,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #f59e0b;
    flex-shrink: 0;
  }
  .pricing-auto {
    background: #0a0e1a;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .pricing-auto strong { color: #c5c9d6; }

  /* ── LOYALTY POINTS BADGE ── */
  .points-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.35);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    color: #d1d5db;
    margin: 1rem auto 0;
    max-width: 420px;
  }
  .points-badge-icon {
    width: 22px;
    height: 22px;
    background: rgba(245,158,11,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #f59e0b;
    flex-shrink: 0;
  }
  .points-badge strong { color: #f59e0b; }

  /* ── CTA BAND ── */
  .cta-band {
    background: linear-gradient(135deg, #111827, #1a2235);
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 0 auto 5rem;
    max-width: 800px;
  }
  .cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
  }
  .cta-band p {
    color: #8b93a7;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* ── TESTIMONIAL ── */
  .testimonial {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    max-width: 720px;
    margin: 0 auto 5rem;
  }
  .testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .testimonial-text::before { content: '“'; }
  .testimonial-text::after { content: '”'; }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0a0e1a;
  }
  .testimonial-name { font-weight: 600; color: #e8eaf0; font-size: 0.9rem; }
  .testimonial-role { font-size: 0.8rem; color: #6b7280; }

  /* ── CERTIFICATIONS ── */
  .certs-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem 2rem;
    text-align: center;
  }
  .certs-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    opacity: 0.8;
  }
  .certs-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
  }
  .cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .cert-badge:hover { opacity: 0.75; }
  .cert-logo {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cert-logo-text {
    font-weight: 800;
    font-size: 0.95rem;
    color: #c5c9d6;
    letter-spacing: 0.04em;
  }
  .cert-tag {
    font-size: 0.7rem;
    color: #8b93a7;
  }
  .cert-trustpilot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
  .cert-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  .cert-review-link {
    font-size: 0.78rem;
    color: #8b93a7;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid #1f2937;
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
  }
  footer a:hover { color: #e8eaf0; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.25rem; }
    .hero-overlay { padding: 0 1.5rem; width: 100%; max-width: 100%; box-sizing: border-box; }
    .hero { height: 420px; }
    .hero img { height: 420px; object-position: center 35%; }
    .section { padding: 3rem 1.25rem; width: 100%; max-width: 100%; overflow: visible; box-sizing: border-box; }
    .section-title { overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
    .ai-section { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.5rem; width: 100%; max-width: 100%; box-sizing: border-box; }
    .cta-band { padding: 3rem 1.5rem; width: 100%; max-width: 100%; box-sizing: border-box; }
    .pricing-card { padding: 2rem 1.5rem; width: 100%; max-width: 100%; box-sizing: border-box; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
  }
