@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,700&display=swap");

:root {
  --background: #0a1628;
  --surface: #0d1e33;
  --surface-raised: #1e3a5f;
  --text: #ffffff;
  --muted: #b8d4e8;
  --accent: #4e79a7;
  --accent-hover: #5a8bbf;
  --gold: #e5a93c;
  --gold-hover: #fadb5f;
  --green: #25d366;
  --danger: #ef4444;
  --border-blue: rgba(78, 121, 167, 0.3);
  --border-blue-soft: rgba(78, 121, 167, 0.2);
}

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

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.status-page {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cabinet Grotesk", "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
button {
  overflow-wrap: anywhere;
}

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

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

::selection {
  background: var(--accent);
  color: var(--background);
}

.site {
  min-height: 100vh;
  background: var(--background);
}

.container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 48px, 896px);
  margin: 0 auto;
}

.container-medium {
  width: min(100% - 48px, 1152px);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.surface {
  background: var(--surface);
}

.background {
  background: var(--background);
}

.raised {
  background: var(--surface-raised);
}

.center {
  text-align: center;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--gold);
  letter-spacing: 0.2em;
}

.section-title {
  color: var(--text);
  font-size: clamp(32px, 4vw, 48px);
}

.section-title + .section-copy,
.section-copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.max-copy {
  max-width: 672px;
  margin-right: auto;
  margin-left: auto;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(78, 121, 167, 0.2);
  background: rgba(13, 30, 51, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.header-inner > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo-header {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-hero {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 24px;
}

.logo-footer {
  width: auto;
  height: 40px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.whatsapp-link:hover {
  color: #20ba5c;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 2px;
  padding: 10px 24px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--background);
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-blue {
  background: linear-gradient(90deg, var(--accent), var(--surface-raised));
  color: var(--text);
}

.btn-blue:hover {
  background: linear-gradient(90deg, var(--accent-hover), #2a4a6f);
}

.btn-outline {
  border: 1px solid rgba(78, 121, 167, 0.5);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: var(--surface-raised);
}

.btn-large {
  min-height: 56px;
  padding: 16px 32px;
  font-size: 18px;
}

.btn-wide {
  width: 100%;
}

.ticker {
  position: fixed;
  top: 81px;
  right: 0;
  left: 0;
  z-index: 40;
  overflow: hidden;
  background: var(--surface-raised);
  padding: 8px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 144px 0 80px;
}

.hero-bg,
.status-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, #0a1628 0%, rgba(10, 22, 40, 0.95) 52%, #0a1628 100%);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(78, 121, 167, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 121, 167, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  border-radius: 999px;
  background: rgba(78, 121, 167, 0.2);
  filter: blur(64px);
  animation: breathe 4s ease-in-out infinite;
}

.status-glow {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  border-radius: 999px;
  background: rgba(78, 121, 167, 0.2);
  filter: blur(64px);
  animation: breathe 4s ease-in-out infinite;
}

.status-glow.red {
  top: auto;
  right: 25%;
  bottom: 25%;
  left: auto;
  width: 320px;
  height: 320px;
  background: rgba(239, 68, 68, 0.1);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 64px);
  overflow-wrap: normal;
}

.gold-gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 20px);
}

.text-white {
  color: var(--text);
}

.text-muted {
  color: var(--muted);
}

.text-gold {
  color: var(--gold);
}

.text-green {
  color: var(--green);
}

.text-red {
  color: var(--danger);
}

.quote-panel {
  border-left: 4px solid var(--gold);
  border-radius: 0 2px 2px 0;
  background: rgba(30, 58, 95, 0.3);
  padding: 24px;
}

.quote-panel p {
  color: var(--muted);
  font-style: italic;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 2px;
  background: rgba(30, 58, 95, 0.5);
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
}

.form-card,
.panel {
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--surface);
}

.form-card {
  padding: 24px;
}

.form-card.compact {
  max-width: 672px;
  margin: 0 auto;
}

.form-card h3 {
  margin-bottom: 24px;
  font-size: clamp(22px, 2vw, 26px);
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label,
.label {
  color: var(--text);
  font-weight: 500;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: rgba(30, 58, 95, 0.5);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.input,
.select {
  min-height: 44px;
  padding: 10px 12px;
}

.textarea {
  min-height: 80px;
  resize: vertical;
  padding: 12px;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(184, 212, 232, 0.5);
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78, 121, 167, 0.18);
}

.select option {
  background: var(--surface-raised);
  color: var(--text);
}

.challenge-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.challenge-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-blue-soft);
  border-radius: 2px;
  background: rgba(30, 58, 95, 0.3);
  padding: 12px;
  color: var(--muted);
  text-align: left;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.challenge-option:hover {
  border-color: rgba(78, 121, 167, 0.5);
}

.challenge-option.active {
  border-color: var(--gold);
  background: rgba(78, 121, 167, 0.3);
}

.check-box {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 2px;
}

.challenge-option.active .check-box {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--background);
}

.challenge-option span:last-child {
  font-size: 14px;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.section-heading {
  margin-bottom: 64px;
  text-align: center;
}

.icon-xl {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.icon,
[data-lucide] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.icon-gold {
  color: var(--gold);
}

.icon-blue {
  color: var(--accent);
}

.icon-green {
  color: var(--green);
}

.icon-red {
  color: var(--danger);
}

.card-grid-4 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card-grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--background);
  padding: 24px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  border-color: rgba(229, 169, 60, 0.5);
  transform: translateY(-4px);
}

.card.surface-card {
  background: var(--surface);
}

.card-gradient {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.5), var(--background));
}

.card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--gold);
}

.list-stack {
  display: flex;
  max-width: 896px;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--surface);
  padding: 16px;
}

.list-item.background-card {
  background: var(--background);
}

.list-item span {
  color: var(--text);
  font-size: 18px;
}

.risk-grid,
.walk-grid,
.not-grid {
  display: grid;
  max-width: 896px;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.not-grid {
  max-width: 768px;
  gap: 16px;
}

.risk-note {
  margin-top: 40px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.strategy-card.highlight {
  border: 2px solid rgba(229, 169, 60, 0.5);
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.2), var(--background));
}

.strategy-card h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.strategy-card.highlight h3 {
  color: var(--gold);
}

.strategy-card .role {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
}

.strategy-card ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  list-style: none;
}

.strategy-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.strategy-card li [data-lucide] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--accent);
}

.strategy-card .quote {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-style: italic;
}

.strategy-card .insight {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.center-panel {
  max-width: 768px;
  margin: 64px auto 0;
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--background);
  padding: 32px;
  text-align: center;
}

.center-panel p {
  color: var(--muted);
  font-size: 18px;
}

.center-panel .gold-line {
  margin-top: 16px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
}

.comparison-grid {
  display: grid;
  max-width: 1152px;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.comparison-card {
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
}

.comparison-card.before {
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comparison-card.after {
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.comparison-image {
  height: 192px;
  overflow: hidden;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-card.before img {
  opacity: 0.7;
}

.comparison-body {
  padding: 32px;
}

.comparison-body h3 {
  margin-bottom: 24px;
  font-size: 22px;
}

.mini-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.after .mini-row {
  color: var(--text);
}

.calendar-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.booking-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calendar-panel {
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--background);
  padding: 24px;
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.icon-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  transition: background-color 0.2s ease;
}

.icon-btn:hover {
  background: rgba(78, 121, 167, 0.3);
}

.calendar-head,
.calendar-days {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-head {
  margin-bottom: 8px;
}

.calendar-head div {
  padding: 8px 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.day-btn {
  min-height: 44px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.day-btn:hover:not(:disabled) {
  background: rgba(78, 121, 167, 0.3);
}

.day-btn.selected {
  background: var(--gold);
  color: var(--background);
  font-weight: 800;
}

.day-btn.empty {
  visibility: hidden;
}

.day-btn:disabled {
  color: rgba(78, 121, 167, 0.3);
}

.time-help {
  margin: 8px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.time-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.time-btn {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.time-btn:hover:not(:disabled) {
  border-color: var(--accent);
}

.time-btn.selected {
  border-color: var(--gold);
  background: rgba(229, 169, 60, 0.1);
  color: var(--gold);
  font-weight: 700;
}

.time-btn:disabled {
  border-color: rgba(78, 121, 167, 0.2);
  color: rgba(78, 121, 167, 0.3);
}

.selected-slot {
  display: none;
  margin-bottom: 16px;
  border: 1px solid rgba(229, 169, 60, 0.3);
  border-radius: 2px;
  background: rgba(30, 58, 95, 0.3);
  padding: 16px;
}

.selected-slot.active {
  display: block;
  animation: fadeInUp 0.25s ease both;
}

.selected-slot .slot-label {
  color: var(--muted);
  font-size: 14px;
}

.selected-slot .slot-date {
  color: var(--text);
  font-weight: 700;
}

.selected-slot .slot-time {
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}

.old-price {
  color: var(--muted);
  font-size: 24px;
  text-decoration: line-through;
}

.new-price {
  color: var(--text);
  font-size: clamp(56px, 7vw, 72px);
  font-family: "Cabinet Grotesk", "Outfit", sans-serif;
  font-weight: 800;
  line-height: 1;
}

.pricing-panel {
  max-width: 576px;
  margin: 24px auto 0;
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--surface);
  padding: 24px;
}

.time-value {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.time-value h2 {
  font-size: clamp(40px, 5vw, 56px);
}

.time-compare {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  padding-top: 16px;
}

.time-compare span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.time-compare strong {
  color: var(--text);
  font-size: 24px;
}

.speaker-grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.speaker-photo {
  display: flex;
  justify-content: center;
}

.speaker-photo img {
  max-width: 448px;
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  box-shadow:
    0 0 60px rgba(229, 169, 60, 0.4),
    0 0 100px rgba(229, 169, 60, 0.2);
}

.speaker-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.speaker-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speaker-points div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cert {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.cert [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.gallery-frame {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--background);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.gallery-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(78, 121, 167, 0.5);
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.8);
  color: var(--text);
  transform: translateY(-50%);
}

.gallery-nav:hover {
  background: var(--accent);
}

.gallery-nav.prev {
  left: 16px;
}

.gallery-nav.next {
  right: 16px;
}

.gallery-dots {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.gallery-dot.active {
  width: 32px;
  background: var(--gold);
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.cta-wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  opacity: 0.1;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent, var(--gold), transparent);
  transform: translate(-50%, -50%);
  animation: spinCentered 60s linear infinite;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.glow-button-wrap {
  border-radius: 2px;
  animation: glowPulse 2s ease-in-out infinite;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 64px;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.floating-whatsapp:hover {
  background: #20ba5c;
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer {
  border-top: 1px solid var(--surface-raised);
  background: var(--surface);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.toast-wrap {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 999;
  display: flex;
  width: min(100% - 32px, 480px);
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  transform: translateX(-50%);
}

.toast {
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 14px 16px;
  pointer-events: auto;
  animation: toastIn 0.2s ease both;
}

.toast.success {
  border-color: rgba(37, 211, 102, 0.4);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.45);
}

.status-card {
  position: relative;
  z-index: 1;
  width: min(100%, 544px);
  text-align: center;
}

.status-logo {
  width: auto;
  height: 64px;
  margin: 0 auto 32px;
}

.status-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.status-stack.hidden {
  display: none;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 4px solid var(--accent);
  border-top-color: transparent;
  border-radius: 999px;
  animation: spin 0.9s linear infinite;
}

.status-icon {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin: 0 auto;
}

.status-icon.success {
  border: 1px solid rgba(78, 121, 167, 0.5);
  background: linear-gradient(135deg, rgba(78, 121, 167, 0.3), rgba(30, 58, 95, 0.3));
  color: var(--accent);
}

.status-icon.warning {
  border: 1px solid rgba(234, 179, 8, 0.3);
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.status-icon.cancel {
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.status-icon [data-lucide] {
  width: 48px;
  height: 48px;
}

.event-box {
  width: 100%;
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  background: var(--surface);
  padding: 24px;
  text-align: left;
}

.event-box .mini-row {
  color: rgba(255, 255, 255, 0.8);
}

.booking-meta {
  margin-top: 16px;
  border-top: 1px solid var(--border-blue);
  padding-top: 16px;
}

.booking-meta p {
  color: var(--muted);
  font-size: 14px;
}

.booking-meta span {
  color: var(--text);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(78, 121, 167, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(78, 121, 167, 0.5);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes spinCentered {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 128px 0;
  }

  .form-card {
    padding: 32px;
  }

  .gallery-frame {
    height: 700px;
  }
}

@media (max-width: 1024px) {
  .hero-inner,
  .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .container,
  .container-narrow,
  .container-medium {
    width: min(100% - 32px, 1280px);
  }

  .header-inner {
    padding: 12px 0;
  }

  .logo-header {
    width: 42px;
    height: 42px;
  }

  .whatsapp-link {
    display: none;
  }

  .ticker {
    top: 67px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-inner,
  .booking-grid,
  .comparison-grid,
  .speaker-grid,
  .form-grid,
  .challenge-grid,
  .risk-grid,
  .walk-grid,
  .not-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(36px, 11vw, 48px);
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .gallery-frame {
    height: 520px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }

  .price-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-meta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-large {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .time-grid,
  .calendar-days,
  .calendar-head {
    gap: 2px;
  }

  .day-btn {
    min-height: 38px;
  }

  .time-btn {
    min-height: 52px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .container,
  .container-narrow,
  .container-medium {
    width: min(100% - 28px, 1280px);
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 44px 0;
  }

  .header-inner {
    display: flex;
    gap: 10px;
  }

  .header-actions {
    width: 132px;
    flex: 0 0 132px;
    justify-content: flex-end;
  }

  .header-actions .btn {
    min-height: 40px;
    width: 100%;
    max-width: 100%;
    padding: 9px 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .ticker {
    top: 65px;
    padding: 7px 0;
  }

  .ticker-track {
    gap: 24px;
    animation-duration: 24s;
  }

  .ticker span {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 56px;
  }

  .hero-copy {
    gap: 18px;
  }

  .logo-hero {
    width: 56px;
    height: 56px;
    margin-bottom: 4px;
  }

  .eyebrow,
  .eyebrow.gold {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-title span,
  .form-card h3,
  .section-title {
    overflow-wrap: anywhere;
  }

  .hero-subtitle,
  .section-title + .section-copy,
  .section-copy {
    font-size: 16px;
  }

  .quote-panel {
    padding: 18px;
  }

  .pill-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 4px;
  }

  .pill {
    justify-content: flex-start;
  }

  .form-card,
  .calendar-panel,
  .card,
  .pricing-panel,
  .center-panel {
    padding: 20px;
  }

  .challenge-option {
    align-items: flex-start;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .card-grid-3,
  .card-grid-4,
  .comparison-grid,
  .booking-grid,
  .speaker-grid,
  .risk-grid,
  .walk-grid {
    gap: 18px;
  }

  .list-item {
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }

  .list-item span {
    font-size: 16px;
  }

  .comparison-body {
    padding: 22px;
  }

  .calendar-top {
    gap: 8px;
    margin-bottom: 18px;
  }

  .calendar-top h3 {
    font-size: 20px;
    text-align: center;
  }

  .calendar-head div {
    font-size: 12px;
  }

  .gallery-frame {
    height: 380px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav.prev {
    left: 8px;
  }

  .gallery-nav.next {
    right: 8px;
  }

  .gallery-dots {
    bottom: 16px;
    gap: 6px;
  }

  .gallery-dot {
    width: 9px;
    height: 9px;
  }

  .gallery-dot.active {
    width: 24px;
  }

  .speaker-photo img {
    max-width: min(100%, 360px);
  }

  .trust-strip {
    gap: 18px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 420px) {
  .container,
  .container-narrow,
  .container-medium {
    width: min(100% - 24px, 1280px);
  }

  .header-actions .btn {
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .header-actions {
    width: 118px;
    flex-basis: 118px;
  }

  .hero-title {
    font-size: clamp(27px, 7.6vw, 32px);
  }

  .section-title {
    font-size: clamp(28px, 8vw, 34px);
  }

  .form-card,
  .calendar-panel,
  .card,
  .pricing-panel,
  .center-panel {
    padding: 16px;
  }

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

  .gallery-frame {
    height: 320px;
  }

  .new-price {
    font-size: 48px;
  }
}
