/* ═══════════════════════════════════════════════════════
   DIMA PADEL TRAVEL — style.css
   Palette: #000 | #fff | #ff544b (accent) | #111 | #1a1a1a
   ═══════════════════════════════════════════════════════ */

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

:root {
  --accent: #ff544b;
  --accent-hover: #ff6b63;
  --black: #000;
  --off-black: #0d0d0d;
  --dark: #111;
  --white: #fff;
  --gray: #888;
  --light-bg: #f5f5f5;
  --border: rgba(255,255,255,0.1);
  --nav-h: 72px;
  --radius: 14px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--accent-hover); transform: scale(1.03); }
.btn-primary.full { width: 100%; text-align: center; padding: 16px; font-size: 16px; }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--black); transform: scale(1.03); }

/* ─── NAVBAR ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { height: 28px; width: auto; display: block; }
.logo:hover { opacity: 0.75; }
.nav-right { display: flex; align-items: center; gap: 24px; }

/* language */
.lang-wrapper { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--accent); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-width: 130px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.lang-dropdown button:hover { background: rgba(255,255,255,0.07); }
.lang-dropdown button.active { background: var(--accent); }

/* menu btn */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: color 0.2s;
}
.menu-btn:hover { color: var(--accent); }

/* ─── SIDEBAR ─────────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 150;
  backdrop-filter: blur(4px);
}
.sidebar-overlay.open { display: block; }
.sidebar {
  position: fixed;
  top: 0; right: -380px;
  width: 340px;
  height: 100%;
  background: var(--off-black);
  z-index: 200;
  padding: 80px 40px 40px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.sidebar.open { right: 0; }
.sidebar-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.sidebar-close:hover { background: rgba(255,255,255,0.1); }
.sidebar-nav { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sidebar-nav button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: -0.5px;
}
.sidebar-nav button:hover { color: var(--accent); }
.sidebar-nav button.active { color: var(--accent); }
.sidebar-social {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.sidebar-social a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-social a:hover { color: var(--accent); }

/* ─── VIEWS ───────────────────────────────────────────── */
.view { padding-top: var(--nav-h); min-height: 100vh; }
.view.hidden { display: none !important; }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-sub {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.scroll-arrow { animation: bounce 1.5s infinite; }

/* ─── MANIFESTO ───────────────────────────────────────── */
.manifesto {
  background: var(--white);
  color: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.manifesto .container { text-align: center; position: relative; z-index: 1; }
.manifesto-intro {
  max-width: 640px;
  margin: 0;
  text-align: left;
}
.manifesto-intro-text { min-width: 0; }
.manifesto-accent-line { width: 40px; height: 3px; background: var(--accent); margin-bottom: 20px; }
.manifesto-decor {
  position: absolute;
  top: 50%;
  right: -14%;
  transform: translateY(-50%);
  width: min(1000px, 62vw);
  z-index: 0;
  pointer-events: none;
}
.manifesto-decor img { width: 100%; height: auto; opacity: 0.08; }
.manifesto-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.manifesto-body {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  text-align: left;
}
.manifesto-body p { margin-bottom: 18px; }
.manifesto-tagline {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 1px;
  margin: 48px 0 24px;
  text-transform: uppercase;
  text-align: center;
}
.manifesto-closing {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}
.manifesto-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 60px;
}
.manifesto-nav-card {
  background: var(--black);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.manifesto-nav-card:hover { background: var(--accent); transform: scale(1.02); }
.manifesto-nav-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.manifesto-nav-card p { font-size: 14px; opacity: 0.7; }

/* ─── CAROUSEL ────────────────────────────────────────── */
.carousel-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.carousel {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img,
.carousel-slide video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.carousel-slide:nth-child(3) img { object-position: center 15%; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active { width: 32px; background: var(--accent); }

/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
}
.page-header.dark { background: var(--black); }
.page-header.light { background: var(--white); color: var(--black); }
.page-header h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 18px;
  opacity: 0.6;
}
.page-header.light p { color: var(--black); }

/* ─── DESTINATIONS ────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  padding: 60px 24px;
  background: var(--black);
}
.dest-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.dest-card.unavailable { cursor: default; }
.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.dest-card:hover:not(.unavailable) .dest-card-bg { transform: scale(1.08); }
.dest-card.unavailable .dest-card-bg { filter: grayscale(1); opacity: 0.45; }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.dest-card-coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  text-align: center;
}
.dest-card-coming-soon p { font-size: 28px; font-weight: 900; color: var(--accent); }
.dest-card-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.dest-card:hover:not(.unavailable) .dest-card-border { border-color: var(--accent); }
.dest-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.dest-card-content h3 { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.dest-card-content p { font-size: 14px; opacity: 0.75; margin-bottom: 16px; }
.dest-card-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.dest-card-btn:hover { background: var(--accent); border-color: var(--accent); }

/* ─── MODALS ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--accent); }
.modal-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
}
.modal-body { padding: 32px; }
.modal-body h2 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.modal-tagline { color: var(--accent); font-size: 15px; font-weight: 600; margin-bottom: 16px; letter-spacing: 1px; }
.modal-body > p { font-size: 16px; line-height: 1.7; opacity: 0.8; margin-bottom: 28px; }
.modal-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.modal-info-item { display: flex; gap: 12px; align-items: flex-start; }
.modal-info-icon { font-size: 20px; }
.modal-info-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.modal-info-item span { font-size: 14px; opacity: 0.65; display: block; }
.modal-body h4 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.modal-includes { list-style: none; margin-bottom: 28px; }
.modal-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  opacity: 0.85;
}
.modal-includes li::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ─── EXPERIENCES ─────────────────────────────────────── */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding: 60px 24px;
  background: var(--white);
}
.exp-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exp-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.exp-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: background 0.3s;
}
.exp-card:hover .exp-icon { background: var(--accent); }
.exp-card h3 { font-size: 28px; font-weight: 800; }
.exp-sub { color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.exp-desc { font-size: 15px; line-height: 1.7; opacity: 0.75; }
.exp-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.exp-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  opacity: 0.7;
}
.exp-features li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.exp-cta {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.exp-cta:hover { background: var(--accent-hover); transform: scale(1.02); }

/* exp carousel inside card */
.exp-card-carousel {
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
  position: relative;
}
.exp-card-carousel img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s;
}
.exp-card-carousel img.active { opacity: 1; }

/* not sure */
.not-sure {
  background: var(--white);
  padding: 0 24px 80px;
  text-align: center;
}
.not-sure > div {
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.not-sure h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--black); }
.not-sure p { color: rgba(0,0,0,0.6); margin-bottom: 28px; font-size: 16px; line-height: 1.6; max-width: 560px; margin-left: auto; margin-right: auto; }

/* experience modal */
.exp-modal-box {
  max-width: 900px;
  background: var(--black);
}
.exp-modal-content { padding: 60px 48px; color: var(--white); }
.exp-modal-content h1 { font-size: clamp(32px,5vw,56px); font-weight: 900; margin-bottom: 16px; }
.exp-modal-content > p { font-size: 18px; opacity: 0.6; margin-bottom: 56px; }
.exp-modal-section { margin-bottom: 48px; }
.exp-modal-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.exp-modal-section-title span { font-size: 24px; }
.exp-modal-section-title h2 { font-size: 26px; font-weight: 700; }
.schedule-list { display: flex; flex-direction: column; gap: 12px; }
.schedule-item {
  display: flex;
  gap: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  align-items: flex-start;
}
.schedule-time { color: var(--accent); font-weight: 700; min-width: 52px; font-size: 15px; }
.schedule-act { font-size: 15px; opacity: 0.85; }
.levels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.level-card {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.level-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.level-card p { font-size: 13px; opacity: 0.65; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.include-list, .not-include-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.include-list li, .not-include-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; opacity: 0.8; }
.include-list li::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.not-include-list li::before { content: ''; width: 8px; height: 8px; background: rgba(255,255,255,0.25); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.outcomes-box {
  background: rgba(255,84,75,0.1);
  border: 1px solid rgba(255,84,75,0.3);
  border-radius: var(--radius);
  padding: 32px;
}
.outcomes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }
.outcomes-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; opacity: 0.85; }
.outcomes-list li::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.daily-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.flow-card { padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; text-align: center; }
.flow-time { color: var(--accent); font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.flow-act { font-size: 13px; opacity: 0.75; }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.highlight-card { padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border: 1px solid var(--border); display: flex; gap: 16px; }
.highlight-icon { font-size: 24px; }
.highlight-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.highlight-card p { font-size: 13px; opacity: 0.65; }
.include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.include-item {
  display: flex; gap: 10px; align-items: center;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 14px;
  opacity: 0.8;
}
.include-item::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.perfect-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.perfect-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; opacity: 0.85; }
.perfect-list li::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.benefit-card:hover { border-color: var(--accent); }
.benefit-icon { font-size: 28px; margin-bottom: 12px; }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; opacity: 0.65; line-height: 1.6; }
.premium-promise {
  background: linear-gradient(135deg, rgba(255,84,75,0.2), rgba(255,84,75,0.05));
  border: 1px solid rgba(255,84,75,0.3);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.premium-promise h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.premium-promise p { opacity: 0.7; margin-bottom: 36px; line-height: 1.7; }
.premium-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.premium-stat .big { font-size: 40px; font-weight: 900; color: var(--accent); }
.premium-stat p { font-size: 14px; opacity: 0.65; margin-top: 6px; }
.itinerary-list { display: flex; flex-direction: column; gap: 12px; }
.itinerary-item {
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.itinerary-item:hover { border-color: var(--accent); }
.itinerary-day { color: var(--accent); font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.itinerary-acts { font-size: 14px; opacity: 0.75; }
.exp-modal-cta { text-align: center; padding-top: 32px; }
.exp-modal-cta-note { font-size: 13px; opacity: 0.45; margin-top: 12px; }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 24px 80px;
  background: var(--white);
  color: var(--black);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,84,75,0.12);
}
.form-group textarea { resize: none; }
.form-note { text-align: center; font-size: 13px; color: rgba(0,0,0,0.5); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info h2 { font-size: 24px; font-weight: 800; color: var(--black); }
.contact-info > p { color: rgba(0,0,0,0.6); line-height: 1.6; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
}
.contact-method:hover { background: var(--accent); color: var(--white); }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-method:hover .contact-icon { background: rgba(255,255,255,0.2); }
.contact-method strong { display: block; font-weight: 600; font-size: 15px; }
.contact-method span { font-size: 13px; opacity: 0.6; }
.contact-method:hover span { opacity: 0.85; }
.contact-badge {
  padding: 20px;
  background: rgba(255,84,75,0.08);
  border: 1px solid rgba(255,84,75,0.25);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.7;
  color: var(--black);
}
.contact-hq {
  padding: 20px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius);
}
.contact-hq strong { font-weight: 700; margin-bottom: 8px; display: block; }
.contact-hq p { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.7; }

/* ─── FOOTER ──────────────────────────────────────────── */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-grid h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 26px; width: auto; }
.footer-logo h3 { margin-bottom: 0; }
.footer-grid h4 { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.footer-grid p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-grid ul button {
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-grid ul button:hover { color: var(--accent); }
.footer-logo { height: 60px; margin-top: 16px; }
.footer-social { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--accent); }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .manifesto-nav-grid { grid-template-columns: 1fr; }
  .manifesto-intro { text-align: center; margin: 0 auto; }
  .manifesto-intro-text { text-align: center; }
  .manifesto-accent-line { margin-left: auto; margin-right: auto; }
  .manifesto-body { text-align: center; }
  .manifesto-decor { display: none; }
  .two-col, .levels-grid, .daily-flow, .highlights-grid,
  .include-grid, .benefits-grid, .outcomes-list, .premium-stats { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .destinations-grid, .experiences-grid { grid-template-columns: 1fr; }
  .exp-modal-content { padding: 32px 24px; }
  .carousel { height: 280px; }
  .hero-headline { font-size: 70px; }
  .not-sure > div { padding: 40px 24px; }
  .logo { font-size: 14px; letter-spacing: 1px; gap: 8px; }
  .logo-img { height: 22px; }
}

/* ═══════════════════════════════════════════════════════
   NUEVAS SECCIONES — Añadido v2
   ═══════════════════════════════════════════════════════ */

/* ─── HERO ADDITIONS ──────────────────────────────────── */
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat-label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ─── SECTION LABELS & TITLES ─────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 48px;
}
.section-sub {
  font-size: 17px;
  opacity: 0.6;
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.6;
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how-it-works {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-label { color: var(--gray); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}
.step {
  flex: 1;
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.8;
}
.step h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.step-arrow {
  font-size: 28px;
  color: var(--accent);
  padding: 0 20px;
  margin-top: 60px;
  flex-shrink: 0;
}
.how-cta { text-align: center; }
.how-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ─── PRICING ─────────────────────────────────────────── */
.pricing {
  background: var(--white);
  padding: 100px 0;
  color: var(--black);
}
.pricing .section-title { color: var(--black); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  background: var(--white);
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(255,84,75,0.12); }
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--black);
  color: var(--white);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-icon { font-size: 36px; margin-bottom: 16px; }
.pricing-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.price-from { font-size: 13px; opacity: 0.5; }
.price-num { font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; }
.price-unit { font-size: 14px; opacity: 0.5; }
.pricing-min-days { font-size: 12px; opacity: 0.45; margin-top: -8px; margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.pricing-features li { display: flex; gap: 10px; font-size: 14px; opacity: 0.8; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-cta {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.pricing-cta:hover { background: var(--accent-hover); }
.pricing-note { font-size: 13px; color: rgba(0,0,0,0.4); text-align: center; }

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  background: var(--off-black);
  padding: 100px 0;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-label { color: var(--gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--accent); }
.testimonial-stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 16px; }
.testimonial-stars .star-icon svg { display: block; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-origin { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ─── WAITLIST ────────────────────────────────────────── */
.waitlist {
  background: var(--accent);
  padding: 100px 0;
  color: var(--white);
}
.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.waitlist-text h2 { font-size: clamp(28px,4vw,44px); font-weight: 900; margin-bottom: 16px; line-height: 1.1; }
.waitlist-text p { font-size: 17px; opacity: 0.85; line-height: 1.7; margin-bottom: 28px; }
.waitlist-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.waitlist-perks li { font-size: 15px; opacity: 0.9; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.waitlist-perks .perk-icon { display: flex; flex-shrink: 0; color: var(--white); }
.waitlist-form { display: flex; flex-direction: column; gap: 14px; }
.waitlist-form input,
.waitlist-form select {
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  background: rgba(255,255,255,0.95);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  outline: none;
}
.waitlist-form input:focus,
.waitlist-form select:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
.waitlist-form .btn-primary { background: var(--black); font-size: 16px; padding: 18px; }
.waitlist-form .btn-primary:hover { background: #222; }
.waitlist-legal { font-size: 12px; opacity: 0.65; text-align: center; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq {
  background: var(--white);
  padding: 100px 0;
  color: var(--black);
}
.faq .section-title { color: var(--black); }
.faq .section-label { color: var(--gray); }
.faq-list { max-width: 760px; margin: 0 auto 60px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question .faq-icon { font-size: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner { padding-bottom: 24px; font-size: 15px; line-height: 1.8; color: rgba(0,0,0,0.65); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-more { text-align: center; }
.faq-more p { font-size: 16px; color: rgba(0,0,0,0.5); margin-bottom: 20px; }
.btn-outline-dark {
  padding: 14px 32px;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ─── FOUNDER / ABOUT ─────────────────────────────────── */
.founder-section {
  background: var(--white);
  padding: 100px 0;
  color: var(--black);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.founder-img-wrap { position: relative; }
.founder-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.founder-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.founder-placeholder-inner { text-align: center; color: rgba(0,0,0,0.3); }
.founder-placeholder-inner span { font-size: 48px; display: block; margin-bottom: 12px; }
.founder-placeholder-inner p { font-size: 14px; }
.founder-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--black);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.founder-badge span { font-size: 24px; }
.founder-badge strong { display: block; font-size: 14px; font-weight: 700; }
.founder-badge > div > span { font-size: 12px; opacity: 0.5; }
.founder-text { padding-top: 8px; }
.founder-text .section-label { color: var(--gray); }
.founder-text h2 { font-size: 40px; font-weight: 900; margin-bottom: 24px; letter-spacing: -1px; }
.founder-story { font-size: 16px; line-height: 1.85; color: rgba(0,0,0,0.7); }
.founder-story p { margin-bottom: 16px; }
.founder-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
}
.founder-stat { text-align: center; }
.founder-stat-num { display: block; font-size: 36px; font-weight: 900; color: var(--accent); line-height: 1; }
.founder-stat > span:last-child { font-size: 12px; color: rgba(0,0,0,0.45); letter-spacing: 0.5px; margin-top: 4px; display: block; }

/* ─── VALUES ──────────────────────────────────────────── */
.values-section {
  background: var(--black);
  padding: 100px 0;
}
.values-section .section-title { color: var(--white); }
.values-section .section-label { color: var(--gray); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover { border-color: var(--accent); background: rgba(255,84,75,0.05); }
.value-icon { font-size: 40px; margin-bottom: 20px; }
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.value-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─── FOR WHO ─────────────────────────────────────────── */
.for-who {
  background: var(--white);
  padding: 100px 0;
  color: var(--black);
}
.for-who .section-title { color: var(--black); }
.for-who .section-label { color: var(--gray); }
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.for-who-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
  align-items: flex-start;
}
.for-who-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(255,84,75,0.08); }
.for-who-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.for-who-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.for-who-card p { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.6; }

/* ─── MARKETS ─────────────────────────────────────────── */
.markets {
  background: var(--off-black);
  padding: 100px 0;
}
.markets .section-title { color: var(--white); }
.markets .section-label { color: var(--gray); }
.markets-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}
.market-phase {
  flex: 1;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0.4;
  transition: opacity 0.3s;
}
.market-phase.active { opacity: 1; border-color: var(--accent); background: rgba(255,84,75,0.05); }
.market-phase-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.market-phase h3 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.market-phase p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.market-arrow { font-size: 24px; color: rgba(255,255,255,0.2); padding: 0 20px; margin-top: 60px; flex-shrink: 0; }

/* ─── CONTACT PROCESS ─────────────────────────────────── */
.contact-process {
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.contact-process h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--black); }
.contact-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-step:last-child { margin-bottom: 0; }
.contact-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-step p { font-size: 14px; color: rgba(0,0,0,0.65); line-height: 1.5; margin-top: 4px; }

/* ─── RESPONSIVE ADDITIONS ────────────────────────────── */
@media (max-width: 900px) {
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 10px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-badge { position: static; margin-top: 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .markets-timeline { flex-direction: column; }
  .market-arrow { transform: rotate(90deg); margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
}
