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

:root {
  --sand: #F5F0EB;
  --sand-light: #FAF8F5;
  --sand-dark: #E8E0D8;
  --stone: #C4B8AA;
  --sage: #A8B5A0;
  --sage-dark: #7A8C70;
  --sage-deep: #5C6B54;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --warm-white: #FDFCFA;
  --accent: #8B7355;
  --accent-light: #A89070;
  --border: rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-logo span {
  color: var(--sage-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal-light);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--charcoal);
  background: var(--sand);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  list-style: none;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.4rem 0.5rem;
}

.nav-cta {
  background: var(--sage-deep) !important;
  color: white !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 400 !important;
  font-size: 0.85rem !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ========== COMMON ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.7;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--stone);
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sage-deep);
  color: white;
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(92, 107, 84, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--stone);
}

.btn-secondary:hover {
  background: var(--sand);
  border-color: var(--stone);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ========== PAGES ========== */

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

/* ========== HERO ========== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--warm-white) 0%, var(--sand) 50%, var(--sand-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 181, 160, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 72px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.6s ease 0.2s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.6s ease 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-deep);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: slideUp 0.6s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.6s ease 0.8s forwards;
}

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

/* ========== WELCOME SECTION ========== */
.welcome {
  background: var(--warm-white);
  position: relative;
}

.welcome-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.welcome-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.welcome-heading em {
  font-style: italic;
  color: var(--sage-deep);
}

.welcome-body p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.welcome-body p:last-child {
  margin-bottom: 0;
}

.welcome-line {
  width: 48px;
  height: 1px;
  background: var(--stone);
  margin: 0 auto 2.5rem;
}

/* ========== INTRO SECTION ========== */
.intro {
  background: var(--warm-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.intro-card {
  padding: 2.5rem;
  background: var(--sand-light);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.intro-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.intro-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.intro-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.intro-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.intro-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sage-deep);
  transition: var(--transition);
}

.intro-card:hover .card-link {
  color: var(--sage-dark);
}

/* ========== ERP EXPLAINER ========== */
.erp-explainer {
  background: var(--sand-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.erp-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.erp-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  position: sticky;
  top: 120px;
}

.erp-heading em {
  font-style: italic;
  color: var(--sage-deep);
}

.erp-body p {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.erp-body p:last-child {
  margin-bottom: 0;
}

.erp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--sage-deep);
  text-decoration: none;
  transition: var(--transition);
}

.erp-cta-link:hover {
  color: var(--sage-dark);
  gap: 0.6rem;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--sand);
  padding: 3rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--sage-deep);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-section .section-title {
  color: white;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.btn-white {
  background: white;
  color: var(--sage-deep);
}

.btn-white:hover {
  background: var(--sand-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--warm-white) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--sand-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--charcoal-light);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.credentials {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--sand-light);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.credentials h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.credentials li {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  list-style: none;
}

.credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* About page - expanded sections */
.about-sections {
  background: var(--warm-white);
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

.about-block-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
}

.about-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  position: sticky;
  top: 100px;
}

.about-block-title em {
  font-style: italic;
  color: var(--sage-deep);
}

.about-block-body {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
}

/* ========== TREATMENT PAGE ========== */
.page-hero {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--warm-white) 100%);
}

.page-hero .section-title {
  max-width: 700px;
}

.treatment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.treatment-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  opacity: 0;
  transition: var(--transition);
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.treatment-card:hover::before {
  opacity: 1;
}

.treatment-badge {
  display: inline-block;
  background: var(--sand);
  color: var(--sage-deep);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.treatment-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.treatment-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.treatment-features {
  list-style: none;
}

.treatment-features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal-light);
  font-size: 0.9rem;
}

.treatment-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-deep);
  font-weight: 600;
}

/* Treatment page - ERP overview */
.treatment-erp {
  background: var(--warm-white);
  padding-bottom: 2rem;
}

.treatment-erp-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.treatment-erp-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  position: sticky;
  top: 120px;
}

.treatment-erp-title em {
  font-style: italic;
  color: var(--sage-deep);
}

.treatment-erp-body p {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.treatment-erp-body p:last-child {
  margin-bottom: 0;
}

/* Treatment page - Intensive highlight */
.treatment-intensive {
  background: var(--sand-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.treatment-intensive-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.treatment-intensive-left {
  position: sticky;
  top: 120px;
}

.treatment-intensive-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.treatment-intensive-left h2 em {
  font-style: italic;
  color: var(--sage-deep);
}

.treatment-intensive-left .btn {
  margin-top: 0.5rem;
}

.treatment-intensive-body p {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Subheadings inside intensive body */
.treatment-intensive-body h3,
.intensive-practical h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 2.5rem 0 0.75rem;
}

.treatment-intensive-body h3:first-child {
  margin-top: 0;
}

/* Day timeline */
.intensive-timeline {
  margin: 1rem 0 0;
}

.intensive-day {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.intensive-day:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.intensive-day-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
}

.intensive-day-time {
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 0.25rem;
}

.intensive-day-desc {
  font-size: 0.98rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* Practical info cards */
.intensive-practical {
  margin-top: 3rem;
  max-width: 800px;
}

.intensive-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.intensive-info-card {
  padding: 1.75rem;
  background: var(--warm-white);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.intensive-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.intensive-info-card p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* CTA box inside intensive */
.intensive-cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--warm-white);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.intensive-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 0.5rem !important;
}

.intensive-cta-box p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .treatment-intensive-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .intensive-day {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .intensive-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Treatment page - Intensive teaser */
.intensive-teaser {
  background: var(--sand-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intensive-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.intensive-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.intensive-teaser-title em {
  font-style: italic;
  color: var(--sage-deep);
}

.intensive-teaser-body p {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.intensive-teaser-body .btn {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .intensive-teaser-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Treatment page - two-card grid */
.treatment-duo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .treatment-erp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .treatment-duo-cards {
    grid-template-columns: 1fr;
  }
}

.home-visit-note {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--sand-light);
  border-radius: 14px;
  border-left: 3px solid var(--sage);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.home-visit-note p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.home-visit-note strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* ========== OCD INFO PAGE ========== */
.ocd-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ocd-overview-text p {
  color: var(--charcoal-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ocd-sidebar {
  background: var(--sand-light);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.ocd-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.ocd-types-nav {
  list-style: none;
}

.ocd-types-nav a {
  display: block;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: var(--charcoal-light);
  font-size: 0.92rem;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.ocd-types-nav a:hover {
  background: var(--sand);
  color: var(--charcoal);
  border-left-color: var(--sage);
}

.ocd-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ocd-type-card {
  padding: 2rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ocd-type-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}

.ocd-type-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.ocd-type-card p {
  color: var(--charcoal-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ocd-type-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sage-deep);
  transition: var(--transition);
}

.ocd-type-card:hover .card-link {
  color: var(--sage-dark);
}

/* ========== OCD TYPE PAGES ========== */
.ocd-type-content {
  max-width: 740px;
}

.ocd-type-content p {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.ocd-type-content p:last-child {
  margin-bottom: 0;
}

/* ========== PRICING PAGE ========== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--warm-white);
  border: 2px solid var(--sage);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--sage-deep);
  box-shadow: var(--shadow-md);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card .btn-secondary {
  background: var(--sage-deep);
  color: white;
  border-color: var(--sage-deep);
}

.pricing-card .btn-secondary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.pricing-card.featured {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'Mest populär';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-deep);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--sage-deep);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal-light);
  font-weight: 300;
}

.pricing-card .price-desc {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-card .features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card .features li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-deep);
  font-weight: 600;
}

.pricing-note {
  margin-top: 3rem;
  text-align: center;
  color: var(--charcoal-light);
  font-size: 0.9rem;
}

/* ========== BLOG PAGE ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  height: 200px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 0.85rem;
  font-style: italic;
}

.blog-card-content {
  padding: 1.75rem;
}

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--charcoal-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

.blog-date {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--stone);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(168, 181, 160, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-side h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.contact-detail p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--sage);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .intro-grid,
  .treatment-cards,
  .pricing-cards,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: transparent;
  }

  .nav-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }

  .section { padding: 4rem 0; }

  .intro-grid,
  .treatment-cards,
  .pricing-cards,
  .blog-grid,
  .ocd-types-grid {
    grid-template-columns: 1fr;
  }

  .ocd-overview,
  .about-content,
  .contact-grid,
  .erp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-items { gap: 2rem; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Ta bort sticky på mobil för att undvika rendering-buggar */
  .erp-heading,
  .about-block-title,
  .treatment-erp-title,
  .treatment-intensive-left,
  .treatment-erp-grid > div:first-child {
    position: static;
  }

  .treatment-erp-grid,
  .treatment-intensive-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand-light); }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
