:root {
  --bg: #05070b;
  --text: #f8fbff;
  --muted: #a8b3c7;
  --line: rgba(255,255,255,.12);
  --accent: #2ee6ff;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(46,230,255,.14), transparent 34rem), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.hero {
  min-height: 100vh;
  padding: 26px;
  padding-bottom: 120px;
  background:
    linear-gradient(90deg, rgba(5,7,11,.95), rgba(5,7,11,.65), rgba(5,7,11,.92)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9,14,24,.72);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 12px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links a { font-size: 14px; font-weight: 800; padding: 10px 12px; border-radius: 999px; }
.nav-links a:hover { background: rgba(255,255,255,.1); }

.hero-grid {
  max-width: 1180px;
  min-height: calc(100vh - 100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
}

.hero-logo { width: min(260px, 85%); margin-top: 40px; margin-bottom: 18px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
.eyebrow { color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; }
h1, h2 { font-family: "Anton", Impact, sans-serif; font-weight: 400; line-height: .96; }
h1 { max-width: 820px; font-size: clamp(52px, 7vw, 104px); margin: 18px 0; }
.hero-text { max-width: 660px; color: #d4dbea; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.btn, button {
  border: 0; border-radius: 999px; padding: 15px 23px; font-weight: 900; cursor: pointer;
  display: inline-block;
}
.primary, button { color: #021016; background: linear-gradient(135deg, var(--accent), #ffffff); box-shadow: 0 15px 35px rgba(46,230,255,.24); }
.ghost { border: 1px solid var(--line); color: white; background: rgba(255,255,255,.08); }

.hero-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(rgba(17,26,43,.45), rgba(17,26,43,.95));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.hero-card p { color: var(--muted); font-weight: 800; }
.hero-card strong { font-size: 76px; line-height: 1; color: var(--accent); }
.hero-card span { color: #dbe7f7; font-weight: 700; }

.section { max-width: 1180px; margin: 0 auto; padding: 82px 26px; }

.payments {
  margin-top: 60px;
  position: relative;
  z-index: 5;
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px 26px;
}
.payment-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}
.payment-row span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-weight: 900;
}
.payments p:last-child { color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-top: 32px; }
.stats div, .card, .price-card, .about, .service-area, .review, .faq-list details, .booking-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.stats div { border-radius: 24px; padding: 24px; }
.stats strong { display: block; font-size: 26px; font-weight: 900; }
.stats span, .card p, .price-card li, .price-card p, .about p, .service-area p, .booking-box p, .faq-list p { color: var(--muted); }

.about { border-radius: 34px; padding: 34px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 28px; }
.about h2, .section-heading h2, .service-area h2, .booking-box h2 { font-size: clamp(40px, 5vw, 68px); margin-top: 12px; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.cards, .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { border-radius: 28px; padding: 30px; }
.icon { width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center; background: var(--accent); margin-bottom: 24px; font-size: 22px; }
.card h3 { font-size: 23px; margin-bottom: 10px; }
.spanish { margin-top: 10px; font-style: italic; }

.pricing-section { max-width: none; background: linear-gradient(180deg, transparent, rgba(46,230,255,.06), transparent); }
.pricing-section .section-heading, .pricing-section .price-grid { max-width: 1180px; margin-left: auto; margin-right: auto; }
.price-card { position: relative; border-radius: 30px; padding: 30px; }
.price-card.featured, .price-card.vip { border-color: rgba(46,230,255,.75); }
.badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: #001016; font-size: 12px; font-weight: 900; padding: 7px 10px; border-radius: 999px; }
.package { color: var(--accent) !important; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.price-card h3 { font-size: 46px; margin: 8px 0 8px; color: var(--accent); }
.price-card ul { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.price-card li::before { content: "✓"; color: var(--accent); font-weight: 900; margin-right: 10px; }

.service-area { border-radius: 34px; padding: 34px; text-align: center; }
.service-area p { max-width: 820px; margin: 18px auto 0; }

.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review { border-radius: 24px; padding: 24px; }
.review strong { color: var(--accent); display: block; margin-bottom: 10px; }
.center-buttons { text-align: center; margin-top: 26px; }

.faq-list { display: grid; gap: 14px; }
.faq-list details { border-radius: 20px; padding: 18px 22px; }
.faq-list summary { cursor: pointer; font-weight: 900; }
.faq-list p { margin-top: 10px; }

.booking-box { border-radius: 34px; padding: 34px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; }
form { display: grid; gap: 14px; }
input, select, textarea {
  width: 100%; padding: 16px; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(5,7,11,.78); color: white; font: inherit; outline: none;
}
textarea { min-height: 130px; resize: vertical; }

footer { border-top: 1px solid var(--line); text-align: center; padding: 44px 20px; color: var(--muted); }
footer img { width: 170px; max-width: 80%; }
footer h2 { font-size: 34px; margin: 10px 0; }
footer a { color: white; }

@media (max-width: 900px) {
  .navbar { border-radius: 24px; align-items: flex-start; flex-direction: column; }
  .hero-grid, .about, .booking-box { grid-template-columns: 1fr; }
  .stats, .cards, .price-grid, .review-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 260px; }
  .section { padding: 62px 18px; }
  .payments { margin-top: 40px; }
}
