/* ==========================================================================
   RSP Treatment - rspmental.website
   Style: Sunset Hope (#5) | Architecture: Progressive Disclosure (#10)
   Generated: 2026-02-14
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #E07B53;
  --color-primary-dark: #c4613b;
  --color-secondary: #F4A261;
  --color-accent: #E9B4C4;
  --color-text: #4A3728;
  --color-text-light: #6B5B4E;
  --color-bg: #FFFBF7;
  --color-bg-alt: #FFF5ED;
  --color-white: #FFFFFF;
  --color-overlay: rgba(74, 55, 40, 0.6);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(224, 123, 83, 0.08);
  --shadow-md: 0 4px 20px rgba(224, 123, 83, 0.12);
  --shadow-lg: 0 8px 40px rgba(224, 123, 83, 0.16);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Skip Navigation ---------- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-nav:focus { top: 0; }

/* ---------- Progress Bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 10001;
  transition: width 0.15s ease;
  border-radius: 0 2px 2px 0;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 123, 83, 0.1);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}
.logo span { color: var(--color-primary); }

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}
.header-phone svg { width: 18px; height: 18px; }

@media (min-width: 768px) {
  .header-phone { display: flex; }
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10002;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Slide-Out Nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 55, 40, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

.slide-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 9999;
  padding: 5rem 2rem 2rem;
  transition: var(--transition);
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.slide-nav.active { right: 0; }

.slide-nav ul { list-style: none; }
.slide-nav li { margin-bottom: 0.25rem; }
.slide-nav a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.slide-nav a:hover,
.slide-nav a.active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.slide-nav .nav-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 123, 83, 0.7), rgba(244, 162, 97, 0.5), rgba(233, 180, 196, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
}
.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content p {
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-phone {
  display: block;
  margin-top: 1.5rem;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Inner page heroes */
.hero--inner {
  min-height: 50vh;
}
.hero--inner .hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(224, 123, 83, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(224, 123, 83, 0.4);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  color: var(--color-primary-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--phone {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 15px rgba(224, 123, 83, 0.35);
}
.btn--phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(224, 123, 83, 0.45);
  color: var(--color-white);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--color-white);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(224, 123, 83, 0.08);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-bar__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
}
.trust-bar__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ---------- Section Base (Progressive Disclosure) ---------- */
.section {
  padding: 5rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.revealed {
  opacity: 1;
  transform: translateY(0);
}
.section--alt { background: var(--color-bg-alt); }
.section--warm {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}
.section--cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  text-align: center;
}
.section--cta h2,
.section--cta p { color: var(--color-white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--color-text-light); font-size: 1.05rem; }
.section-header .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* ---------- Continue / Learn More Buttons (Progressive Disclosure) ---------- */
.continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem auto 0;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}
.continue-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.continue-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.continue-btn:hover .arrow { transform: translateY(3px); }

/* Skip to content link */
.skip-to-content {
  position: fixed;
  bottom: 80px;
  right: 1.5rem;
  background: var(--color-white);
  color: var(--color-text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0.7;
  transition: var(--transition);
}
.skip-to-content:hover { opacity: 1; color: var(--color-primary); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__img {
  height: 200px;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__img img { transform: scale(1.05); }

.card__body { padding: 1.5rem; }
.card__body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.card__body p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 1rem; }
.card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.card__link:hover { color: var(--color-primary-dark); }

/* Icon card variant */
.icon-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.icon-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(224, 123, 83, 0.1), rgba(244, 162, 97, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.icon-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.icon-card p { font-size: 0.9rem; color: var(--color-text-light); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat__label {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ---------- Testimonials ---------- */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.testimonial__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 0;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}
.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
}
.testimonial__program {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ---------- Timeline / Steps ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 3px;
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item__marker {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 1;
}
.timeline-item__content h3 { margin-bottom: 0.5rem; }
.timeline-item__content p { color: var(--color-text-light); font-size: 0.95rem; }

/* ---------- Accordion / FAQ ---------- */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
  transition: var(--transition);
}
.accordion-trigger:hover { color: var(--color-primary); }
.accordion-trigger .icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--color-primary);
  min-width: 24px;
  text-align: center;
}
.accordion-item.active .accordion-trigger .icon { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-panel__inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--reverse .two-col__img { order: -1; }
}
.two-col__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- List Styles ---------- */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ---------- Insurance Grid ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.insurance-item {
  background: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 123, 83, 0.08);
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card__img { height: 200px; overflow: hidden; }
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; }
.blog-card__cat {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.blog-card__body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-card__body p { font-size: 0.9rem; color: var(--color-text-light); }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ---------- Contact Info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.contact-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(224, 123, 83, 0.1), rgba(244, 162, 97, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.95rem; color: var(--color-text-light); }
.contact-card a { font-weight: 600; }

/* Map */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ---------- Privacy / Legal ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--color-text-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 3px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--color-secondary); }
.footer-col p { font-size: 0.9rem; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--color-secondary); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 90;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--color-text-light); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text-light); margin: 0 0.5rem; }

/* ---------- Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  padding: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
}
.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(224, 123, 83, 0.08);
  font-size: 0.95rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--color-bg-alt); }

/* ---------- Tabs ---------- */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.tab-btn {
  padding: 0.6rem 1.5rem;
  background: var(--color-white);
  border: 2px solid rgba(224, 123, 83, 0.15);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Daily Schedule ---------- */
.schedule-list { list-style: none; max-width: 600px; margin: 0 auto; }
.schedule-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(224, 123, 83, 0.08);
}
.schedule-list .time {
  min-width: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
}
.schedule-list .activity {
  color: var(--color-text-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: 90vh; }
  .hero--inner { min-height: 40vh; }
  .card-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .timeline::before { left: 20px; }
  .timeline-item__marker { width: 40px; height: 40px; min-width: 40px; font-size: 0.9rem; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 0.6rem 0.75rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .section { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .progress-bar, .back-to-top, .skip-to-content, .slide-nav, .nav-overlay { display: none; }
  .section { opacity: 1; transform: none; padding: 1rem 0; }
  body { background: white; color: black; }
}
