/* ================================================================
   ProHostNY — Consolidated Stylesheet
   All page types: Homepage, Category, Brand, Article, Blog, Story, Legal
   ================================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral: #FF5A5F;
  --coral-dark: #E04E53;
  --coral-light: #FFF1F2;
  --dark: #222222;
  --mid: #484848;
  --light: #6b6b6b;
  --border: #DDDDDD;
  --bg: #FFFFFF;
  --bg-soft: #F7F7F7;
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ================================================================
   NAVIGATION (Global — all pages)
   ================================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--coral);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }

.nav-cta {
  background: var(--coral);
  color: white !important;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
  color: white !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--mid);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--coral); }

/* ================================================================
   GLOBAL COMPONENTS (Shared across pages)
   ================================================================ */
section { padding: 96px 24px; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--coral);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 24px;
}
h1 em { font-style: normal; color: var(--coral); }

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

/* Buttons */
.btn-primary {
  background: var(--coral);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,90,95,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
}
.btn-secondary:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--coral);
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.service-link:hover { text-decoration: underline; }

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-light);
  color: var(--coral);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }

/* Hero Sub */
.hero-sub {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  color: var(--light);
  font-weight: 500;
}

/* Credential List */
.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}
.credential-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.credential-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================================
   HOMEPAGE — Hero
   ================================================================ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  gap: 64px;
}
.hero-content { padding: 80px 0; }

/* Hero Illustration */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.property-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  transition: transform 0.3s;
}
.property-card:hover { transform: translateY(-4px); }
.property-img {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #f8e8e8 0%, #fde8e8 50%, #fff1e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.property-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}
.superhost-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: var(--dark);
}
.property-info { padding: 20px; }
.property-location { font-size: 13px; color: var(--light); font-weight: 500; margin-bottom: 4px; }
.property-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.property-meta { display: flex; align-items: center; justify-content: space-between; }
.property-rating { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; }
.property-price { font-size: 14px; color: var(--mid); }
.property-price strong { color: var(--dark); font-weight: 700; }

.floating-stat {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}
.floating-stat.one { bottom: -20px; right: -20px; animation-delay: 0s; }
.floating-stat.two { top: 40px; right: -30px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ================================================================
   HOMEPAGE — How It Works
   ================================================================ */
.how-it-works { background: var(--bg-soft); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--coral-light);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { color: var(--coral); }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step-card p { font-size: 15px; color: var(--mid); line-height: 1.65; }

/* ================================================================
   HOMEPAGE — Services
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--coral-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-card p { font-size: 15px; color: var(--mid); line-height: 1.65; margin-bottom: 24px; }

/* ================================================================
   HOMEPAGE — What's Included (Dark section)
   ================================================================ */
.included { background: var(--dark); color: white; }
.included h2 { color: white; }
.included .section-label { color: var(--coral); }
.included .section-sub { color: #aaa; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.included-item:hover { background: rgba(255,255,255,0.1); }
.included-check {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.included-item h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.included-item p { font-size: 13px; color: #999; line-height: 1.5; }

/* ================================================================
   HOMEPAGE — About
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-illustration {
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  background: var(--coral-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.about-stat-card {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.about-stat-card .num { font-size: 30px; font-weight: 800; color: var(--coral); letter-spacing: -1px; }
.about-stat-card .label { font-size: 13px; color: var(--light); font-weight: 500; margin-top: 4px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }

/* ================================================================
   HOMEPAGE — Service Areas
   ================================================================ */
.areas { background: var(--bg-soft); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.area-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.area-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.area-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-card h3 { font-size: 15px; font-weight: 700; }
.area-card p { font-size: 12px; color: var(--light); }

/* ================================================================
   HOMEPAGE — Testimonials
   ================================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { color: #FF5A5F; }
.review-text { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--coral);
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.reviewer-location { font-size: 12px; color: var(--light); }

/* ================================================================
   HOMEPAGE — CTA Section (Coral gradient)
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--coral) 0%, #E04E53 100%);
  color: white;
  text-align: center;
}
.cta-section h2 { color: white; letter-spacing: -1px; }
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.cta-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.cta-card:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}
.cta-card-icon { font-size: 28px; }
.cta-card h3 { font-size: 16px; font-weight: 700; }
.cta-card p { font-size: 13px; opacity: 0.85; }

/* ================================================================
   HOMEPAGE — Contact Form
   ================================================================ */
.contact-section { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.contact-method:hover { border-color: var(--coral); transform: translateX(4px); }
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--coral-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-text { display: flex; flex-direction: column; }
.contact-method-label { font-size: 12px; color: var(--light); font-weight: 500; }
.contact-method-value { font-size: 15px; font-weight: 700; color: var(--dark); }

/* Form */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrapper h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--coral); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--coral);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,90,95,0.3);
}
.form-note { font-size: 12px; color: var(--light); text-align: center; margin-top: 12px; }

/* HubSpot placeholder */
.hubspot-form-placeholder {
  background: var(--bg-soft);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  color: var(--light);
  font-size: 14px;
  margin-top: 20px;
}

/* Homepage static review cards */
.static-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .static-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .static-reviews-grid { grid-template-columns: 1fr; }
}
.static-review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.static-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.static-review-text {
  flex: 1;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.static-review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.review-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--coral, #FF5A5F);
  background: rgba(255, 90, 95, 0.06);
  border: 1px solid rgba(255, 90, 95, 0.2);
  border-radius: 20px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: default;
  white-space: nowrap;
}
.review-tag:hover {
  background: var(--coral, #FF5A5F);
  color: white;
  border-color: var(--coral, #FF5A5F);
  transform: translateY(-1px);
}
.review-tag--active {
  background: var(--coral, #FF5A5F);
  color: white;
  border-color: var(--coral, #FF5A5F);
  transform: translateY(-1px);
}

/* ================================================================
   CATEGORY PAGES (Box Type 1)
   ================================================================ */
.category-header {
  padding: 80px 24px;
  padding-top: 152px;
  background: var(--bg);
}
.category-header h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 0;
}

.category-intro {
  padding: 64px 24px;
  background: var(--bg-soft);
}
.category-intro p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 20px;
}
.category-intro p:last-child { margin-bottom: 0; }

.category-grid {
  padding: 96px 24px;
  background: var(--bg);
}
.category-grid h2 {
  font-size: clamp(24px, 3vw, 36px);
}
.category-grid .container { max-width: 1100px; }
.category-header .container { max-width: 1100px; }
.category-intro .container { max-width: 1100px; }

.child-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.child-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.child-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.child-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.child-card:hover::before { transform: scaleX(1); }
.child-icon {
  width: 56px; height: 56px;
  background: var(--coral-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.child-icon svg { color: var(--coral); }
.child-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.child-card p { font-size: 15px; color: var(--mid); line-height: 1.65; margin-bottom: 24px; }
.child-card .topic-tag {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--coral); margin-bottom: 12px; display: block;
}
.child-card .post-meta { font-size: 13px; color: var(--light); font-weight: 500; margin-bottom: 20px; }

.category-included {
  padding: 96px 24px;
  background: var(--dark);
  color: white;
}
.category-included h2 { color: white; }
.category-included .section-label { color: var(--coral); }
.category-included .container { max-width: 1100px; }

.category-proof {
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--coral) 0%, #E04E53 100%);
  color: white;
  text-align: center;
}
.category-proof .stat-num { color: white; }
.category-proof .stat-label { color: rgba(255,255,255,0.85); }
.category-proof .hero-stats { justify-content: center; gap: 48px; }

.category-cta {
  padding: 64px 24px;
  background: var(--bg);
  text-align: center;
}

/* ================================================================
   BRAND PAGES (Box Type 2)
   ================================================================ */
.brand-header {
  padding: 96px 48px;
  padding-top: 168px;
  background: var(--bg);
}
.brand-header h1 {
  font-size: clamp(36px, 4.5vw, 56px);
}
.brand-header .hero-sub {
  font-size: 17px;
  max-width: 560px;
}

.brand-context {
  padding: 80px 24px;
  background: var(--bg);
}
.brand-context p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 20px;
}
.brand-context .btn-primary { margin-top: 40px; }

.brand-proof { padding: 96px 24px; background: var(--bg); }
.brand-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.brand-stats .stat-num { font-size: 30px; color: var(--coral); }

.about-strip { padding: 48px 24px; background: var(--bg-soft); }
.about-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-thumb {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--coral);
  border: 3px solid var(--coral-light);
}

/* ================================================================
   ARTICLE PAGES (Box Type 3)
   ================================================================ */
.article-header {
  padding: 64px 24px;
  padding-top: 136px;
  background: var(--bg);
}
.breadcrumb { font-size: 13px; color: var(--light); margin-bottom: 20px; }
.breadcrumb a { color: var(--mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral); }
.article-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 0;
}
.article-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--light);
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.article-tldr { padding: 0 24px; }
.tldr-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--coral-light);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.tldr-box .section-label { margin-bottom: 12px; }
.tldr-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tldr-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
}
.tldr-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.article-body { padding: 80px 24px; background: var(--bg); }
.article-container { max-width: 720px; margin: 0 auto; }
.article-container h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--dark);
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-container h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-container p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.article-container ul,
.article-container ol { margin-bottom: 20px; padding-left: 24px; }
.article-container li { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 8px; }

.article-takeaways {
  background: var(--coral-light);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 48px;
}
.article-takeaways .section-label { margin-bottom: 12px; }
.takeaway-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.takeaway-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
}
.takeaway-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.article-related { padding: 48px 24px; background: var(--bg-soft); }
.article-related .container { max-width: 720px; }
.related-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.related-list li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.related-list li a:hover { text-decoration: underline; }

.article-cta { padding: 64px 24px; background: var(--bg); }
.article-cta .container { max-width: 720px; }
.article-cta h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.article-cta p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 24px; }

/* Comparison table (Articles only) */
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 15px; }
.comparison-table th {
  background: var(--coral);
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--mid); line-height: 1.5; }
.comparison-table tr:nth-child(even) td { background: var(--bg-soft); }
.comparison-table td:first-child { font-weight: 600; color: var(--dark); }

/* ================================================================
   BLOG PAGES (Box Type 4)
   ================================================================ */
.blog-header {
  padding: 56px 24px;
  padding-top: 128px;
  background: var(--bg);
}
.blog-header h1 {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 0;
}

.blog-body { padding: 64px 24px; background: var(--bg); }
.blog-container { max-width: 680px; margin: 0 auto; }
.blog-container h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 12px;
}
.blog-container p { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.blog-container ul { margin-bottom: 18px; padding-left: 20px; }
.blog-container li { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 6px; }

.blog-callout {
  background: var(--coral-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 32px 0;
}
.blog-callout .section-label { margin-bottom: 8px; }
.blog-callout p { font-size: 15px; color: var(--dark); line-height: 1.6; margin-bottom: 0; }

/* Blog-specific overrides for shared article components */
.blog-body + .article-related { padding: 40px 24px; }
.blog-body + .article-related .container { max-width: 680px; }
.blog-body + .article-related + .article-cta { padding: 48px 24px; }
.blog-body + .article-related + .article-cta .container { max-width: 680px; }
.blog-body + .article-related + .article-cta p { font-size: 15px; line-height: 1.7; }

/* ================================================================
   STORY PAGE
   ================================================================ */
.story-header {
  padding: 96px 48px;
  padding-top: 168px;
  background: var(--bg);
  text-align: center;
}
.story-header .hero-sub {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.story-header .hero-actions { justify-content: center; }
.story-header .hero-stats { justify-content: center; gap: 48px; }

.story-section { padding: 80px 24px; }
.story-section.alt { background: var(--bg-soft); }
.story-prose { max-width: 720px; margin: 0 auto; }
.story-prose p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.story-prose h2 { font-size: clamp(24px, 3vw, 32px); }

.founder-row {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.founder-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 56px;
  font-weight: 800;
  color: var(--coral);
  border: 4px solid white;
  box-shadow: var(--shadow);
}
.founder-info { flex: 1; min-width: 280px; }
.founder-info h2 { margin-bottom: 12px; font-size: clamp(24px, 3vw, 32px); }
.founder-info p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.founder-info .credential-list { margin-top: 20px; gap: 10px; }
.founder-info .credential-list li { font-size: 14px; }

.values-section {
  padding: 96px 24px;
  background: var(--dark);
  color: white;
}
.values-section h2 { color: white; }
.values-section .section-label { color: var(--coral); }

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-header {
  padding: 64px 24px;
  padding-top: 136px;
  background: var(--bg);
}
.legal-header h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 8px;
}
.legal-meta { font-size: 13px; color: var(--light); font-weight: 500; }

.legal-body { padding: 64px 24px; background: var(--bg); }
.legal-container { max-width: 720px; margin: 0 auto; }
.legal-container h2 { font-size: 20px; font-weight: 800; color: var(--dark); margin-top: 40px; margin-bottom: 12px; }
.legal-container p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.legal-container ul { margin-bottom: 16px; padding-left: 24px; }
.legal-container li { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 6px; }
.legal-container a { color: var(--coral); text-decoration: none; }
.legal-container a:hover { text-decoration: underline; }

/* ================================================================
   FOOTER (Global — all pages)
   ================================================================ */
footer {
  background: var(--dark);
  color: white;
  padding: 64px 24px 32px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: #999; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-logo { font-size: 22px; font-weight: 800; color: white; text-decoration: none; }
.footer-logo span { color: var(--coral); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; color: #ccc; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--coral); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #999;
}
.footer-bottom a { color: #999; text-decoration: none; }
.footer-bottom a:hover { color: var(--coral); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 80px;
    text-align: center;
  }
  .hero-content { padding: 60px 0 0; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-header { padding: 140px 24px 64px; }
  .story-header { padding: 140px 24px 64px; }
  .about-strip-inner { flex-direction: column; align-items: flex-start; }
  .founder-row { flex-direction: column; text-align: center; }
  .carousel-card { flex: 0 0 calc((100% - 24px) / 2); }
  .founder-avatar { margin: 0 auto; }
  .founder-info .credential-list { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-cards { grid-template-columns: 1fr; }

  /* Category pages */
  .category-header { padding: 120px 20px 48px; }
  .category-intro { padding: 48px 20px; }
  .category-grid { padding: 64px 20px; }
  .category-included { padding: 64px 20px; }
  .category-proof { padding: 40px 20px; }
  .category-cta { padding: 48px 20px; }
  .category-proof .hero-stats { gap: 32px; }

  /* Brand pages */
  .brand-header { padding: 120px 20px 48px; }
  .brand-context { padding: 64px 20px; }
  .brand-proof { padding: 64px 20px; }
  .about-strip { padding: 40px 20px; }
  .hero-stats { gap: 24px; }
  .brand-stats { gap: 24px; }

  /* Article pages */
  .article-header { padding: 120px 20px 48px; }
  .article-body { padding: 48px 20px; }
  .article-tldr { padding: 0 20px; }
  .article-related { padding: 40px 20px; }
  .article-cta { padding: 48px 20px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  /* Blog pages */
  .blog-header { padding: 112px 20px 40px; }
  .blog-body { padding: 40px 20px; }

  /* Story page */
  .story-header { padding: 120px 20px 48px; }
  .story-section { padding: 48px 20px; }
  .values-section { padding: 64px 20px; }

  /* Legal pages */
  .legal-header { padding: 120px 20px 40px; }
  .legal-body { padding: 40px 20px; }
}

@media (max-width: 640px) {
  .carousel-card { flex: 0 0 100%; }
  .carousel-track { gap: 16px; }
}

/* Carousel (Homepage) */
.carousel-wrapper {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
.review-stars-sm {
  color: var(--coral);
  font-size: 16px;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.carousel-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.carousel-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  flex-shrink: 0;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.2s;
  font-family: var(--font);
  flex-shrink: 0;
}
.carousel-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: scale(1.05);
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--coral);
  width: 24px;
  border-radius: 4px;
}

/* ================================================================
   PAGE-TYPE SCOPED OVERRIDES
   Resolves specificity conflicts when all page types share one CSS file.
   Each page's <body> carries a data-page attribute for scoping.
   Every override below matches a rule that had a DIFFERENT value
   in the original inline CSS vs the homepage base.
   ================================================================ */

/* ── CATEGORY PAGES ── */
body[data-page="category"] .container {
  max-width: 1100px;
}
body[data-page="category"] h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 0;
}
body[data-page="category"] h2 {
  font-size: clamp(24px, 3vw, 36px);
}
body[data-page="category"] .hero-stats {
  gap: 48px;
  justify-content: center;
}
body[data-page="category"] .stat {
  align-items: center;
}
body[data-page="category"] .stat-num {
  color: white;
}
body[data-page="category"] .stat-label {
  color: rgba(255,255,255,0.85);
}
body[data-page="category"] .included-grid {
  margin-top: 40px;
}
/* Category footer must stay at full width */
body[data-page="category"] footer .footer-grid,
body[data-page="category"] footer .footer-bottom {
  max-width: 1280px;
}

/* ── BRAND PAGES ── */
body[data-page="brand"] h2 {
  font-size: clamp(26px, 3.5vw, 40px);
}
body[data-page="brand"] .brand-header h1 {
  font-size: clamp(36px, 4.5vw, 56px);
}
body[data-page="brand"] .hero-sub {
  font-size: 17px;
  max-width: 560px;
}
body[data-page="brand"] .included {
  padding: 96px 24px;
}
body[data-page="brand"] .how-it-works {
  padding: 96px 24px;
}
body[data-page="brand"] .cta-section {
  padding: 96px 24px;
}
body[data-page="brand"] .included-grid {
  margin-top: 0;
}
body[data-page="brand"] .credential-list {
  gap: 8px;
  margin: 0;
}
body[data-page="brand"] .credential-list li {
  gap: 10px;
  font-size: 14px;
}
body[data-page="brand"] .credential-list li::before {
  width: 7px;
  height: 7px;
}
body[data-page="brand"] .cta-section h2 {
  color: white;
}

/* ── STORY PAGE ── */
body[data-page="story"] h2 {
  font-size: clamp(26px, 3.5vw, 40px);
}
body[data-page="story"] .story-header h1 {
  font-size: clamp(36px, 4.5vw, 56px);
}
body[data-page="story"] .hero-sub {
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
body[data-page="story"] .hero-actions {
  justify-content: center;
}
body[data-page="story"] .hero-stats {
  gap: 48px;
  justify-content: center;
}
body[data-page="story"] .stat {
  align-items: center;
}
body[data-page="story"] .founder-info h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}
body[data-page="story"] .story-prose h2 {
  font-size: clamp(24px, 3vw, 32px);
}
body[data-page="story"] .credential-list {
  gap: 10px;
  margin: 20px 0 0;
}
body[data-page="story"] .included-grid {
  margin-top: 40px;
}
body[data-page="story"] .cta-section {
  padding: 96px 24px;
}
body[data-page="story"] .cta-section h2 {
  color: white;
}

/* ── ARTICLE PAGES ── */
body[data-page="article"] .article-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 0;
}
body[data-page="article"] .article-container {
  max-width: 720px;
}
body[data-page="article"] .article-container h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-top: 48px;
  margin-bottom: 16px;
}
body[data-page="article"] .article-container p {
  font-size: 16px;
  line-height: 1.8;
}
body[data-page="article"] .article-cta h2 {
  font-size: clamp(22px, 2.5vw, 28px);
}
body[data-page="article"] .tldr-box {
  max-width: 720px;
}
body[data-page="article"] .article-related .container {
  max-width: 720px;
}
body[data-page="article"] .article-cta .container {
  max-width: 720px;
}

/* ── BLOG PAGES ── */
body[data-page="blog"] .blog-header h1 {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 0;
}
body[data-page="blog"] .blog-container {
  max-width: 680px;
}
body[data-page="blog"] .blog-container h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}
body[data-page="blog"] .blog-container p {
  font-size: 15px;
  line-height: 1.7;
}
body[data-page="blog"] .article-related .container {
  max-width: 680px;
}
body[data-page="blog"] .article-cta .container {
  max-width: 680px;
}
body[data-page="blog"] .article-cta p {
  font-size: 15px;
  line-height: 1.7;
}

/* ── LEGAL PAGES ── */
body[data-page="legal"] .legal-header h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 8px;
}
body[data-page="legal"] .legal-container {
  max-width: 720px;
}
body[data-page="legal"] .legal-container h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}
body[data-page="legal"] .legal-container p {
  font-size: 15px;
  line-height: 1.8;
}

