/* ============================================
   REBUILT PILATES - Complete Stylesheet
   Multi-Page Site with Unique Layout
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary-blue: #70AAD2;
  --blue-light: #8CC0DD;
  --blue-dark: #4B6E93;
  --blue-deeper: #3D5F82;
  --blue-glow: rgba(112, 170, 210, 0.3);

  --dark-bg: #70AAD2;
  --dark-bg-alt: #5E9AC5;
  --nav-bg: #0A0A0A;
  --footer-bg: #0A0A0A;
  --gray-950: #5E9AC5;
  --gray-900: rgba(255, 255, 255, 0.12);
  --gray-800: rgba(255, 255, 255, 0.18);
  --gray-700: rgba(255, 255, 255, 0.25);
  --gray-600: rgba(255, 255, 255, 0.35);
  --gray-500: rgba(255, 255, 255, 0.55);
  --gray-400: rgba(255, 255, 255, 0.7);
  --gray-300: rgba(255, 255, 255, 0.85);
  --gray-200: rgba(255, 255, 255, 0.9);
  --gray-100: #F5F5F7;
  --white: #FFFFFF;

  --card-bg: rgba(255, 255, 255, 0.12);
  --card-border: rgba(255, 255, 255, 0.18);
  --card-bg-hover: rgba(255, 255, 255, 0.18);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;
  --space-5xl: 160px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-blue: 0 20px 40px -10px rgba(0, 0, 0, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 30px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--gray-200);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.gradient-text {
  background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background: rgba(10, 10, 10, 0.95);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-xs) var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo-img {
  height: 110px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 10px 24px;
  background: var(--primary-blue);
  color: #0A0A0A;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(112, 170, 210, 0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 170, 210, 0.4);
  background: var(--blue-light);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  background: none;
  border: none;
}

.mobile-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-300);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--white);
  transform: translateX(8px);
}

.mobile-menu .btn-nav {
  margin-top: var(--space-sm);
  padding: 14px 40px;
  font-size: 16px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #0A0A0A;
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: #1A1A1A;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* =============================================
   HOMEPAGE - SPLIT HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5E9AC5 0%, #70AAD2 40%, #82B8DA 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: calc(var(--space-5xl) + 60px) var(--space-2xl) var(--space-5xl);
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: var(--space-md);
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-subheadline {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero-note {
  margin-top: var(--space-md);
  font-size: 13px;
  color: var(--gray-500);
  animation: fadeInUp 0.8s ease 0.55s forwards;
  opacity: 0;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, var(--dark-bg));
  pointer-events: none;
}

.hero-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

/* Hero decorative gradient mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    radial-gradient(circle at 30% 40%, rgba(112, 170, 210, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(75, 110, 147, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 50% 20%, rgba(140, 192, 221, 0.08) 0%, transparent 30%);
  animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.7; }
}

/* Hero stat chips */
.hero-stats {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.65s forwards;
  opacity: 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

/* =============================================
   HOMEPAGE - INTRO STRIP
   ============================================= */
.intro-strip {
  padding: var(--space-3xl) 0;
  background: #5E9AC5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.intro-item {
  text-align: center;
  padding: var(--space-md);
}

.intro-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.intro-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.intro-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.intro-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* =============================================
   HOMEPAGE - SERVICE PREVIEW (Bento Grid)
   ============================================= */
.service-preview {
  padding: var(--space-5xl) 0;
  position: relative;
}

.service-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  transition: all 0.4s ease;
  overflow: hidden;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bento-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) var(--space-xl);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.bento-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.bento-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.bento-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bento-card .tag {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.bento-card-visual {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-top: var(--space-sm);
  transition: gap 0.3s ease, color 0.3s ease;
}

.bento-link:hover {
  color: var(--primary-blue);
}

.bento-card:hover .bento-link {
  gap: 10px;
}

/* =============================================
   HOMEPAGE - WHY DIFFERENT (Offset Layout)
   ============================================= */
.why-section {
  padding: var(--space-5xl) 0;
  background: #5E9AC5;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.why-content {
  position: sticky;
  top: 120px;
}

.why-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.why-content > p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.why-card-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* =============================================
   HOMEPAGE - PRICING TEASER
   ============================================= */
.pricing-teaser {
  padding: var(--space-5xl) 0;
  position: relative;
}

.pricing-teaser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.pricing-teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.pricing-teaser-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.pricing-teaser-content p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.pricing-highlight {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(112, 170, 210, 0.08), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(112, 170, 210, 0.15);
  border-radius: var(--radius-xl);
  text-align: center;
}

.pricing-highlight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.pricing-highlight-price {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing-highlight-price sup {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-400);
  vertical-align: super;
}

.pricing-highlight-detail {
  font-size: 16px;
  color: var(--gray-300);
  margin-top: 4px;
  margin-bottom: var(--space-sm);
}

.pricing-highlight-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

.pricing-teaser-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.pricing-teaser-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-300);
}

.pricing-teaser-feature svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
}

/* =============================================
   HOMEPAGE - CTA BANNER (Diagonal)
   ============================================= */
.cta-banner {
  padding: var(--space-5xl) 0;
  background: #5E9AC5;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  right: -10%;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
  transform: skewY(-2deg);
  pointer-events: none;
}

.cta-banner-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.cta-banner-content p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.cta-note {
  font-size: 13px;
  color: var(--gray-500);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  padding: calc(var(--space-5xl) + 80px) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #5E9AC5 0%, #70AAD2 40%, #82B8DA 100%);
  pointer-events: none;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero-content .section-badge {
  margin-bottom: var(--space-md);
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--space-md);
  letter-spacing: -1px;
}

.page-hero-content p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray-400);
  line-height: 1.75;
}

/* About: Story Section */
.about-story {
  padding: var(--space-5xl) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.about-story-text p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-visual {
  height: 480px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-visual img,
.about-dr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-story-visual {
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-dr-photo {
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-visual-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gray-700);
}

/* About: Values */
.about-values {
  padding: var(--space-5xl) 0;
  background: #5E9AC5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--primary-blue), var(--blue-dark));
  transition: height 0.4s ease;
}

.value-card:hover::before {
  height: 100%;
}

.value-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.value-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* About: Dr. Kyle Section */
.about-dr {
  padding: var(--space-5xl) 0;
}

.about-dr-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-dr-visual {
  height: 400px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-dr-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.about-dr-text p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-lg);
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.credential svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-detail {
  padding: var(--space-5xl) 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-block-visual {
  height: 380px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-block-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-block-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--blue-light));
  z-index: 2;
}

.service-block-text .section-badge {
  margin-bottom: var(--space-sm);
}

.service-block-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.service-block-text p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-300);
}

.service-feature svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-section {
  padding: var(--space-5xl) 0;
}

/* Pricing Toggle */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-3xl);
}

.pricing-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 4px;
}

.pricing-toggle-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle-btn.active {
  background: #0A0A0A;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Pricing Tabs */
.pricing-tab {
  display: none;
}

.pricing-tab.active {
  display: block;
}

/* Class Pack Grid */
.pricing-packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 750px;
  margin: 0 auto;
}

/* Membership Grid */
.pricing-membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.18);
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
}

.pricing-popular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(90deg, #0A0A0A, #1A1A1A);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
}

.pricing-card.featured .plan-name {
  margin-top: var(--space-md);
}

.plan-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-description {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

.price {
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.price-currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  color: var(--gray-400);
}

.price-period {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: var(--space-md);
}

.per-class {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.price-features {
  text-align: left;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-300);
}

.price-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--white);
}

.plan-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.plan-cta.primary {
  background: #0A0A0A;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.plan-cta.primary:hover {
  background: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.plan-cta.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.plan-cta.outline:hover {
  border-color: var(--primary-blue);
  background: rgba(112, 170, 210, 0.05);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: rgba(112, 170, 210, 0.06);
  border: 1px solid rgba(112, 170, 210, 0.12);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note p {
  font-size: 14px;
  color: var(--gray-300);
}

.pricing-note strong {
  color: var(--primary-blue);
}

/* =============================================
   FOUNDING MEMBERS BANNER (Homepage)
   ============================================= */
.founding-members-banner {
  background: rgba(112, 170, 210, 0.08);
  border: 1px solid rgba(112, 170, 210, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  max-width: 600px;
  margin: var(--space-xl) auto 0;
}

.founding-members-banner h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.founding-members-banner p {
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: var(--space-lg);
}

.founding-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(90deg, rgba(112, 170, 210, 0.15), rgba(112, 170, 210, 0.05));
  border: 1px solid rgba(112, 170, 210, 0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

.founding-prices {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.founding-price-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founding-plan {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

.founding-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.founding-original {
  font-size: 16px;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

.founding-savings {
  color: var(--primary-blue) !important;
  background: rgba(112, 170, 210, 0.1) !important;
}

.founding-savings s {
  color: var(--gray-500);
  margin-right: 6px;
}

/* Founding Members Intro (Pricing Page) */
.founding-members-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.founding-members-intro p {
  font-size: 15px;
  color: var(--gray-300);
}

/* =============================================
   CLASS SCHEDULE
   ============================================= */
.schedule-section {
  padding: var(--space-5xl) 0;
}

.schedule-grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-day {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.schedule-day:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.schedule-day-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  min-width: 110px;
}

.schedule-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  transition: all 0.3s ease;
}

.schedule-pill:hover {
  background: rgba(112, 170, 210, 0.1);
  border-color: rgba(112, 170, 210, 0.3);
  color: var(--white);
}

/* Schedule responsive */
@media (max-width: 600px) {
  .schedule-day {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .schedule-day-name {
    min-width: auto;
  }

  .founding-prices {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
}

/* =============================================
   PRICING PAGE - FAQ
   ============================================= */
.faq {
  padding: var(--space-5xl) 0;
}

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: background 0.3s ease;
  gap: var(--space-sm);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.25);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: var(--space-5xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-detail-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease;
}

.contact-detail-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.contact-detail-text span {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
}

.contact-detail-text a {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.contact-detail-text a:hover {
  text-decoration-color: var(--white);
}

.contact-map {
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-xl);
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
  transition: filter 0.4s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0.3) brightness(0.85) contrast(1.05);
}

/* Contact: Communities */
.communities {
  padding: var(--space-3xl) 0;
  background: #5E9AC5;
}

.communities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.community-card {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.community-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.community-card svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.community-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.community-card p {
  font-size: 13px;
  color: var(--gray-500);
}

/* =============================================
   BLOG STYLES
   ============================================= */

/* Blog Hero */
.blog-hero {
  padding: calc(var(--space-5xl) + 80px) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5E9AC5 0%, #70AAD2 40%, #82B8DA 100%);
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

/* Blog Grid */
.blog-section {
  padding: var(--space-3xl) 0 var(--space-5xl);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--gray-700);
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card-category {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.blog-card-date {
  font-size: 12px;
  color: var(--gray-500);
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--primary-blue);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

/* Blog Post / Article */
.article-hero {
  padding: calc(var(--space-5xl) + 80px) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5E9AC5 0%, #70AAD2 40%, #82B8DA 100%);
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

.article-breadcrumb a {
  color: var(--gray-400);
}

.article-breadcrumb a:hover {
  color: var(--primary-blue);
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.article-hero-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.article-hero-content .article-excerpt {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* Article Body */
.article-body {
  padding: var(--space-3xl) 0 var(--space-5xl);
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: var(--space-xl) 0 var(--space-sm);
  line-height: 1.25;
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: var(--space-lg) 0 var(--space-xs);
  line-height: 1.3;
}

.article-content p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-content strong {
  color: var(--white);
  font-weight: 600;
}

.article-content blockquote {
  border-left: 3px solid var(--white);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-lg) 0;
}

.article-content blockquote p {
  color: var(--gray-200);
  font-style: italic;
  margin-bottom: 0;
}

/* Article Share */
.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.article-share span {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.share-btn svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}

.share-btn:hover svg {
  color: var(--primary-blue);
}

/* Article CTA */
.article-cta {
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  text-align: center;
}

.article-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.article-cta p {
  font-size: 15px;
  color: var(--gray-400);
  margin-bottom: var(--space-md);
}

/* Related Posts */
.related-posts {
  padding: var(--space-3xl) 0 var(--space-5xl);
  background: #5E9AC5;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

/* =============================================
   CTA SECTION (used on multiple pages)
   ============================================= */
.cta-section {
  padding: var(--space-5xl) 0;
  background: #5E9AC5;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  right: -10%;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
  transform: skewY(-2deg);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.cta-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.cta-badge {
  font-size: 13px;
  color: var(--gray-500);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: var(--space-3xl) 0 var(--space-lg);
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand h3 span {
  color: var(--primary-blue);
}

.footer-description {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 320px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-400);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(112, 170, 210, 0.2);
  border-color: rgba(112, 170, 210, 0.3);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: var(--primary-blue);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

@media (max-width: 968px) {
  .nav-links {
    display: none;
  }

  .btn-nav.desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero: Mobile */
  .hero {
    min-height: auto;
  }

  .hero-text {
    padding: calc(var(--space-5xl) + 40px) var(--space-md) var(--space-xl);
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  /* Bento grid */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.featured {
    grid-template-columns: 1fr;
  }

  /* Why section */
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .why-content {
    position: static;
  }

  /* Pricing teaser */
  .pricing-teaser-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Intro strip */
  .intro-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-visual {
    height: 300px;
  }

  .about-dr-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-dr-visual {
    height: 300px;
  }

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

  /* Services */
  .service-block {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .service-block.reverse {
    direction: ltr;
  }

  .service-block-visual {
    height: 280px;
  }

  /* Pricing */
  .pricing-packs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-membership-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .communities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    letter-spacing: -1px;
  }

  .hero-stats {
    gap: var(--space-sm);
  }

  .hero-stat {
    padding: 14px 20px;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

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

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

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

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
