/* =============================================
   LA Wellness — Premium Landing Page Styles
   ============================================= */

/* --- CSS Variables --- */
:root {
  --navy-deep: #071A3D;
  --navy-rich: #0B2E6F;
  --navy-dark: #10233F;
  --blue-royal: #1459C7;
  --blue-electric: #2D8CFF;
  --blue-soft: #EAF4FF;
  --bg-light: #F6FAFF;
  --white: #FFFFFF;
  --text-primary: #071A3D;
  --text-secondary: #3A5278;
  --text-muted: #6B8299;
  --border-light: rgba(20, 89, 199, 0.12);
  --border-glass: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 20px rgba(7, 26, 61, 0.06);
  --shadow-md: 0 8px 40px rgba(7, 26, 61, 0.1);
  --shadow-lg: 0 20px 60px rgba(7, 26, 61, 0.14);
  --shadow-glow: 0 0 40px rgba(45, 140, 255, 0.25);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 50px 0;
}

/* --- Typography --- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-royal);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.section-heading.light {
  color: var(--white);
}

.section-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

.section-text.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-text {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--blue-royal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(20, 89, 199, 0.3);
}

.btn-primary:hover {
  background: var(--blue-electric);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-rich);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-royal);
  border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--blue-royal);
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy-deep);
}

.btn-white:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--blue-electric);
  outline-offset: 3px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: top var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.site-header.scrolled .header-inner {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.logo-word {
  color: var(--blue-royal);
  font-weight: 700;
}

.logo-name {
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-royal);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-deep);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.btn-header {
  padding: 12px 24px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 61, 0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--white);
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-nav-link {
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy-deep);
  padding: 12px 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--transition);
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-link:hover {
  color: var(--blue-royal);
}

.btn-mobile-cta {
  margin-top: 24px;
}

.site-header.hero-top .header-inner {
  background: rgba(7, 26, 61, 0.35);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.hero-top .logo-text,
.site-header.hero-top .logo-name,
.site-header.hero-top .nav-link,
.site-header.hero-top .menu-bar {
  color: var(--white);
}

.site-header.hero-top .logo-word {
  color: var(--blue-electric);
}

.site-header.hero-top .nav-link::after {
  background: var(--blue-electric);
}

.site-header.hero-top .nav-link:hover,
.site-header.hero-top .nav-link.active {
  color: var(--white);
}

/* --- Hero Banner --- */
.hero {
  position: relative;
  margin-top: 0;
}

.hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease-in-out, visibility 1.4s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
}

.hero-slide:not(.active) img {
  animation: none;
  transform: scale(1);
}

.hero-slide.active img {
  animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.hero-slider-dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.15);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 61, 0.55) 0%, rgba(7, 26, 61, 0.72) 45%, rgba(11, 46, 111, 0.82) 100%),
    radial-gradient(ellipse at center, rgba(20, 89, 199, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 140px 24px 80px;
  margin: 0 auto;
}

.hero-eyebrow {
  color: var(--blue-electric);
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-desc {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

/* --- Trust Strip --- */
.trust-strip {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip-wrap {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: trust-marquee 55s linear infinite;
}

.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 48px;
}

@keyframes trust-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.trust-item {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.trust-sep {
  color: var(--blue-electric);
  font-size: 10px;
  line-height: 1;
  flex-shrink: 0;
}

/* --- About --- */
.about {
  position: relative;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.about-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(45, 140, 255, 0.08);
  top: -100px;
  left: -150px;
}

.about-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(20, 89, 199, 0.06);
  bottom: -80px;
  right: -100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-grid > * {
  min-width: 0;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
}

.about-image-border {
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 2px solid rgba(20, 89, 199, 0.2);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.about-image-main {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-visual:hover .about-image-main img {
  transform: scale(1.04);
}

.about-location-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}

.about-location-tag svg {
  color: var(--blue-royal);
  flex-shrink: 0;
}

.about-stat-card {
  position: absolute;
  bottom: 32px;
  right: -28px;
  z-index: 3;
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-left: 4px solid var(--blue-electric);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue-royal);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-heading {
  margin-bottom: 24px;
}

.about-text {
  margin-bottom: 32px;
  max-width: 520px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(20, 89, 199, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue-soft);
  color: var(--blue-royal);
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}

.value-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.eyebrow-light {
  color: var(--blue-electric);
}

/* --- Philosophy --- */
.philosophy {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, #0a2248 45%, var(--navy-rich) 100%);
  overflow: hidden;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.philosophy-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.philosophy-glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(45, 140, 255, 0.18) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.philosophy-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(20, 89, 199, 0.2);
  bottom: -100px;
  left: -80px;
}

.philosophy-glow-3 {
  width: 350px;
  height: 350px;
  background: rgba(45, 140, 255, 0.12);
  bottom: -80px;
  right: -60px;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-heading {
  margin-bottom: 20px;
}

.philosophy-subtext {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.philosophy-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.philosophy-card-accent {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.philosophy-card:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(45, 140, 255, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(45, 140, 255, 0.12);
}

.philosophy-card:hover .philosophy-card-accent {
  opacity: 1;
}

.philosophy-card:hover .philosophy-icon {
  background: var(--blue-electric);
  color: var(--white);
  box-shadow: 0 0 24px rgba(45, 140, 255, 0.4);
}

.philosophy-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.philosophy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(45, 140, 255, 0.15);
  border: 1px solid rgba(45, 140, 255, 0.3);
  border-radius: var(--radius-md);
  color: var(--blue-electric);
  transition: all var(--transition);
}

.card-number {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  padding-top: 4px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.card-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

/* --- Sessions --- */
.sessions {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
  overflow: hidden;
}

.sessions-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sessions-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.sessions-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(45, 140, 255, 0.06);
  top: 0;
  right: -200px;
}

.sessions-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(20, 89, 199, 0.05);
  bottom: -100px;
  left: -150px;
}

.sessions-subtext {
  margin: 0 auto;
  max-width: 560px;
}

.session-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
}

.session-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(20, 89, 199, 0.1);
  border-radius: 24px;
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  box-shadow: 0 8px 32px rgba(7, 26, 61, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.session-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(45, 140, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.session-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(7, 26, 61, 0.12);
  border-color: rgba(20, 89, 199, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.session-card:hover::before {
  opacity: 1;
}

.session-card-featured {
  background: linear-gradient(165deg, #0c2d66 0%, var(--navy-deep) 55%, #081a3d 100%);
  border: 2px solid rgba(45, 140, 255, 0.4);
  box-shadow: 0 28px 64px rgba(7, 26, 61, 0.28), 0 0 0 1px rgba(45, 140, 255, 0.1);
  min-height: 490px;
  padding-top: 52px;
}

.session-card-featured::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(45, 140, 255, 0.2) 0%, transparent 65%);
  opacity: 1;
}

.session-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(7, 26, 61, 0.35), 0 0 48px rgba(45, 140, 255, 0.12);
  border-color: rgba(45, 140, 255, 0.55);
  background: linear-gradient(165deg, #0e3270 0%, var(--navy-deep) 55%, #081a3d 100%);
}

.session-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-royal));
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(45, 140, 255, 0.35);
  z-index: 2;
}

.session-duration-display {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.session-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--blue-royal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.session-card-featured .session-num {
  color: var(--white);
}

.session-unit {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.session-card-featured .session-unit {
  color: rgba(255, 255, 255, 0.55);
}

.session-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.session-card-featured .session-title {
  color: var(--white);
  font-size: 34px;
}

.session-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.session-card-featured .session-desc {
  color: rgba(255, 255, 255, 0.78);
}

.session-includes {
  list-style: none;
  margin-bottom: auto;
  position: relative;
  z-index: 1;
}

.session-includes li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-deep);
}

.session-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--blue-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231459C7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.session-card-featured .session-includes li {
  color: rgba(255, 255, 255, 0.88);
}

.session-card-featured .session-includes li::before {
  background-color: rgba(45, 140, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%232D8CFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.session-bottom {
  margin-top: 32px;
  padding-top: 28px;
  position: relative;
  z-index: 1;
}

.session-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 89, 199, 0.15), transparent);
}

.session-card-featured .session-bottom::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.session-pricing {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-align: center;
}

.session-card-featured .session-pricing {
  color: rgba(255, 255, 255, 0.45);
}

.session-card .btn-outline {
  border-width: 2px;
  border-color: rgba(20, 89, 199, 0.25);
  font-weight: 600;
  padding: 16px 28px;
}

.session-card .btn-primary {
  padding: 16px 28px;
  font-weight: 600;
}

.session-card .btn-outline:hover {
  border-color: var(--blue-royal);
  background: var(--blue-soft);
}

.btn-session {
  margin-top: 0;
}

/* --- How It Works --- */
.how-it-works {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-soft);
}

.timeline-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-royal), var(--blue-electric));
  transition: width 0.1s linear;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.timeline-step {
  text-align: center;
}

.step-marker {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--blue-royal);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-royal);
  transition: all var(--transition);
}

.timeline-step:hover .step-marker {
  background: var(--blue-royal);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.step-text {
  font-size: 15px;
  color: var(--text-secondary);
}

/* --- Visual Break --- */
.visual-break {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.visual-break-bg {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
}

.visual-break-bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center center;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 61, 0.75) 0%, rgba(7, 26, 61, 0.55) 50%, rgba(11, 46, 111, 0.8) 100%),
    radial-gradient(ellipse at center, rgba(7, 26, 61, 0.4) 0%, rgba(7, 26, 61, 0.75) 100%);
  z-index: 1;
}

.visual-break-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 140, 255, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.visual-break-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-break-content {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.visual-break-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
  border-radius: 2px;
}

.visual-break-eyebrow {
  margin-bottom: 20px;
}

.visual-break-heading {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.visual-break-text {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.visual-break-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

/* --- Testimonials --- */
.testimonials {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  overflow-x: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonials-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(45, 140, 255, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonials-subtext {
  margin: 0 auto;
  max-width: 480px;
}

.testimonial-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 20px 10px 24px;
  margin: -20px -10px 0;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  margin-right: 24px;
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid rgba(20, 89, 199, 0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  box-shadow: 0 8px 32px rgba(7, 26, 61, 0.06);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(45, 140, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(20, 89, 199, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 140, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(7, 26, 61, 0.14);
  border-color: rgba(20, 89, 199, 0.15);
  background: linear-gradient(160deg, #ffffff 0%, #f6faff 100%);
  z-index: 2;
}

.testimonial-card:hover::before,
.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card-top,
.testimonial-quote,
.testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stars {
  color: var(--blue-electric);
  font-size: 15px;
  letter-spacing: 3px;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--blue-soft);
  margin-top: -8px;
  user-select: none;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 89, 199, 0.08);
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-royal), var(--blue-electric));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(20, 89, 199, 0.25);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-deep);
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 8px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(20, 89, 199, 0.12);
  border-radius: 50%;
  color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(7, 26, 61, 0.08);
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--blue-royal);
  color: var(--white);
  border-color: var(--blue-royal);
  box-shadow: 0 6px 24px rgba(20, 89, 199, 0.3);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 72px;
  min-height: 12px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: rgba(20, 89, 199, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.carousel-dot.active {
  width: 28px;
  background: var(--blue-royal);
}

@media (min-width: 992px) {
  .testimonial-slider {
    overflow: visible;
  }
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-rich) 50%, var(--blue-royal) 100%);
  overflow: hidden;
  padding: 120px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(45, 140, 255, 0.3);
  top: -100px;
  right: 10%;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -50px;
  left: 20%;
}

.cta-decor {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* --- Contact --- */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail svg {
  color: var(--blue-royal);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 16px;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.contact-detail span {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Form --- */
.booking-form {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 16px 8px;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy-deep);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 24px;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition);
}

.form-group textarea + label {
  top: 20px;
  transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-royal);
  box-shadow: 0 0 0 4px rgba(20, 89, 199, 0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 8px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-royal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group select {
  padding-top: 22px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B8299' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-deep);
  padding: 30px 0 0px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding-bottom: 25px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
}

.logo-footer .logo-text,
.logo-footer .logo-name {
  color: var(--white);
}

.logo-footer .logo-word {
  color: var(--blue-electric);
}

.footer-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--blue-electric);
}

.footer-location {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.modal.open {
  pointer-events: auto;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 61, 0.6);
  opacity: 0;
  transition: opacity var(--transition);
}

.modal.open .modal-backdrop {
  opacity: 1;
}

.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--text-muted);
  line-height: 1;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--navy-deep);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.modal-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.modal-summary {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.8;
}

.modal-summary strong {
  color: var(--navy-deep);
}

/* --- Scroll Reveal Base --- */
.reveal-up,
.reveal-left,
.reveal-right {
  will-change: transform, opacity;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .trust-strip-wrap {
    animation: none;
  }

  .hero-image-glow {
    animation: none;
  }

  .hero-bg-img-left,
  .hero-bg-img-right {
    transform: scale(1);
  }

  .hero-slide.active img {
    animation: none;
    transform: scale(1);
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* =============================================
   Responsive — Large Desktop (≥ 1400px)
   ============================================= */
@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
    padding: 20px 40px;
  }

  .hero-heading {
    font-size: 72px;
  }

  .section-heading {
    font-size: 40px;
  }
}

/* =============================================
   Responsive — Desktop (1280px and below)
   ============================================= */
@media (max-width: 1280px) {
  .about-grid {
    gap: 44px;
  }

  .about-image-border {
    top: 16px;
    left: -10px;
    right: 14px;
    bottom: -14px;
  }

  .about-stat-card {
    right: 10px;
    bottom: 20px;
    padding: 20px 24px;
  }

  .stat-number {
    font-size: 32px;
  }

  .about-heading {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .about-text {
    max-width: none;
    margin-bottom: 24px;
    font-size: 15px;
  }

  .value-grid {
    gap: 10px;
    margin-bottom: 28px;
  }

  .value-card {
    padding: 12px 14px;
    gap: 10px;
  }

  .value-label {
    font-size: 13px;
  }

  .value-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}

/* =============================================
   Responsive — Desktop (1200px – 1399px)
   ============================================= */
@media (max-width: 1199px) {
  .hero-heading {
    font-size: 52px;
  }

  .section-heading {
    font-size: 40px;
  }

  .about-grid {
    gap: 40px;
  }

  .about-stat-card {
    right: 8px;
    padding: 18px 22px;
  }

  .stat-number {
    font-size: 30px;
  }

  .about-heading {
    font-size: 36px;
  }

  .session-card-featured {
    transform: none;
  }

  .session-card-featured:hover {
    transform: translateY(-8px);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }

  .cta-decor {
    width: 200px;
    height: 200px;
    right: 4%;
  }

  .cta-heading {
    font-size: 44px;
  }
}

/* =============================================
   Responsive — Tablet (768px – 1199px)
   ============================================= */
@media (max-width: 991px) {
  .nav-desktop,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-heading {
    font-size: 48px;
  }

  .hero-banner-content {
    padding: 128px 24px 72px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .about-content {
    text-align: center;
  }

  .about-text {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .about-actions {
    justify-content: center;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .session-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin: 0 auto;
  }

  .timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }

  .step-marker {
    margin: 0;
    flex-shrink: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    margin-right: 24px;
  }

  .cta-decor {
    display: none;
  }
}

/* =============================================
   Responsive — Mobile (≤ 767px)
   ============================================= */
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 20px;
  }

  .site-header {
    top: 8px;
    padding: 0 12px;
  }

  .header-inner {
    height: 64px;
    padding: 0 16px;
    border-radius: var(--radius-md);
  }

  .hero-banner {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-banner-content {
    width: 100%;
    max-width: none;
    padding: 108px 16px 76px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .hero-heading {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
    padding: 0 2px;
  }

  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-badge {
    padding: 8px 14px;
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 4px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    white-space: normal;
    padding: 14px 20px;
    font-size: 15px;
    justify-content: center;
  }

  .hero-slider-dots {
    bottom: 18px;
    gap: 8px;
  }

  .hero-slider-dot {
    width: 8px;
    height: 8px;
  }

  .section-heading {
    font-size: 32px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .about {
    overflow: hidden;
  }

  .about-grid {
    gap: 32px;
  }

  .about-visual {
    max-width: 100%;
    padding: 0 6px;
  }

  .about-image-border {
    top: 12px;
    left: 0;
    right: 0;
    bottom: -12px;
  }

  .about-image-main img {
    aspect-ratio: 4 / 5;
    max-height: 440px;
  }

  .about-location-tag {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .about-stat-card {
    right: 12px;
    bottom: 12px;
    padding: 16px 18px;
  }

  .about-heading {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 9px;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .value-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    gap: 8px;
  }

  .value-icon {
    width: 26px;
    height: 26px;
    font-size: 9px;
  }

  .value-label {
    font-size: 11px;
    line-height: 1.25;
  }

  .about-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .about-actions .btn {
    width: 100%;
    max-width: 300px;
    white-space: normal;
    justify-content: center;
  }

  .trust-strip {
    min-height: 48px;
  }

  .trust-strip-track {
    gap: 28px;
    padding-right: 28px;
  }

  .trust-item {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .trust-sep {
    font-size: 8px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }

  .section-text {
    font-size: 15px;
    line-height: 1.65;
    max-width: none;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .logo {
    font-size: 18px;
  }

  .sessions {
    overflow: hidden;
  }

  .session-cards {
    max-width: 100%;
    gap: 20px;
    padding: 0;
  }

  .session-card,
  .session-card-featured {
    min-height: auto;
    padding: 32px 24px 28px;
  }

  .session-card-featured {
    padding-top: 44px;
  }

  .session-badge {
    top: 14px;
    right: 14px;
    font-size: 9px;
    padding: 6px 12px;
  }

  .session-duration-display {
    margin-bottom: 20px;
  }

  .session-num {
    font-size: 44px;
  }

  .session-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .session-card-featured .session-title {
    font-size: 28px;
  }

  .session-desc {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .session-includes li {
    padding: 8px 0 8px 26px;
    font-size: 13px;
  }

  .session-bottom {
    margin-top: 24px;
    padding-top: 22px;
  }

  .btn-session {
    white-space: normal;
    padding: 13px 20px;
    font-size: 14px;
  }

  .visual-break-inner {
    padding: 56px 16px;
  }

  .visual-break-content {
    max-width: 100%;
    padding: 32px 22px;
    border-radius: var(--radius-lg);
  }

  .visual-break-heading {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .visual-break-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .visual-break-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .visual-break-actions .btn {
    width: 100%;
    max-width: 300px;
    white-space: normal;
    justify-content: center;
  }

  .visual-break {
    min-height: 420px;
  }

  .testimonials {
    overflow: hidden;
  }

  .testimonial-slider {
    overflow: hidden;
  }

  .carousel-viewport {
    width: 100%;
    padding: 12px 0 20px;
    margin: 0;
  }

  .carousel-track {
    align-items: stretch;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-right: 0;
    min-height: auto;
    padding: 24px 20px 22px;
    border-radius: 16px;
  }

  .quote-mark {
    font-size: 40px;
  }

  .testimonial-quote {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .testimonial-author {
    padding-top: 16px;
    gap: 12px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .author-name {
    font-size: 14px;
  }

  .carousel-controls {
    gap: 16px;
    margin-top: 20px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-dots {
    gap: 8px;
    min-width: 60px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.active {
    width: 22px;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-inner {
    gap: 22px;
    padding-bottom: 36px;
  }

  .footer-desc {
    font-size: 14px;
    padding: 0 8px;
  }

  .footer-nav {
    gap: 8px 16px;
    padding: 0 4px;
  }

  .footer-location {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 12px;
  }

  .cta-heading {
    font-size: 32px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .booking-form {
    padding: 28px 20px;
  }

  .footer-bottom {
    padding: 24px 20px 4px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .session-pricing {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .testimonials-subtext,
  .sessions-subtext {
    padding: 0 4px;
  }

  .modal-panel {
    padding: 36px 24px;
  }

  .mobile-menu-panel {
    max-width: 100%;
    padding: 90px 28px 40px;
  }
}

/* =============================================
   Responsive — Small Mobile (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-banner-content {
    padding: 100px 14px 68px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-badge {
    padding: 7px 11px;
    font-size: 10px;
  }

  .hero-actions .btn {
    max-width: 100%;
    font-size: 14px;
    padding: 13px 18px;
  }

  .about-heading {
    font-size: 26px;
  }

  .about-image-main img {
    max-height: 360px;
    aspect-ratio: 3 / 4;
  }

  .about-stat-card {
    right: 8px;
    bottom: 8px;
    padding: 12px 14px;
  }

  .stat-number {
    font-size: 22px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-card {
    flex-direction: row;
    text-align: left;
    padding: 12px 14px;
  }

  .value-label {
    font-size: 13px;
  }

  .about-actions .btn {
    max-width: 100%;
  }

  .trust-item {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .trust-strip-track {
    gap: 22px;
    padding-right: 22px;
  }

  .section-text {
    font-size: 14px;
  }

  .session-card,
  .session-card-featured {
    padding: 28px 18px 24px;
  }

  .session-card-featured {
    padding-top: 40px;
  }

  .session-num {
    font-size: 38px;
  }

  .session-title {
    font-size: 22px;
  }

  .session-card-featured .session-title {
    font-size: 24px;
  }

  .session-desc {
    font-size: 14px;
  }

  .visual-break-inner {
    padding: 48px 14px;
  }

  .visual-break-content {
    padding: 28px 18px;
  }

  .visual-break-heading {
    font-size: 24px;
  }

  .visual-break-text {
    font-size: 14px;
  }

  .visual-break-actions .btn {
    max-width: 100%;
  }

  .visual-break {
    min-height: 380px;
  }

  .testimonial-card {
    padding: 22px 18px 20px;
  }

  .testimonial-quote {
    font-size: 13px;
  }

  .footer-nav {
    gap: 8px 12px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-location {
    font-size: 12px;
    padding: 0 8px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .section-heading {
    font-size: 28px;
  }

  .card-title {
    font-size: 24px;
  }
}

/* =============================================
   Pay Page
   ============================================= */
.pay-body {
  background: var(--white);
}

.pay-page {
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  min-height: 60vh;
}

.pay-page-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.pay-page-header .pay-intro {
  max-width: none;
  margin-bottom: 0;
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.pay-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pay-panel-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0 0 24px;
  line-height: 1.2;
}

.pay-heading {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}

.pay-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pay-details-card .pay-info-list {
  flex: 1;
}

.pay-info-list {
  margin: 0;
  padding: 0;
}

.pay-info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 89, 199, 0.08);
}

.pay-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pay-info-row:first-child {
  padding-top: 0;
}

.pay-info-row dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pay-info-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-deep);
  word-break: break-word;
}

.pay-checkout-card {
  position: relative;
}

.pay-checkout-top {
  margin-bottom: 8px;
}

.pay-checkout-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

.pay-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--blue-soft);
  color: var(--blue-royal);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pay-checkout-title {
  margin-top: 0;
}

.pay-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 20px;
}

.pay-error strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.pay-amount-box {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.pay-amount-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pay-amount-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--blue-royal);
  line-height: 1;
  margin-bottom: 8px;
}

.pay-amount-desc {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
}

.pay-summary-lines {
  margin-bottom: 24px;
}

.pay-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(20, 89, 199, 0.08);
}

.pay-line-discount span:last-child {
  color: #16a34a;
}

.pay-line-total {
  border-bottom: none;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 15px;
  padding-top: 14px;
}

.pay-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.pay-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pay-trust svg {
  color: var(--blue-royal);
}

.pay-fine-print {
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .pay-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pay-page-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .pay-page {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 56px;
  }

  .pay-heading {
    font-size: 32px;
  }

  .pay-intro {
    font-size: 15px;
  }

  .pay-panel {
    padding: 28px 22px 24px;
  }

  .pay-panel-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .pay-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .pay-amount-value {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .pay-heading {
    font-size: 28px;
  }

  .pay-amount-value {
    font-size: 36px;
  }
}

/* --- Thank You Page --- */
.thank-page {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.thank-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  box-shadow: var(--shadow-md);
}

.thank-icon {
  margin-bottom: 20px;
}

.thank-heading {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.thank-message {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.thank-details {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 20px;
}

.thank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.thank-detail-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.thank-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.thank-fine-print {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 767px) {
  .thank-card {
    padding: 36px 24px 28px;
  }

  .thank-heading {
    font-size: 32px;
  }

  .thank-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
