/* =========================================================
   IRINA · THERMOMIX GTA
   Stylesheet — Warm Editorial Kitchen
   ========================================================= */

/* === VARIABLES === */
:root {
  /* Backgrounds — clean modern whites */
  --c-bg:          #FAFAFA;
  --c-bg-alt:      #F4F4F2;
  --c-muted:       #EFEFED;
  --c-white:       #FFFFFF;
  --c-border:      #EAEAE8;
  --c-border-soft: #F0F0EE;

  /* Text */
  --c-text:        #0A0A0A;
  --c-text-muted:  #595959;
  --c-text-subtle: #8C8C8C;
  --c-text-light:  var(--c-text-muted);

  /* Dark sections */
  --c-dark:        #0A0A0A;
  --c-dark-mid:    #141414;

  /* PRIMARY — modern forest green, single brand color */
  --c-accent:      #2D6A4F;
  --c-accent-dark: #1B4332;
  --c-accent-soft: #E8F3EC;

  /* WARNING — desaturated red for "bad" numbers only */
  --c-warn:        #C13515;

  /* Legacy aliases for continuity */
  --c-secondary:   var(--c-accent);
  --c-secondary-dark: var(--c-accent-dark);
  --c-green:       var(--c-accent);
  --c-green-light: #4A8A65;
  --c-gold:        #C89B42;
  --c-sand:        #E6E3DC;

  --f-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --f-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --r: 6px;
  --shadow:       0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-hover: 0 2px 4px rgba(0,0,0,0.05), 0 12px 32px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === BASE === */
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--c-text);
}
h1 { font-size: clamp(2.75rem, 6.5vw, 5.75rem); font-weight: 700; letter-spacing: -0.045em; line-height: 0.98; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.04em; line-height: 1.05; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.03em; line-height: 1.2; font-weight: 600; }
h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); }

em { font-style: italic; }

p { max-width: 68ch; }
strong { font-weight: 600; color: var(--c-text); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.85em 1.75em;
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45,106,79,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-outline:hover {
  background: var(--c-text);
  color: var(--c-white);
  border-color: var(--c-text);
}
.btn-green {
  background: var(--c-accent);
  color: var(--c-white);
}
.btn-green:hover {
  background: var(--c-accent-dark);
  transform: translateY(-1px);
}

/* === LABELS / EYEBROWS === */
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--c-accent);
  display: inline-block;
}

/* === NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
}
.nav-logo {
  font-family: var(--f-display);
  color: var(--c-white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.15rem;
}
.nav-logo-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.nav-logo-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0.5em 0.9em;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  background: var(--c-accent) !important;
  color: var(--c-white) !important;
  margin-left: 0.5rem;
  padding: 0.55em 1.2em !important;
}
.nav-cta:hover {
  background: var(--c-accent-dark) !important;
}

/* Mobile nav toggle */
.nav-toggle-input { display: none; }
.nav-toggle-label { display: none; }

/* === HERO === */
.hero {
  background: var(--c-dark);
  min-height: calc(92vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-content {
  padding: 6rem 4rem 6rem max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.hero-eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--c-accent);
  display: inline-block;
}
.hero-headline {
  color: var(--c-white);
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-bottom: 1.75rem;
}
.hero-headline em {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  animation: fadeIn 1.4s ease 0.4s both;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, var(--c-dark) 0%, rgba(0,0,0,0) 25%);
}

/* === STATS STRIP === */
.stats-strip {
  background: var(--c-dark-mid);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number em { color: var(--c-accent); font-style: normal; }
.stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
}
.stats-inner > div + div {
  border-left: 1px solid rgba(255,255,255,0.1);
}

/* === SECTION BASE === */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow {
  margin-bottom: 0.75rem;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--c-text-light);
  font-size: 1.05rem;
}
.section-alt { background: var(--c-bg-alt); }
.section-dark {
  background: var(--c-dark);
  color: var(--c-white);
}

/* === PROBLEM SECTION === */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 2.5rem;
}
.problem-card-number {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--c-warn);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.problem-card.green .problem-card-number { color: var(--c-accent); }
.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.problem-card p {
  color: var(--c-text-light);
  font-size: 0.95rem;
}
.problem-resolution {
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.problem-resolution h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--c-white);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.problem-resolution p { color: rgba(255,255,255,0.65); max-width: 50ch; }

/* === FEATURES SECTION === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-hover);
}
.feature-card:nth-child(1) { grid-column: span 2; }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--c-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.features-showcase-item {
  margin: 0;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.features-showcase-item:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-hover);
}
.features-showcase-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.features-showcase-item figcaption {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: var(--c-text-light);
  line-height: 1.5;
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-accent), transparent);
  opacity: 0.4;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.step h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.step p { color: var(--c-text-light); font-size: 0.95rem; margin: 0 auto; }

/* === PRICING === */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pricing-card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
}
.pricing-price {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--c-text);
  margin: 1rem 0 0.25rem;
}
.pricing-price-note {
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin-bottom: 2rem;
}
.pricing-or {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
  color: var(--c-text-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-or::before, .pricing-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--c-sand);
}
.pricing-or::before { left: 0; }
.pricing-or::after { right: 0; }
.pricing-installment {
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-installment-amount {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-accent);
}
.pricing-installment p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-top: 0.25rem; }
.pricing-list {
  margin: 1.5rem 0;
}
.pricing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-sand);
  font-size: 0.95rem;
  display: flex;
  gap: 0.75rem;
}
.pricing-list li::before {
  content: '✓';
  color: var(--c-green);
  font-weight: 600;
  flex-shrink: 0;
}
.comparison-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-sand);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-label { font-size: 0.95rem; color: var(--c-text-light); }
.comparison-value {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.comparison-value.bad { color: var(--c-warn); }
.comparison-value.good { color: var(--c-accent); }
.comparison-insight {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-accent-soft);
  border-radius: 10px;
  border-left: 3px solid var(--c-accent);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
}

/* === BABY FOOD SECTION === */
.baby-section {
  background: var(--c-green);
  color: var(--c-white);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.baby-section::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.baby-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.baby-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.baby-headline {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--c-white);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.baby-headline em { font-style: italic; font-weight: 600; color: rgba(255,255,255,0.6); }
.baby-body {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 2rem;
}
.baby-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.baby-fact {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.25rem;
}
.baby-fact-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.baby-fact h4 {
  color: var(--c-white);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.baby-fact p { color: rgba(255,255,255,0.55); font-size: 0.82rem; max-width: none; }
.baby-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.baby-timeline-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.baby-timeline-item:last-child { padding-bottom: 0; }
.baby-timeline-item::before {
  content: '';
  position: absolute;
  left: 2.4rem;
  top: 3.5rem;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.baby-timeline-item:last-child::before { display: none; }
.baby-timeline-age {
  width: 4.8rem; height: 4.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}
.baby-timeline-content h4 {
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
  padding-top: 1rem;
}
.baby-timeline-content p { color: rgba(255,255,255,0.55); font-size: 0.875rem; max-width: none; }

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 6rem 2rem;
}
.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header h2 { color: var(--c-white); }
.testimonials-header .eyebrow { color: var(--c-accent); margin-bottom: 0.75rem; }
.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.testimonial-quote {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.testimonial-quote::before { content: '\201C'; color: var(--c-accent); font-weight: 600; margin-right: 0.1em; }
.testimonial-quote::after  { content: '\201D'; color: var(--c-accent); font-weight: 600; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 500; color: var(--c-white); }
.testimonial-location { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* === BLOG SECTION === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-hover);
}
.blog-card-image {
  height: 220px;
  overflow: hidden;
  background: var(--c-sand);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}
.blog-card-image.color-1 { background: linear-gradient(135deg, #c1622b 0%, #9e4e21 100%); }
.blog-card-image.color-2 { background: linear-gradient(135deg, #4e6b42 0%, #3a5230 100%); }
.blog-card-image.color-3 { background: linear-gradient(135deg, #b8935a 0%, #8a6b3e 100%); }
.blog-card-image-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.5);
}
.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--c-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--c-accent); }
.blog-card p {
  color: var(--c-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
.blog-card-link {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card-link { gap: 0.6em; }
.blog-section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* === TM4U === */
.tm4u-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tm4u-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tm4u-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.tm4u-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(47,93,59,0.22);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.tm4u-step h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.tm4u-step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: none; }
.tm4u-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
}
.tm4u-card .eyebrow { color: var(--c-accent); }
.tm4u-card .eyebrow::before { background: var(--c-accent); }
.tm4u-card h3 { color: var(--c-white); font-size: 1.75rem; font-weight: 700; letter-spacing: -0.035em; margin: 0.75rem 0; }
.tm4u-card p { color: rgba(255,255,255,0.62); font-size: 0.95rem; margin-bottom: 1.5rem; }
.tm4u-highlight {
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: var(--c-accent);
  line-height: 1;
  margin: 1rem 0 0.5rem;
}
.tm4u-highlight-text {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.85rem !important;
}
.tm4u-tiers {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tm4u-tiers img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.tm4u-tiers figcaption {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  max-width: 42ch;
  margin: 0 auto;
}

/* === DEMO CTA === */
.demo-section {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.demo-section::before {
  content: '';
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.demo-section::after {
  content: '';
  position: absolute;
  left: -150px;
  top: 20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.demo-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.demo-inner .eyebrow { color: rgba(255,255,255,0.7); }
.demo-inner h2 { color: var(--c-white); font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 1rem 0; }
.demo-inner > p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0 auto 2.5rem; }
.demo-portrait {
  margin: 0 auto 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.demo-portrait img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.demo-portrait figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto 1rem;
  text-align: left;
}
.demo-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.demo-form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.demo-form-hint {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-left: 0.4rem;
}
.demo-form-error {
  margin: 0.4rem 0 0;
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #FFE3E0;
  background: rgba(193,53,21,0.18);
  border-left: 3px solid var(--c-warn);
  border-radius: calc(var(--r) - 4px);
}
.demo-form-error[hidden] { display: none; }
.demo-form input[aria-invalid="true"] {
  outline: 2px solid var(--c-warn);
  outline-offset: 1px;
}
.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 0.8em 1.1em;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.96);
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-text);
}
.demo-form textarea {
  resize: vertical;
  min-height: 6rem;
}
.demo-form input::placeholder,
.demo-form textarea::placeholder { color: var(--c-text-light); }
.demo-form input:focus,
.demo-form textarea:focus {
  outline: 2px solid var(--c-accent);
  outline-offset: 1px;
}
.demo-form-radio {
  border: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.demo-form-radio legend {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  padding: 0;
}
.demo-form-radio label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.demo-form-radio input[type="radio"] { accent-color: var(--c-accent); }
.demo-form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.demo-form .btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
  margin-top: 0.5rem;
  align-self: flex-start;
}
.demo-form .btn-primary:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  box-shadow: 0 8px 24px rgba(45,106,79,0.4);
}
.demo-form .btn-primary:disabled,
.demo-form[aria-busy="true"] .btn-primary {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  cursor: progress;
  opacity: 0.75;
  position: relative;
  padding-right: 2.6em;
}
.demo-form[aria-busy="true"] .btn-primary::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.85em;
  height: 0.85em;
  margin-top: -0.425em;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--c-white);
  border-radius: 50%;
  animation: demo-spin 0.7s linear infinite;
}
@keyframes demo-spin {
  to { transform: rotate(360deg); }
}
.demo-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* === FOOTER === */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  color: var(--c-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  font-family: var(--f-display);
}
.footer-location { font-size: 0.82rem; }
.footer-links h4 {
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--c-white); }
.footer-cta p { margin-bottom: 1rem; font-size: 0.95rem; color: rgba(255,255,255,0.7); max-width: none; }
.footer-note { font-size: 0.8rem; margin-top: 0.75rem; max-width: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  max-width: 100%;
}

/* === BLOG LISTING PAGE === */
.blog-hero {
  background: var(--c-dark);
  padding: 5rem 2rem;
  text-align: center;
}
.blog-hero h1 { color: var(--c-white); margin: 1rem 0; }
.blog-hero p { color: rgba(255,255,255,0.6); margin: 0 auto; font-size: 1.05rem; }
.blog-listing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* === BLOG POST PAGE === */
.post-hero {
  background: var(--c-dark);
  padding: 5rem 2rem 4rem;
  position: relative;
}
.post-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.post-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.post-back {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.post-back:hover { color: var(--c-white); }
.post-category {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(47,93,59,0.15);
  padding: 0.3em 0.8em;
  border-radius: 2rem;
}
.post-title {
  color: var(--c-white);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.post-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
  max-width: 60ch;
  line-height: 1.55;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}
.post-dot { opacity: 0.5; }
.post-author { color: var(--c-gold); }
.post-cover {
  max-width: 900px;
  margin: -2rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.post-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.post-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
}
.post-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
}
.post-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}
.post-content p { margin-bottom: 1.25rem; color: var(--c-text); max-width: none; }
.post-content ul, .post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5rem; }
.post-content strong { color: var(--c-text); }
.post-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--c-accent-soft);
  border-radius: 0 8px 8px 0;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--c-text);
}
.post-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--c-border);
}
.sidebar-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
  max-width: none;
}
.sidebar-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.sidebar-card p { font-size: 0.875rem; color: var(--c-text-light); margin-bottom: 1.25rem; max-width: none; }
.sidebar-card .btn { width: 100%; text-align: center; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-1 { animation: fadeUp 0.8s ease 0.1s both; }
.anim-2 { animation: fadeUp 0.8s ease 0.2s both; }
.anim-3 { animation: fadeUp 0.8s ease 0.3s both; }
.anim-4 { animation: fadeUp 0.8s ease 0.4s both; }
.anim-5 { animation: fadeUp 0.8s ease 0.5s both; }
.anim-6 { animation: fadeUp 0.8s ease 0.6s both; }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-accent { color: var(--c-accent); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(1) { grid-column: span 1; }
  .pricing-layout, .tm4u-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
  }
  .nav-toggle-label span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--c-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 0;
  }
  .nav-toggle-input:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 0.75rem 0; border-radius: 0; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; border-radius: var(--r) !important; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 4rem 1.5rem 2rem; }
  .hero-visual { min-height: 360px; max-height: 50vh; }
  .hero-visual::after { background: linear-gradient(to bottom, var(--c-dark) 0%, rgba(0,0,0,0) 20%); }
  .features-showcase { grid-template-columns: 1fr; }

  /* Sections */
  .section { padding: 4rem 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-resolution { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .blog-grid, .blog-listing-grid { grid-template-columns: 1fr; }
  .baby-layout { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stats-inner > div + div { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }

  /* Post */
  .post-body { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .demo-form .btn-primary { align-self: stretch; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
}
