
    :root {
      --bg: #050816;
      --bg-soft: #0b1020;
      --accent: #ffb347;
      --accent-strong: #ff9a23;
      --accent-soft: rgba(255, 179, 71, 0.16);
      --text: #f9fafb;
      --text-muted: #9ca3af;
      --border-subtle: rgba(148, 163, 184, 0.3);
      --card-bg: rgba(15, 23, 42, 0.9);
      --radius-xl: 24px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
      --nav-height: 72px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
      color: var(--text);
    }

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

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

    .page {
      min-height: 100vh;
      color: var(--text);
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* Header */

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(22px);
      background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.7));
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    }

    .nav {
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #ffffff, #38bdf8 38%, #1e3a8a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: #0b1020;
      box-shadow: 0 12px 30px rgba(56, 189, 248, 0.6);
    }

    .logo-text-main {
      font-weight: 700;
      letter-spacing: 0.04em;
      font-size: 17px;
      text-transform: uppercase;
    }

    .logo-text-sub {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 14px;
    }

    nav a {
      color: var(--text-muted);
      position: relative;
      padding: 4px 0;
      transition: color 0.15s ease;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 2px;
      border-radius: 999px;
      transform-origin: center;
      transform: scaleX(0);
      background: linear-gradient(to right, #22d3ee, #f97316, #eab308);
      transition: transform 0.18s ease;
    }

    nav a:hover {
      color: #e5e7eb;
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

    .nav-cta {
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      background: linear-gradient(135deg, #22c55e, #a3e635);
      color: #022c22;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 10px 28px rgba(34, 197, 94, 0.4);
    }

    .nav-cta span {
      font-size: 16px;
    }

    /* Mobile nav */

    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.55);
      background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.8));
      cursor: pointer;
      padding: 6px 7px;
    }

    .burger-line {
      height: 2px;
      border-radius: 999px;
      background: #e5e7eb;
      transition: transform 0.18s ease, opacity 0.16s ease;
    }

    .burger.active .line-1 {
      transform: translateY(3px) rotate(45deg);
    }

    .burger.active .line-2 {
      opacity: 0;
    }

    .burger.active .line-3 {
      transform: translateY(-3px) rotate(-45deg);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-links-mobile {
      display: none;
    }

    .nav-links-mobile.open {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 10px 0 12px;
    }

    .nav-links-mobile a {
      font-size: 14px;
      color: #e5e7eb;
    }

    /* Hero */

    .hero {
      padding: 40px 0 72px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.45);
      color: var(--text-muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 12px;
    }

    .eyebrow span {
      color: #fbbf24;
      font-size: 14px;
    }

    .hero-title {
      font-size: clamp(30px, 4vw, 40px);
      line-height: 1.08;
      margin: 0 0 12px;
    }

    .hero-title span {
      background: linear-gradient(135deg, #22d3ee, #f97316, #eab308);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 20px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .tag {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.45);
      background: rgba(15, 23, 42, 0.8);
      font-size: 11px;
      color: #e5e7eb;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 18px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, #22c55e, #a3e635);
      border: none;
      color: #022c22;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 16px 35px rgba(34, 197, 94, 0.45);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
      font-weight: 500;
      font-size: 13px;
      cursor: pointer;
    }

    .note {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 42%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.15), transparent 52%),
        rgba(15, 23, 42, 0.92);
      padding: 18px 18px 16px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .hero-card-title {
      font-size: 14px;
      font-weight: 600;
    }

    .hero-card-chip {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(15, 118, 110, 0.9);
      color: #a7f3d0;
      border: 1px solid rgba(45, 212, 191, 0.8);
    }

    .hero-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      font-size: 12px;
    }

    .hero-stat {
      padding: 10px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.88);
      border: 1px solid rgba(148, 163, 184, 0.45);
    }

    .hero-stat-label {
      color: var(--text-muted);
      font-size: 11px;
      margin-bottom: 4px;
    }

    .hero-stat-value {
      font-weight: 600;
      font-size: 13px;
    }

    .hero-badge {
      position: absolute;
      right: 10px;
      bottom: -6px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(2, 6, 23, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #e5e7eb;
    }

    .hero-badge span {
      font-size: 13px;
    }

    /* Sections */

    section {
      padding: 40px 0;
    }

    .section-title {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 620px;
      margin-bottom: 22px;
    }

    /* About */

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 28px;
      align-items: flex-start;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .pill {
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.55);
      color: #e5e7eb;
    }

    .about-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background: rgba(15, 23, 42, 0.95);
      padding: 16px 16px 14px;
      font-size: 13px;
      box-shadow: var(--shadow-soft);
    }

    .about-card h3 {
      margin: 0 0 6px;
      font-size: 15px;
    }

    .about-card ul {
      margin: 8px 0 0 20px;
      padding: 0;
      color: var(--text-muted);
    }

    .about-card li {
      margin-bottom: 4px;
    }

    /* Destinations */

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      border-radius: 20px;
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
    }

    .card-image {
      height: 150px;
      background-size: cover;
      background-position: center;
    }

    .card-body {
      padding: 12px 14px 14px;
      font-size: 13px;
    }

    .card-title {
      font-size: 15px;
      margin-bottom: 4px;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .card-price {
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 2px;
    }

    .card-tagline {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Why us */

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

    .why-item {
      border-radius: 18px;
      padding: 14px 13px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.92);
      font-size: 13px;
    }

    .why-icon {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .why-item h3 {
      margin: 0 0 4px;
      font-size: 14px;
    }

    .why-item p {
      margin: 0;
      color: var(--text-muted);
      font-size: 12px;
    }

    /* Steps */

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      font-size: 12px;
    }

    .step {
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.5);
      padding: 12px 12px 10px;
    }

    .step-number {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(34, 197, 94, 0.08);
      border: 1px solid rgba(74, 222, 128, 0.8);
      color: #bbf7d0;
      font-size: 12px;
      margin-bottom: 6px;
    }

    .step-title {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 3px;
    }

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

    /* Testimonials */

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      font-size: 12px;
    }

    .testimonial {
      border-radius: 18px;
      padding: 12px 12px 11px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    .testimonial p {
      margin: 0 0 6px;
      color: var(--text-muted);
    }

    .testimonial-author {
      font-weight: 600;
      font-size: 12px;
    }

    .testimonial-meta {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* FAQ */

    .faq-list {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 20px;
      font-size: 13px;
    }

    .faq-item {
      border-radius: 16px;
      padding: 10px 12px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.95);
      margin-bottom: 8px;
    }

    .faq-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .faq-item p {
      margin: 0;
      color: var(--text-muted);
      font-size: 12px;
    }

    .faq-note {
      border-radius: 16px;
      padding: 12px 12px 10px;
      border: 1px dashed rgba(248, 250, 252, 0.4);
      background: rgba(15, 23, 42, 0.95);
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Contact */

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 26px;
      align-items: flex-start;
    }

    form {
      border-radius: var(--radius-xl);
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.98);
      padding: 18px 16px 16px;
      font-size: 13px;
      box-shadow: var(--shadow-soft);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .field {
      margin-bottom: 10px;
    }

    .field label {
      display: block;
      font-size: 12px;
      margin-bottom: 4px;
      color: #e5e7eb;
    }

    .field span {
      color: #f97316;
    }

    input, select, textarea {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.96);
      color: var(--text);
      font-family: inherit;
      font-size: 13px;
      padding: 8px 10px;
      outline: none;
    }

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

    input:focus, select:focus, textarea:focus {
      border-color: #38bdf8;
      box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7);
    }

    .form-footer {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 4px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 11px;
    }

    .checkbox-row input {
      width: 14px;
      height: 14px;
      margin-top: 2px;
    }

    .btn-submit {
      margin-top: 4px;
      width: 100%;
      border-radius: 999px;
      border: none;
      padding: 11px 16px;
      background: linear-gradient(135deg, #22c55e, #a3e635);
      color: #022c22;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 16px 35px rgba(34, 197, 94, 0.45);
    }

    .contact-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background: rgba(15, 23, 42, 0.96);
      padding: 16px 16px 14px;
      font-size: 13px;
      box-shadow: var(--shadow-soft);
    }

    .contact-card h3 {
      margin: 0 0 6px;
      font-size: 15px;
    }

    .contact-list {
      margin: 8px 0 10px;
      padding: 0;
      list-style: none;
      color: var(--text-muted);
    }

    .contact-list li {
      margin-bottom: 6px;
    }

    .contact-highlight {
      font-size: 12px;
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(24, 24, 27, 0.95);
      border: 1px dashed rgba(248, 250, 252, 0.25);
    }

    /* Footer */

    footer {
      border-top: 1px solid rgba(148, 163, 184, 0.3);
      padding: 16px 0 22px;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(2, 6, 23, 0.98);
      margin-top: 16px;
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: underline;
      text-decoration-style: dotted;
      text-underline-offset: 3px;
    }

    /* COOKIE BANNER */
    .cookie-banner {
      position: fixed;
      inset-inline: 0;
      bottom: 0;
      z-index: 50;
      background: rgba(15, 23, 42, 0.98);
      border-top: 1px solid rgba(148, 163, 184, 0.6);
      padding: 12px 16px;
      font-size: 13px;
      color: #e5e7eb;
      display: none;
    }

    .cookie-banner.visible {
      display: block;
    }

    .cookie-banner-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cookie-banner-text {
      flex: 1 1 220px;
    }

    .cookie-banner-text a {
      color: #38bdf8;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-banner-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
    }

    .cookie-btn-primary,
    .cookie-btn-secondary {
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .cookie-btn-primary {
      background: linear-gradient(135deg, #22c55e, #a3e635);
      color: #022c22;
      box-shadow: 0 12px 28px rgba(34, 197, 94, 0.45);
    }

    .cookie-btn-secondary {
      background: rgba(15, 23, 42, 0.96);
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    @media (max-width: 960px) {
      .hero-grid,
      .about-grid,
      .cards-grid,
      .why-grid,
      .steps,
      .testimonials,
      .faq-list,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 28px;
      }

      .hero-right {
        order: -1;
      }

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

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

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

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .burger {
        display: inline-flex;
      }

      .cards-grid,
      .testimonials {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-card {
        margin-top: 6px;
      }

      section {
        padding: 32px 0;
      }

      .contact-grid {
        gap: 18px;
      }

      .cookie-banner {
        padding: 10px 12px;
      }
    }

    @media (max-width: 480px) {
      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }
