/* ============================================
   TOURISM LANDING — Tilda-like design
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #2abf31;
  --accent-hover: #24a62b;
  --dark: #111111;
  --dark-light: #1a1a1a;
  --white: #ffffff;
  --black: #000000;
  --gray: #4f4f4f;
  --gray-light: #d2d2d2;
  --gray-bg: #f5f5f5;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --section-py: 100px;
  --section-py-mobile: 60px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  transition: background 0.3s ease;
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--accent);
}

.nav__cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__cta:hover {
  background: var(--accent);
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.hero__uptitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__triggers {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__trigger {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__trigger-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.2s ease;
}

.hero__cta:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.hero__cta--secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.hero__cta--secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* --- SECTIONS COMMON --- */
.section {
  padding: var(--section-py) 0;
}

.section__title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* --- REBOOT --- */
.reboot__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray);
  text-align: center;
  white-space: pre-line;
}

/* --- WHY GO --- */
.why-go {
  background: var(--gray-bg);
}

.why-go__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.why-go__card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid #eee;
  text-align: center;
}

.why-go__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-go__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* --- TIMELINE --- */
.timeline {
  background: var(--dark);
  color: var(--white);
}

.timeline .section__title {
  color: var(--white);
}

.timeline__steps {
  max-width: 600px;
  margin: 0 auto 40px;
}

.timeline__step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline__step:last-child {
  border-bottom: none;
}

.timeline__day {
  flex-shrink: 0;
  width: 120px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.timeline__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.timeline .section-cta__btn {
  border: 2px solid var(--accent);
}

/* --- TARGET AUDIENCE --- */
.target__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.target__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid #eee;
  font-size: 15px;
  line-height: 1.5;
}

.target__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.target__check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  margin-top: -2px;
}

/* --- SCHEDULE --- */
.schedule {
  background: var(--gray-bg);
}

.schedule__day {
  margin-bottom: 64px;
}

.schedule__day:last-child {
  margin-bottom: 0;
}

.schedule__day-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.schedule__day-num {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

.schedule__day-date {
  font-size: 14px;
  color: var(--gray);
}

.schedule__day-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.schedule__day-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 24px;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel__slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.carousel__dot.active {
  background: var(--dark);
}

.carousel__dot:hover {
  background: var(--gray);
}

/* --- PRICING --- */
.pricing__price {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing__prepayment {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 48px;
}

.pricing__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.pricing__col-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.pricing__list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}

.pricing__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pricing__col--included .pricing__list li::before {
  background: var(--accent);
}

.pricing__col--extra .pricing__list li::before {
  background: var(--gray-light);
}

/* --- PACKING --- */
.packing {
  background: var(--gray-bg);
}

.packing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.packing__card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid #eee;
}

.packing__card-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.packing__card-items {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* --- TRUST SECTION --- */
.trust-section {
  background: var(--gray-bg);
}

.trust__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust__card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid #eee;
  text-align: center;
}

.trust__card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust__card-text {
  font-size: 14px;
  color: var(--gray);
}

/* --- FAQ --- */
.faq__item {
  border-bottom: 1px solid #eee;
}

.faq__item:first-child {
  border-top: 1px solid #eee;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 20px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}

.faq__icon::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq__icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

.faq__item.open .faq__icon::after {
  transform: rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

/* --- FORM --- */
.form-section {
  background: var(--dark);
  color: var(--white);
}

.form-section .section__title {
  color: var(--white);
}

.form-section .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.form {
  max-width: 560px;
  margin: 0 auto;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.form__input,
.form__textarea,
.form__select {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  height: 50px;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__select option {
  background: #222;
  color: #fff;
}

.form__select option:disabled {
  color: #666;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--accent);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
  height: auto;
}

/* Form mode tabs */
.form-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.form-tabs__tab {
  padding: 12px 28px;
  background: transparent;
  color: var(--text-muted);
  border: 2px solid #333;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-tabs__tab:first-child {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.form-tabs__tab:last-child {
  border-radius: 0 4px 4px 0;
}

.form-tabs__tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.form-tabs__tab:hover:not(.active) {
  border-color: var(--accent);
  color: var(--white);
}

.form__submit {
  margin-top: 24px;
  padding: 16px 48px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.form__submit:hover {
  background: var(--accent-hover);
}

/* --- FORM CONSENTS --- */
.form__consents {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.form__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form__consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__consent a:hover {
  color: var(--white);
}

.form__consent--error {
  color: #ff6b6b;
}

.form__consent--error a {
  color: #ff6b6b;
}

.form__consent-error {
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 2px;
  margin-left: 28px;
  display: none;
}

.form__consent--error + .form__consent-error {
  display: block;
}

.form__helper {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* --- FOOTER LINKS --- */
.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 12px;
  color: var(--gray-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--accent);
}

.form__success {
  text-align: center;
  padding: 40px 20px;
}

.form__success-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

/* --- CONTACTS --- */
.contacts {
  background: var(--dark-light);
  color: var(--white);
}

.contacts .section__title {
  color: var(--white);
}

.contacts__card {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.contacts__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contacts__role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.contacts__phone {
  font-size: 18px;
  margin-bottom: 8px;
}

.contacts__phone a {
  color: var(--white);
}

.contacts__phone a:hover {
  color: var(--accent);
}

.contacts__email {
  font-size: 16px;
  margin-bottom: 24px;
}

.contacts__email a {
  color: var(--accent);
}

.contacts__email a:hover {
  text-decoration: underline;
}

.contacts__social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contacts__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contacts__social-link:hover {
  border-color: var(--accent);
  background: var(--accent);
}

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  padding: 24px 0;
  text-align: center;
}

.footer__copy {
  font-size: 13px;
  color: var(--gray-light);
}

/* --- SECTION CTA --- */
.section-cta {
  padding: 40px 0;
  text-align: center;
}

.section-cta--on-gray {
  background: var(--gray-bg);
}

.section-cta__lead {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 16px;
}

.section-cta__btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.2s ease;
}

.section-cta__btn:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.section-cta__btn--pay {
  background: transparent;
  border: 2px solid var(--accent);
  margin-left: 16px;
}

.section-cta__btn--pay:hover {
  background: var(--accent);
}

/* --- FORK SECTION (CRO) --- */
.fork-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
}

.fork-section .section__title {
  color: var(--white);
}

.fork__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.fork__card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.fork__card--pay {
  border-color: var(--accent);
  border-width: 2px;
}

.fork__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
}

.fork__card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.fork__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.fork__card-list {
  list-style: none;
  margin-bottom: 24px;
}

.fork__card-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0 4px 20px;
  position: relative;
}

.fork__card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.fork__btn {
  display: block;
  padding: 14px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fork__btn--lead {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.fork__btn--lead:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.fork__btn--pay {
  background: var(--accent);
  color: var(--white);
}

.fork__btn--pay:hover {
  background: var(--accent-hover);
}

@media (max-width: 640px) {
  .fork__grid {
    grid-template-columns: 1fr;
  }
}

/* --- FORM DATE CARDS GRID (R1: dates integrated into form) --- */
.form__dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.form__date-card {
  display: block;
  cursor: pointer;
}

.form__date-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form__date-card-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 2px solid #333;
  transition: all 0.2s ease;
  text-align: center;
}

.form__date-card:hover .form__date-card-inner {
  border-color: var(--accent);
}

.form__date-card input[type="radio"]:checked + .form__date-card-inner {
  border-color: var(--accent);
  background: rgba(42, 191, 49, 0.08);
}

.form__date-card--disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.form__date-card--disabled .form__date-card-inner {
  border-color: #333;
}

.form__date-range {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.form__date-duration {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form__date-spots {
  font-size: 12px;
  color: var(--accent);
  margin-top: 2px;
}

.form__date-spots--hot {
  color: #f5a623;
  font-weight: 600;
}

.form__date-spots--full {
  color: #999;
}

@media (max-width: 480px) {
  .form__dates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .form__date-card-inner {
    padding: 10px 12px;
  }
  .form__date-range {
    font-size: 12px;
  }
}

/* --- DATES --- */
.dates {
  background: var(--dark);
  color: var(--white);
}

.dates .section__title {
  color: var(--white);
}

.dates__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.dates__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--dark-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dates__range {
  font-size: 18px;
  font-weight: 600;
}

.dates__spots {
  font-size: 14px;
  color: var(--accent);
}

.dates__spots--hot {
  color: #e65100;
  font-weight: 600;
}

.dates__spots--full {
  color: #999;
}

.dates__item--full {
  opacity: 0.5;
}

.dates__btn--disabled {
  display: inline-block;
  padding: 10px 24px;
  background: #555;
  color: #999;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: not-allowed;
}

.dates__btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease;
}

.dates__btn:hover {
  background: var(--accent-hover);
  color: var(--white);
}

/* --- SECTION CTA INLINE (inside section) --- */
.section-cta--inline {
  padding-top: 40px;
  text-align: center;
}

/* --- STICKY MOBILE CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta__btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.sticky-cta__btn:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.sticky-cta.visible {
  display: block;
}

/* --- HERO EXTRAS --- */
.hero__subtitle-extra {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__micro-trust {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* --- REALITY --- */
.reality__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.reality__card {
  padding: 32px 24px;
  border: 1px solid #eee;
  text-align: center;
}

.reality__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.reality__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* --- REVIEWS --- */
.reviews {
  background: var(--dark);
  color: var(--white);
}

.reviews .section__title {
  color: var(--white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.reviews__card {
  padding: 28px 24px;
  background: var(--dark-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  font-style: italic;
}

.reviews__text::before {
  content: '\201C';
  font-size: 24px;
  color: var(--accent);
  margin-right: 4px;
}

.reviews__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* --- SAFETY --- */
.safety__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.safety__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid #eee;
  font-size: 15px;
  line-height: 1.5;
}

.safety__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety__check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  margin-top: -2px;
}

/* --- PRICING EXTRAS --- */
.pricing__spots {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 960px) {
  :root {
    --section-py: 72px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .pricing__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-go__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .target__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .packing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__burger {
    display: flex;
  }

  .nav__link,
  .nav__cta {
    font-size: 18px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta {
    text-align: center;
    padding: 16px 24px;
    width: 100%;
  }

  .hero__triggers {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .section-cta__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    box-sizing: border-box;
  }

  .section-cta__btn--pay {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__uptitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .section__title {
    font-size: 24px;
  }

  .schedule__day-title {
    font-size: 20px;
  }

  .pricing__price {
    font-size: 32px;
  }

  .why-go__grid {
    grid-template-columns: 1fr;
  }

  .reality__grid {
    grid-template-columns: 1fr;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .target__grid {
    grid-template-columns: 1fr;
  }

  .trust__cards {
    grid-template-columns: 1fr;
  }

  .timeline__step {
    flex-direction: column;
    gap: 6px;
  }

  .timeline__day {
    width: auto;
  }

  .dates__item {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .dates__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    box-sizing: border-box;
  }

  .packing__grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: block;
  }

  /* Add bottom padding so content isn't hidden behind sticky CTA */
  .footer {
    padding-bottom: 72px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-py: 48px;
  }

  .hero__title {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .hero__cta {
    padding: 14px 20px;
    font-size: 13px;
  }

  .pricing__price {
    font-size: 28px;
  }

  .sticky-cta__btn {
    font-size: 13px;
    padding: 12px 16px;
  }
}