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

:root {
  --navy: #0D1B2A;
  --cobalt: #1A3A6B;
  --gold: #C9973A;
  --gold-lt: #E8B85A;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --text: #1C1C1E;
  --muted: #6B7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-lt);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--cobalt) 60%, #1E4E8C 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Passport stamp decoration */
.stamp {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 4px solid rgba(201, 151, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stamp::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(201, 151, 58, 0.12);
  border-radius: 50%;
}

.stamp-1 {
  top: -60px;
  right: -60px;
}

.stamp-2 {
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 1.75rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-lt);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(201, 151, 58, 0.35);
}

.hero-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-icon {
  font-size: 1.1rem;
}

/* ── SECTIONS ── */
section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  max-width: 680px;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.passport-icon {
  font-size: 6rem;
  opacity: 0.9;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--gold);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 151, 58, 0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing {
  background: var(--white);
}

.pricing-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.price-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.price-table th {
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.15s;
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgba(201, 151, 58, 0.06);
}

.price-table tbody tr.highlight {
  background: rgba(201, 151, 58, 0.08);
  font-weight: 600;
}

.price-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.price-persons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.person-dot {
  display: flex;
  gap: 3px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

.dot.active {
  opacity: 1;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.price-tag {
  display: inline-block;
  background: rgba(201, 151, 58, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-banner a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-banner a:hover {
  background: var(--gold-lt);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}

footer span {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 6.5rem 1.5rem 4.5rem;
  }

  .hero h1 {
    max-width: 680px;
  }

  .trust-bar {
    gap: 1.5rem 2rem;
    padding-inline: 1.25rem;
  }

  section {
    padding: 4.5rem 1.5rem;
  }

  .about-grid {
    gap: 2.5rem;
  }

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

  .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table table,
  .price-table thead,
  .price-table tbody,
  .price-table tr {
    min-width: 640px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid > div:first-child {
    text-align: left;
  }

  .about-visual {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 6rem 1.25rem 4rem;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
    margin-bottom: 1.25rem;
  }

  .hero p {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-cta,
  .cta-banner a {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .trust-bar {
    gap: 0.9rem;
    padding: 1.1rem 1rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  section {
    padding: 4rem 1.25rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .step {
    padding: 1.5rem 1.25rem;
  }

  .step-num {
    font-size: 2.1rem;
  }

  .pricing-intro {
    margin-bottom: 1.5rem;
  }

  .price-table {
    border-radius: 6px;
  }

  .price-table th,
  .price-table td {
    padding: 0.95rem 1rem;
    white-space: nowrap;
  }

  .price-note {
    align-items: flex-start;
    line-height: 1.6;
  }

  .cta-banner {
    padding: 4rem 1.25rem;
  }

  .cta-banner p {
    font-size: 0.98rem;
  }

  footer {
    padding: 1.5rem 1rem;
    line-height: 1.6;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.9rem 1rem;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero-eyebrow {
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  .hero p,
  .section-body,
  .cta-banner p,
  .price-note {
    font-size: 0.95rem;
  }

  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .trust-item {
    gap: 0.5rem;
  }

  section {
    padding: 3.5rem 1rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .section-body {
    line-height: 1.75;
  }

  .step {
    padding: 1.35rem 1.1rem;
  }

  .price-table th {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .price-table td {
    font-size: 0.9rem;
  }

  .price-amount {
    font-size: 1rem;
  }

  .cta-banner h2 {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }
}