:root {
  --cwc-ink: #182338;
  --cwc-muted: #62708a;
  --cwc-line: rgba(24, 35, 56, 0.1);
  --cwc-green: #2E5EAA;
  --cwc-green-dark: #2E5EAA;
  --cwc-gold: #f4b942;
  --cwc-blue: #2e5eaa;
  --cwc-orange: #fc9246;
  --cwc-cream: #fffdf7;
  --cwc-surface: #ffffff;
  --cwc-soft: #f4f8f3;
  --cwc-shadow: 0 18px 48px rgba(24, 35, 56, 0.11);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--cwc-ink);
  background: #f8faf7;
}

main {
  display: block;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.fake3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--cwc-green);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center !important;
}

.fake1 {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.fake2 {
  margin: 0;
  color: var(--cwc-muted);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 25px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-button {
  background: var(--cwc-green);
  color: #fff;
}

.secondary-button {
  background: #edf6ee;
  color: var(--cwc-green-dark);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 107, 58, 0.16);
}

.hero-section {
  --hero-progress: 0;
  --hero-bg-shift: 0px;
  --hero-bg-scale: 1;
  --hero-center-y: 0px;
  --hero-center-scale: 1;
  --hero-left-x: 0px;
  --hero-right-x: 0px;
  --hero-side-blur: 0px;
  --hero-side-opacity: 1;
  --hero-rating-y: 0px;
  --hero-rating-opacity: 1;
  position: relative;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(90deg, rgba(3, 34, 18, 0.86) 0%, rgba(9, 45, 30, 0.52) 38%, rgba(12, 42, 28, 0.52) 62%, rgba(8, 28, 20, 0.82) 100%),
    url("/assets/images/johannesburg.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--hero-bg-shift), 0) scale(var(--hero-bg-scale));
  transform-origin: center center;
  will-change: transform;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 130px),
    radial-gradient(circle at 50% 50%, rgba(244, 185, 66, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 25%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 18%, transparent 78%, rgba(0, 0, 0, 0.36));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1280px);
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 280px) 1fr;
  align-items: start;
  gap: 1.5rem;
  overflow: hidden;
  transform: translateZ(0);
}

.hero-side {
  max-width: 420px;
  transition: transform 0.18s linear, opacity 0.18s linear, filter 0.18s linear;
}

.hero-left {
  justify-self: start;
  margin-top: 8rem;
  transform: translate3d(var(--hero-left-x), calc(var(--hero-progress) * -20px), 0);
  opacity: var(--hero-side-opacity);
  filter: blur(var(--hero-side-blur));
}

.hero-right {
  justify-self: end;
  align-self: flex-end;
  margin-bottom: 4rem;
  text-align: right;
  transform: translate3d(var(--hero-right-x), calc(var(--hero-progress) * 24px), 0);
  opacity: var(--hero-side-opacity);
  filter: blur(var(--hero-side-blur));
}

.hero-kicker {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-side h1,
.hero-side h2 {
  margin: 0;
  font-size: clamp(3rem, 4.7vw, 4.6rem);
  line-height: 0.94;
}

.hero-copy {
  margin: 0.9rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.08;
  font-weight: 650;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
  height: 60vh;
  padding: 2.9rem 0 0.2rem;
  margin-top: 8rem;
  transform: translate3d(0, var(--hero-center-y), 0) scale(var(--hero-center-scale));
  transform-origin: center top;
  transition: transform 0.18s linear;
}

.hero-logo {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-2.4rem);
}

.hero-logo-meta-item + .hero-logo-meta-item::before {
  content: " | ";
}

.hero-button {
  background: #fff;
  color: #102915;
  min-height: 46px;
  padding-inline: 1.35rem;
  border-radius: 999px;
}

.hero-mobile-trust-badge {
  display: none;
}

.google-rating {
  position: absolute;
  left: 0;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  color: #fff;
  transform: translate3d(0, var(--hero-rating-y), 0);
  opacity: var(--hero-rating-opacity);
  transition: transform 0.18s linear, opacity 0.18s linear;
}

.google-rating .phela {
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-rating img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.google-rating span {
  color: #fff;
  font-size: 1rem;
  font-weight: 650;
}

section:not(.hero-section) {
  padding: 5rem 0;
}

.section-heading,
.faq-intro {
  margin: 0 auto 2.2rem;
  text-align: center;
}

.scoreboard-panel{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pill-list{
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-heading h2,
.faq-intro h2,
.content-copy h2,
.scoreboard-panel h2,
.final-box h2 {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  text-align: center;
}

.section-heading p,
.faq-intro p,
.content-copy p,
.scoreboard-panel p,
.final-box p {
  margin: 0;
  color: var(--cwc-muted);
  line-height: 1.65;
  text-align: center;
}

.cwc-scoreboard {
  background:
    linear-gradient(90deg, rgba(20, 107, 58, 0.08), rgba(244, 185, 66, 0.08)),
    var(--cwc-cream);
}

.scoreboard-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.andar2{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

.score-tile{
  width: 100%;
}

.scoreboard-panel,
.score-tile {
  border: 1px solid var(--cwc-line);
  border-radius: 8px;
  background: var(--cwc-surface);
  box-shadow: var(--cwc-shadow);
}

.scoreboard-panel {
  padding: 1.6rem;
}

.score-tile {
  display: grid;
  align-content: center;
  gap: 0.4rem;
  min-height: 190px;
  padding: 1.25rem;
  text-align: center;
}

.score-tile span {
  color: var(--cwc-green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.score-tile strong {
  color: var(--cwc-green-dark);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
}

.score-tile p {
  margin: 0;
  color: var(--cwc-muted);
}

.flight-quick-booking {
  padding: 4rem 0;
}

.flight-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-header-compact {
  margin-bottom: 25px;
  text-align: center;
}

.flight-card-compact {
  margin-bottom: 15px;
  padding: 25px;
  border: 1px solid rgba(20, 107, 58, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--cwc-shadow);
}

.trip-type-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.toggle-container {
  position: relative;
  display: inline-flex;
  padding: 4px;
  border-radius: 40px;
  background: #edf6ee;
}

.toggle-container input[type="radio"] {
  display: none;
}

.toggle-label {
  position: relative;
  z-index: 2;
  padding: 8px 25px;
  border-radius: 40px;
  color: var(--cwc-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

.toggle-container input[type="radio"]:checked + .toggle-label {
  color: #fff;
}

.toggle-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 40px;
  background: var(--cwc-green);
  transition: transform 0.3s ease;
}

.toggle-container:has(#roundtrip-flight:checked) .toggle-bg {
  transform: translateX(100%);
}

.flight-row-2col,
.flight-row-3col,
.flight-row-4col {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.flight-row-2col {
  grid-template-columns: 1fr 1fr;
}

.flight-row-3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flight-row-4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field-group {
  position: relative;
  height: 48px;
}

.field-group input,
.field-group select {
  width: 100%;
  height: 100%;
  padding: 0 15px 0 40px;
  border: 1px solid rgba(20, 107, 58, 0.12);
  border-radius: 8px;
  background: #f8fbf6;
  color: var(--cwc-ink);
  font-size: 13px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field-group select {
  appearance: none;
  cursor: pointer;
  padding-right: 30px;
}

.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--cwc-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 107, 58, 0.1);
}

.field-group .field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  color: var(--cwc-green);
  font-size: 16px;
  opacity: 0.82;
  pointer-events: none;
  transform: translateY(-50%);
}

.field-group input::placeholder,
.location-input::placeholder,
.date-input::placeholder,
.passenger-input::placeholder {
  color: #778393;
  opacity: 1;
}

.location-group,
.date-group,
.passenger-compact-group {
  position: relative;
}

.suggestions-dropdown,
.calendar-popup,
.passenger-dropdown-flight {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 100;
  display: none;
  border: 1px solid rgba(20, 107, 58, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(24, 35, 56, 0.14);
}

.suggestions-dropdown {
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
}

.suggestions-dropdown.show,
.calendar-popup.show,
.passenger-dropdown-flight.show {
  display: block;
}

.suggestion-item {
  padding: 10px 15px;
  font-size: 12px;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #edf6ee;
  color: var(--cwc-green);
}

.date-input {
  cursor: pointer;
}

.calendar-popup {
  width: 280px;
  padding: 15px;
}

.calendar-header,
.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calendar-header {
  margin-bottom: 15px;
}

.calendar-header button,
.calendar-footer button,
.counter-sm button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 107, 58, 0.12);
  background: #fff;
  color: var(--cwc-green);
}

.calendar-header button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.calendar-header span {
  color: var(--cwc-ink);
  font-size: 14px;
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 15px;
}

.weekday,
.calendar-day {
  padding: 5px;
  text-align: center;
  font-size: 11px;
}

.weekday {
  color: var(--cwc-muted);
  font-weight: 800;
}

.calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.calendar-day:hover {
  background: #edf6ee;
}

.calendar-day.selected {
  background: var(--cwc-green);
  color: #fff;
}

.calendar-day.today {
  border: 1px solid var(--cwc-green);
}

.calendar-day.disabled {
  color: #c8cdd5;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-footer {
  justify-content: flex-end;
}

.calendar-footer button {
  padding: 6px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.calendar-footer button:last-child,
.passenger-footer button {
  border-color: var(--cwc-green);
  background: var(--cwc-green);
  color: #fff;
}

.passenger-dropdown-flight {
  width: 230px;
  padding: 15px;
}

.passenger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(20, 107, 58, 0.12);
}

.passenger-row span {
  color: var(--cwc-ink);
  font-size: 12px;
  font-weight: 650;
}

.passenger-row small {
  color: var(--cwc-muted);
  font-size: 10px;
}

.counter-sm {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-sm button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-weight: 800;
}

.passenger-footer {
  margin-top: 12px;
  padding-top: 10px;
  text-align: right;
}

.passenger-footer button {
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.flight-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-flight-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 13px 35px;
  border: 0;
  border-radius: 999px;
  background: #2E5EAA;;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-flight-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(20, 107, 58, 0.18);
}

.btn-flight-submit:disabled {
  cursor: wait;
  opacity: 0.85;
}

.spinning {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.host-country-section,
.content-section,
.keyword-section,
.faq-section {
  background: #fff;
}

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

.country-card {
  overflow: hidden;
  border: 1px solid var(--cwc-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--cwc-shadow);
}

.country-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.country-card div {
  padding: 1.2rem;
  text-align: center;
}

.country-card span {
  color: var(--cwc-green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.country-card h3 {
  margin: 0.35rem 0 0.65rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.country-card p {
  margin: 0 0 1rem;
  color: var(--cwc-muted);
  line-height: 1.55;
}

.country-card .primary-button {
  width: 100%;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1.5rem;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.content-copy {
  display: grid;
  gap: 1rem;
}

.content-copy p + p {
  margin-top: 0.2rem;
}

.timeline-card,
.image-panel,
.final-box,
.player-table-wrap {
  border: 1px solid var(--cwc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--cwc-shadow);
}

.image-panel{
  border-radius: 50px;
}

.timeline-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
}

.timeline-item {
  position: relative;
  padding: 1rem 1rem 1rem 1.2rem;
  border-left: 4px solid var(--cwc-green);
  border-radius: 8px;
  background: #f8fbf6;
}

.timeline-item span {
  display: block;
  color: var(--cwc-green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-item strong {
  display: block;
  margin: 0.25rem 0;
  font-size: 1.05rem;
}

.timeline-item p {
  margin: 0;
  color: var(--cwc-muted);
}

.dark-band {
  background:
    linear-gradient(180deg, rgba(18, 127, 236, 0.96), rgba(80, 142, 249, 0.94)),
    var(--cwc-green-dark);
  color: #fff;
}

.dark-band .eyebrow,
.dark-band .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.venue-card {
  min-height: 210px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.venue-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(244, 185, 66, 0.18);
  color: #ffe6a6;
  font-size: 0.78rem;
  font-weight: 800;
}

.venue-card h3 {
  margin: 0.75rem 0 0.45rem;
  font-size: 1.15rem;
}

.venue-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.48;
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.pill-list,
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill-list span,
.keyword-cloud span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(20, 107, 58, 0.12);
  border-radius: 999px;
  background: #f8fbf6;
  color: var(--cwc-green-dark);
  font-weight: 700;
}

.travel-intel {
  background: #f7faf4;
}

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

.intel-card {
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid var(--cwc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--cwc-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.intel-card i {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #edf6ee;
  color: var(--cwc-green);
  font-size: 1.5rem;
}

.intel-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.22rem;
}

.intel-card p {
  margin: 0;
  color: var(--cwc-muted);
  line-height: 1.58;
}

.final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.7rem;
  background:
    linear-gradient(135deg, rgba(20, 107, 58, 0.1), rgba(244, 185, 66, 0.12)),
    #fff;
}

.final-box div {
  max-width: 760px;
}

.player-section {
  background: #fff;
}

.player-table-wrap {
  overflow-x: auto;
}

.player-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.player-table th,
.player-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--cwc-line);
  text-align: left;
  vertical-align: top;
}

.player-table th {
  background: var(--cwc-green-dark);
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.player-table td {
  color: var(--cwc-muted);
}

.player-table td:first-child {
  color: var(--cwc-ink);
  font-weight: 800;
}

.keyword-section {
  background: #f7faf4;
}

.keyword-cloud {
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}

.faq-section {
  background: #eef0f7;
}

.faq-list {
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0.8rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(20, 107, 58, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 35, 56, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover,
.country-card:hover,
.intel-card:hover,
.venue-card:hover {
  transform: translateY(-4px);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 1.1rem 2.2rem 1.1rem 0;
  border: 0;
  background: transparent;
  color: var(--cwc-ink);
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--cwc-green);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 1.1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--cwc-muted);
  line-height: 1.6;
}

.cta-section {
  background: #fff;
}

.cta-card {
  padding: 2.2rem;
  border-radius: 50px;
  background:
    linear-gradient(180deg, rgba(18, 127, 236, 0.96), rgba(80, 142, 249, 0.94)),
    var(--cwc-green-dark);
  color: #fff;
  text-align: center;
  box-shadow: var(--cwc-shadow);
}

.cta-card .eyebrow,
.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-card .primary-button {
  background: #fff;
  color: var(--cwc-green-dark);
}

.cta-card .secondary-button {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-section {
    height: auto;
    min-height: 100svh;
  }

  .hero-content,
  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
  }

  .hero-content {
    justify-items: center;
    min-height: 100svh;
    height: auto;
    padding-top: 7.5rem;
    overflow: visible;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    justify-self: center;
    max-width: 720px;
    margin-top: 0;
  }

  .hero-right {
    align-self: center;
    text-align: center;
  }

  .hero-copy {
    max-width: 32ch;
    margin-inline: auto;
  }

  .hero-center {
    height: auto;
    gap: 9rem;
    padding: 1rem 0;
  }

  .hero-logo {
    transform: translateY(0);
  }

  .google-rating {
    position: static;
    margin-top: 1rem;
  }

  .hero-logo-meta {
    display: none !important;
  }

  .hero-mobile-trust-badge {
    position: absolute;
    left: clamp(0.75rem, 2vw, 1.35rem);
    bottom: clamp(0.75rem, 2vw, 1.1rem);
    z-index: 2;
    display: grid;
    gap: 0.18rem;
    width: min(10rem, calc(100% - 1.5rem));
    padding: 0.5rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 17, 35, 0.42);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    backdrop-filter: blur(10px);
  }

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

  .scoreboard-panel-main {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 800px) {
  .flight-row-3col,
  .flight-row-4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .flight-row-3col .date-group:last-child {
    grid-column: span 2;
  }

  .final-box {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  section:not(.hero-section) {
    padding: 4.25rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 0.9rem;
    min-height: 100svh;
    height: 100svh;
    padding-top: 6rem;
    padding-bottom: 1.35rem;
  }

  .hero-left {
    justify-self: center;
    width: min(100%, 23rem);
    max-width: 100%;
    margin: 0;
    margin-top: 50px;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero-side h1,
  .hero-side h2 {
    font-size: clamp(1.82rem, 7vw, 2.35rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: none;
    margin-top: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero-center {
    width: 100%;
    gap: 1.5rem;
    min-height: 0;
    height: auto;
    margin-top: 0.5rem;
    padding: 0;
  }

  .hero-logo {
    font-size: 1.55rem;
    letter-spacing: 0.16em;
  }

  .hero-button {
    width: min(100%, 14rem);
    min-height: 48px;
  }

  .google-rating {
    display: none;
  }

  .scoreboard-grid,
  .country-grid,
  .intel-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .score-tile {
    min-height: 150px;
  }

  .image-panel img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .flight-card-compact {
    padding: 18px;
  }

  .flight-row-2col,
  .flight-row-3col,
  .flight-row-4col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flight-row-3col .date-group:last-child {
    grid-column: auto;
  }

  .toggle-label {
    padding: 6px 18px;
    font-size: 12px;
  }

  .calendar-popup,
  .passenger-dropdown-flight {
    width: 100%;
  }

  .country-card img {
    height: 210px;
  }

  .cta-card,
  .final-box,
  .scoreboard-panel {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::after,
  .hero-left,
  .hero-right,
  .hero-center,
  .google-rating,
  .reveal-up {
    transform: none !important;
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
