/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A2E;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.03em;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-gold {
  background: #E0A819;
  color: #0B1D3A;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FDFBF7;
  border-bottom: 1px solid #D9D0C5;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo, .footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0B1D3A;
  letter-spacing: -0.02em;
}
.logo-accent { font-weight: 400; }
.footer-logo { color: #F5F0E8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  color: #6B7B8D;
  transition: color 0.2s;
}
.nav-link:hover { color: #0B1D3A; }
.nav-links .btn { padding: 10px 22px; font-size: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0B1D3A;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: #FDFBF7;
  padding: 80px 0 60px;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.hero-text h1 strong { font-weight: 800; }
.hero-text h1 .highlight {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #E0A819;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-skip-ink: none;
}
.hero-text p {
  font-size: 17px;
  color: #1A1A2E;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-height: 525px;
  object-fit: contain;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #F5F0E8;
  padding: 24px 0;
  overflow: hidden;
}
.trust-bar .container {
  max-width: 100%;
  padding: 0 80px;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-evenly;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item span {
  font-size: 15px;
  font-weight: 600;
  color: #0B1D3A;
}

/* ===== VALUE STACK (Section 2) ===== */
.value-stack {
  background: #F5F0E8;
  padding: 80px 0;
}
.value-stack-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.value-stack-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 24px;
}
.value-stack-text p {
  font-size: 16px;
  color: #1A1A2E;
  line-height: 1.7;
  margin-bottom: 16px;
}
.value-stack-accent {
  color: #E0A819 !important;
  font-weight: 600;
  font-size: 17px !important;
  margin-top: 8px;
}

/* ===== INDUSTRY DATA (Section 3) ===== */
.industry-data {
  background: #0B1D3A;
  padding: 80px 0;
}
.industry-data-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.industry-chart-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chart-label {
  font-size: 14px;
  font-weight: 700;
  color: #A49A87;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.chart-sublabel {
  font-size: 15px;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 24px;
}
.donut-chart-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 24px;
}
.donut-svg {
  width: 100%;
  height: 100%;
}
.donut-bg {
  opacity: 0.3;
}
.donut-segment {
  opacity: 0;
  transition: stroke-width 0.2s, opacity 0.2s;
}
.donut-animated .donut-segment {
  animation: donutFadeIn 0.8s ease forwards;
}
.donut-animated .donut-segment:nth-child(2) { animation-delay: 0.1s; }
.donut-animated .donut-segment:nth-child(3) { animation-delay: 0.2s; }
.donut-animated .donut-segment:nth-child(4) { animation-delay: 0.3s; }
.donut-animated .donut-segment:nth-child(5) { animation-delay: 0.4s; }

@keyframes donutFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.donut-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.donut-pct {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #F5F0E8;
  line-height: 1.2;
}
.donut-desc {
  display: block;
  font-size: 12px;
  color: #A49A87;
  margin-top: 4px;
}
.donut-tooltip {
  position: absolute;
  background: #1B2A4A;
  color: #F5F0E8;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  pointer-events: none;
  display: none;
  white-space: nowrap;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-label {
  font-size: 12px;
  color: #A49A87;
}
.legend-pct {
  font-size: 12px;
  color: #F5F0E8;
  font-weight: 600;
}

.chart-source {
  font-size: 11px;
  color: #6B7B8D;
  margin-top: 16px;
  text-align: center;
}
.chart-source a {
  color: #A49A87;
  text-decoration: underline;
  transition: color 0.2s;
}
.chart-source a:hover {
  color: #E0A819;
}

.industry-text {
  flex: 1;
}
.industry-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 20px;
}
.industry-text p {
  font-size: 15px;
  color: #A49A87;
  line-height: 1.7;
  margin-bottom: 12px;
}
.industry-accent {
  color: #E0A819 !important;
  font-weight: 600;
  font-size: 16px !important;
  margin-top: 8px;
}

/* ===== DIFFERENTIATORS (Section 4) ===== */
.differentiators {
  background: #FDFBF7;
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 40px;
}
.section-title-light { color: #FFFFFF; }
.cards {
  display: flex;
  gap: 24px;
}
.card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #D9D0C5;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}
.card-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon img {
  max-height: 100%;
  object-fit: contain;
}
.card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
}
.card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0B1D3A;
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  color: #6B7B8D;
  line-height: 1.6;
}
.section-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===== LEADERSHIP (Section 5) ===== */
.leadership {
  background: #F5F0E8;
  padding: 80px 0;
}
.leadership-header {
  text-align: center;
  margin-bottom: 48px;
}
.leadership-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 16px;
}
.leadership-header p {
  font-size: 16px;
  color: #6B7B8D;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.leadership-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.leadership-row:last-child {
  margin-bottom: 0;
}
.leader-card {
  background: #FFFFFF;
  border: 1px solid #D9D0C5;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.leader-card-main {
  width: 320px;
}
.leader-card-placeholder {
  flex: 1;
  max-width: 320px;
}
.coming-soon-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #E0A819;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.leader-img {
  width: 160px;
  height: 192px;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto 16px;
  background: #E8E4DD;
}
.leader-img-placeholder {
  width: 120px;
  height: 144px;
  object-fit: contain;
  background: transparent;
}
.leader-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0B1D3A;
  margin-bottom: 8px;
}
.leader-card p {
  font-size: 13px;
  color: #6B7B8D;
  line-height: 1.6;
  margin-bottom: 8px;
}
.leader-link {
  color: #E0A819;
  font-weight: 600;
  font-size: 13px;
}

/* ===== HOW IT WORKS (Section 6) ===== */
.how-it-works {
  background: #0B1D3A;
  padding: 80px 0;
}
.steps {
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
}
.step {
  flex: 1;
  text-align: center;
}
.step-icon {
  margin-bottom: 20px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon img {
  max-height: 90px;
  object-fit: contain;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0A819;
  color: #0B1D3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: #A49A87;
  line-height: 1.6;
}

/* ===== WHERE THIS IS GOING (Section 7) ===== */
.where-going {
  background: #FDFBF7;
  padding: 80px 0;
}
.where-going-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.where-going-text {
  flex: 1;
}
.where-going-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0B1D3A;
  line-height: 1.2;
  margin-bottom: 20px;
}
.where-going-text p {
  font-size: 16px;
  color: #1A1A2E;
  line-height: 1.7;
  margin-bottom: 16px;
}
.where-going-accent {
  color: #E0A819 !important;
  font-weight: 600;
}
.where-going-text .btn {
  margin-top: 8px;
}
.orbit-container {
  flex: 1;
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border: 1px dashed #D9D0C5;
  border-radius: 50%;
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: #E0A819;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.orbit-center-bold {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0B1D3A;
  line-height: 1.1;
}
.orbit-center-light {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #0B1D3A;
  line-height: 1.1;
}

/* Connecting lines */
.orbit-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  transform-origin: 0 0;
  animation: orbitLineSpin 20s linear infinite;
  z-index: 1;
}
.orbit-line::after {
  content: '';
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 140px;
  height: 1px;
  border-top: 1px dashed #D9D0C5;
}
.orbit-line-1 { animation-delay: 0s; }
.orbit-line-2 { animation-delay: -6.67s; }
.orbit-line-3 { animation-delay: -13.33s; }

@keyframes orbitLineSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Orbiting circles */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  animation: orbitSpin 20s linear infinite;
  z-index: 3;
}
.orbit-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #0B1D3A;
  border: 2px solid #3D5A80;
  border-radius: 50%;
  color: #F2E7C9;
  font-size: 11px;
  font-weight: 600;
  animation: orbitCounterSpin 20s linear infinite;
}
.orbit-item-1 { animation-delay: 0s; }
.orbit-item-1 span { animation-delay: 0s; }
.orbit-item-2 { animation-delay: -6.67s; }
.orbit-item-2 span { animation-delay: -6.67s; }
.orbit-item-3 { animation-delay: -13.33s; }
.orbit-item-3 span { animation-delay: -13.33s; }

@keyframes orbitSpin {
  from { transform: rotate(0deg) translateX(140px); }
  to { transform: rotate(360deg) translateX(140px); }
}
@keyframes orbitCounterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ===== TEAM BUILD (Section 8) ===== */
.team-build {
  background: #F5F0E8;
  padding: 80px 0;
}

/* ===== CALENDAR CTA (Section 9) ===== */
.calendar-section {
  background: #FDFBF7;
  padding: 80px 0;
}
.calendar-subtitle {
  text-align: center;
  font-size: 16px;
  color: #6B7B8D;
  margin-top: -28px;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Custom Cal.com booking widget */
.cal-widget {
  max-width: 1000px;
  margin: 0 auto;
}
.cal-widget-inner {
  display: flex;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Left sidebar — event info */
.cal-info-side {
  width: 260px;
  padding: 28px 24px;
  border-right: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.cal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}
.cal-host-name {
  font-size: 13px;
  color: #E0A819;
  font-weight: 500;
  margin-bottom: 4px;
}
.cal-event-name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 12px;
}
.cal-event-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 20px;
}
.cal-event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}
.cal-meta-item svg {
  flex-shrink: 0;
  color: #9ca3af;
}

/* Center — month calendar */
.cal-calendar-side {
  flex: 1;
  padding: 24px 28px;
  border-right: 1px solid #e5e7eb;
}
.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#cal-month-label {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.cal-nav-arrows {
  display: flex;
  gap: 8px;
}
.cal-nav-btn {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.cal-nav-btn:hover {
  background: #f3f4f6;
  color: #111827;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #d1d5db;
  cursor: default;
  transition: all 0.15s;
}
.cal-day-empty { cursor: default; }
.cal-day-past { color: #d1d5db; cursor: default; }
.cal-day-available {
  font-weight: 500;
  color: #111827;
  background: #f3f4f6;
  cursor: pointer;
}
.cal-day-available:hover { background: #e5e7eb; }
.cal-day-selected {
  background: #E0A819 !important;
  color: #fff !important;
  font-weight: 600;
}
.cal-day-today { position: relative; }
.cal-day-today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E0A819;
}

/* Right — time slots */
.cal-slots-side {
  width: 240px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
  max-height: 480px;
}
.cal-slots-placeholder,
.cal-slots-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  color: #9ca3af;
  text-align: center;
}
.cal-slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-slots-day-label {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.cal-slots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cal-slot-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: all 0.15s;
  background: #fff;
  cursor: pointer;
}
.cal-slot-btn:hover {
  border-color: #E0A819;
  background: #fffbeb;
}
.cal-slot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #0A1628;
  padding: 48px 0 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand { flex: 1; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1B2A4A;
  border: 1px solid #3D5A80;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: #2a3f60; }
.footer-social svg { width: 14px; height: 14px; }
.footer-email {
  margin-top: 12px;
  font-size: 13px;
  color: #6B7B8D;
}
.footer-email a { color: #E0A819; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #6B7B8D;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: #A49A87;
  transition: color 0.2s;
}
.footer-col a:hover { color: #F5F0E8; }
.footer-bottom {
  border-top: 1px solid #1B2A4A;
  margin-top: 32px;
  padding: 16px 0;
  font-size: 13px;
  color: #6B7B8D;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FDFBF7;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid #D9D0C5;
    gap: 16px;
  }
  .nav-links.open { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero-grid { flex-direction: column-reverse; gap: 32px; }
  .hero-text h1 { font-size: 32px; }
  .hero-text p { font-size: 15px; }
  .hero-image img { max-height: 338px; }

  /* Trust bar */
  .trust-bar .container { padding: 0 24px; }
  .trust-bar-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-item span { font-size: 13px; }

  /* Value stack */
  .value-stack { padding: 56px 0; }
  .value-stack-text h2 { font-size: 28px; }

  /* Industry data */
  .industry-data { padding: 56px 0; }
  .industry-data-inner { flex-direction: column; gap: 40px; }
  .donut-chart-container { width: 260px; height: 260px; }
  .industry-text h2 { font-size: 26px; text-align: center; }
  .industry-text p { text-align: center; }

  /* Cards */
  .cards { flex-direction: column; }

  /* Differentiators */
  .differentiators { padding: 56px 0; }

  /* Leadership */
  .leadership { padding: 56px 0; }
  .leadership-header h2 { font-size: 28px; }
  .leadership-row { flex-direction: column; align-items: center; }
  .leader-card-main { width: 100%; max-width: none; }
  .leader-card-placeholder { max-width: none; }

  /* How it works */
  .how-it-works { padding: 56px 0; }
  .steps { flex-direction: column; gap: 36px; }

  /* Where going */
  .where-going { padding: 56px 0; }
  .where-going-inner { flex-direction: column; gap: 32px; align-items: center; }
  .where-going-text h2 { font-size: 28px; text-align: center; }
  .where-going-text p { text-align: center; }
  .where-going-text .btn { display: block; text-align: center; }
  .orbit-container { flex: none; width: 300px; height: 300px; margin: 0 auto; }
  .orbit-ring { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
  .orbit-center { width: 70px; height: 70px; margin: -35px 0 0 -35px; }
  .orbit-center-bold, .orbit-center-light { font-size: 14px; }
  .orbit-line::after { width: 110px; }
  .orbit-item { width: 48px; height: 48px; margin: -24px 0 0 -24px; }
  .orbit-item span { width: 48px; height: 48px; font-size: 9px; }
  @keyframes orbitSpin {
    from { transform: rotate(0deg) translateX(110px); }
    to { transform: rotate(360deg) translateX(110px); }
  }

  /* Team build */
  .team-build { padding: 56px 0; }

  /* Calendar */
  .calendar-section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .cal-widget-inner { flex-direction: column; }
  .cal-info-side { width: 100%; border-right: none; border-bottom: 1px solid #e5e7eb; }
  .cal-calendar-side { border-right: none; border-bottom: 1px solid #e5e7eb; }
  .cal-slots-side { width: 100%; max-height: none; }

  /* Footer */
  .footer-grid { flex-direction: column; gap: 28px; }
}
