/*
Theme Name: ai-applied Child
Template: astra
Description: Child theme for ai-applied.eu — AI Consulting & Education
Text Domain: ai-applied-child
Version: 1.0.0
*/

/* ─────────────────────────────────────────────
   NOTE: Replace "PARENT_THEME_FOLDER" above
   with the exact folder name of the active
   parent theme you see in:
   wp-content/themes/<folder-name>
   e.g. Template: twentytwentyfour
───────────────────────────────────────────── */

:root {
  --green: #1D9E75;
  --green-light: #E1F5EE;
  --green-mid: #9FE1CB;
  --green-dark: #0F6E56;
  --green-deep: #085041;
  --text: #1a1a18;
  --text-muted: #5a5a56;
  --text-faint: #9a9a94;
  --border: rgba(0,0,0,0.08);
  --border-mid: rgba(0,0,0,0.12);
  --bg: #fafaf8;
  --bg-card: #ffffff;
  --bg-subtle: #f4f4f0;
  --radius: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 2rem;
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  justify-self: start;
}
.nav-logo em { font-style: italic; color: var(--green); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  justify-content: center;
  margin: 0 auto;
}
.nav-links a {
  font-size: 13.5px; color: var(--text-muted);
  text-decoration: none; font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  transition: all 0.15s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--bg-subtle); color: var(--text); }

/* Right group */
.nav-right-group {
  display: flex; align-items: center; gap: 12px;
  justify-content: flex-end;
  justify-self: end;
}

/* Language switcher (Polylang) */
.nav-lang-switcher {
  display: flex; align-items: center; gap: 4px;
}
/* Hide flags, bullets, and the current-lang dot */
.nav-lang-switcher img,
.nav-lang-switcher .lang-flag { display: none !important; }
.nav-lang-switcher ul {
  list-style: none; display: flex; align-items: center; gap: 4px;
  margin: 0; padding: 0;
}
.nav-lang-switcher li { display: flex; align-items: center; }
/* Separator dot between langs */
.nav-lang-switcher li + li::before {
  content: '·';
  color: var(--border-mid);
  margin-right: 4px;
  font-size: 13px;
}
.nav-lang-switcher a {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint); text-decoration: none;
  padding: 2px 0;
  transition: color 0.15s;
  line-height: 1;
}
.nav-lang-switcher a:hover { color: var(--text); }
.nav-lang-switcher .current-lang a,
.nav-lang-switcher li.current-lang a { color: var(--green); font-weight: 600; }

.nav-cta {
  background: var(--green) !important; color: #fff !important;
  border: none !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  font-size: 13.5px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none !important;
  display: inline-block !important;
  line-height: 1.4 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  box-sizing: border-box !important;
  width: auto !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-cta:active { transform: scale(0.98); }

/* ── LAYOUT ── */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

/* ── HERO ── */
.hero {
  padding: 6rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--green-dark); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: ''; display: block;
  width: 20px; height: 1.5px; background: var(--green);
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 2rem;
  max-width: 400px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 11px 22px;
  border-radius: 100px; font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; cursor: pointer;
  transition: all 0.15s; text-decoration: none;
  border: none;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover { border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.02); }

.hero-stats {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat {
  padding: 1.5rem 1.75rem;
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: baseline; gap: 1rem;
}
.hero-stat:last-child { border-bottom: none; }
.stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem; color: var(--green);
  line-height: 1; min-width: 80px;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13.5px; color: var(--text-muted); line-height: 1.4; }

/* ── DIVIDER ── */
.divider { height: 0.5px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-eyebrow {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::after {
  content: ''; flex: 1; max-width: 32px;
  height: 1.5px; background: var(--green);
}
.section-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-h2 em { font-style: italic; color: var(--green); }
.section-lead {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ── CARDS: 2-col / 3-col ── */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.cards-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.card-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--green-light);
  line-height: 1; margin-bottom: 1rem;
  -webkit-text-stroke: 1.5px var(--green-mid);
}
.card h3 { font-size: 15px; font-weight: 500; margin-bottom: 0.5rem; }
.card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ── TILES: 3-col ── */
.tiles-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.tile {
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.tile-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-bottom: 1rem;
}
.tile h4 { font-size: 14px; font-weight: 500; margin-bottom: 0.5rem; }
.tile p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── PROCESS ── */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 2rem;
}
.process-step {
  padding: 1.5rem;
  border-right: 0.5px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent;
  transition: background 0.2s;
}
.process-step:hover::before { background: var(--green); }
.step-n {
  font-size: 11px; font-weight: 500;
  color: var(--green-dark); background: var(--green-light);
  display: inline-block; padding: 3px 9px;
  border-radius: 100px; margin-bottom: 0.85rem;
}
.process-step h4 { font-size: 14px; font-weight: 500; margin-bottom: 0.4rem; }
.process-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ── TESTIMONIAL ── */
.testimonial-wrap { padding: 5rem 0; }
.testimonial {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  color: #fff;
  position: relative; overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 14rem; line-height: 1;
  color: rgba(255,255,255,0.07);
  position: absolute; top: -2rem; left: 2rem;
  pointer-events: none; user-select: none;
}
.testimonial blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55; font-weight: 400;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.75rem;
  position: relative; z-index: 1;
  max-width: 680px;
}
.testimonial-meta {
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
}
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; color: var(--green-deep);
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.t-role { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ── ASSESSMENT ── */
.assessment {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  margin-bottom: 5rem;
}
.assessment h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; margin-bottom: 0.4rem;
}
.assessment p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; max-width: 440px; }

/* ── BLOG INDEX ── */
.blog-header { padding: 4rem 0 2rem; }
.blog-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 0.75rem;
}
.blog-header p { font-size: 16px; color: var(--text-muted); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 2rem 0 5rem;
}
.blog-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none; color: inherit;
  display: block;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-color: var(--border-mid);
}
.blog-card-meta {
  font-size: 12px; color: var(--text-faint);
  margin-bottom: 0.75rem; letter-spacing: 0.02em;
}
.blog-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem; color: var(--text);
}
.blog-card p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.65;
}
.blog-card-read {
  display: inline-block; margin-top: 1.25rem;
  font-size: 13px; font-weight: 500;
  color: var(--green); text-decoration: none;
}

.no-posts {
  padding: 4rem 0;
  font-size: 15px; color: var(--text-muted);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  border-top: 0.5px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; color: var(--text);
  text-decoration: none; display: block;
  margin-bottom: 0.75rem;
}
.footer-brand-logo em { font-style: italic; color: var(--green); }
.footer-brand p { font-size: 13px; color: var(--text-faint); line-height: 1.65; max-width: 240px; }
.footer-col h5 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 13.5px; color: var(--text-muted); text-decoration: none; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
  font-size: 12px; color: var(--text-faint);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left { animation: fadeUp 0.6s ease both; }
.hero-right { animation: fadeUp 0.6s 0.15s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0 3rem; }
  .hero-sub { max-width: none; }
  .cards-2, .cards-3, .tiles-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 0.5px solid var(--border); }
  .process-step:nth-child(4) { border-right: none; border-top: 0.5px solid var(--border); }
  .testimonial { padding: 2rem; }
  .assessment { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 0.5px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 5rem 0 4rem;
}
.about-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}
.about-h1 em { font-style: italic; color: var(--green); }
.about-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ── CONTACT PAGE ── */
.contact-section { padding-top: 4rem; padding-bottom: 5rem; }

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

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-details {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-detail-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.contact-detail-link {
  color: var(--text) !important;
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
.contact-detail-link:hover { color: var(--green) !important; }
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-faint); margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 14px; font-weight: 500; color: var(--text);
}

.contact-note {
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.contact-note-inner { display: flex; gap: 1rem; align-items: flex-start; }
.contact-note-inner .tile-dot { flex-shrink: 0; margin-top: 6px; margin-bottom: 0; }
.contact-note p {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0;
}
.contact-note strong { color: var(--text); }

.contact-what-expect { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-step {
  display: flex; align-items: baseline; gap: 0.85rem;
}
.contact-step p {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid #e1f5ee;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

/* Override SureForms styles to match theme */
.contact-form-wrap .srfm-submit-button,
.contact-form-wrap button[type="submit"] {
  background: var(--green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 11px 28px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}
.contact-form-wrap .srfm-submit-button:hover,
.contact-form-wrap button[type="submit"]:hover {
  background: var(--green-dark) !important;
}
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
  border: 0.5px solid var(--border-mid) !important;
  border-radius: var(--radius) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: var(--text) !important;
  background: var(--bg) !important;
  padding: 10px 14px !important;
  transition: border-color 0.15s !important;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--green) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(29,158,117,0.1) !important;
}

/* ── NAV CENTERING FIX ── */
/* Ensure nav-links sits truly centered between logo and right side */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo { justify-self: start; }
.nav-links {
  justify-self: center;
  display: flex; gap: 2rem; list-style: none;
}
.nav-right-group {
  justify-self: end;
  display: flex; align-items: center; gap: 1rem;
}

/* ── RESPONSIVE CONTACT ── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── PRICING PAGE ── */
.pricing-section { padding-top: 4rem; }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.pricing-card--featured {
  background: var(--green-deep);
  border-color: transparent;
  color: #fff;
}

.pricing-badge {
  position: absolute;
  top: -12px; right: 1.5rem;
  background: var(--green);
  color: #fff;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-card-header { display: flex; flex-direction: column; gap: 0.75rem; }

.pricing-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-top: 0.25rem;
}
.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
}
.pricing-card--featured .pricing-amount { color: #fff; }
.pricing-unit {
  font-size: 14px; color: var(--text-muted); font-weight: 400;
}
.pricing-card--featured .pricing-unit { color: rgba(255,255,255,0.6); }

.pricing-desc {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.65;
}

.pricing-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  border-top: 0.5px solid var(--border);
  padding-top: 1.5rem;
}
.pricing-card--featured .pricing-features {
  border-color: rgba(255,255,255,0.12);
}
.pricing-features li {
  font-size: 13.5px; color: var(--text-muted);
  display: flex; align-items: baseline; gap: 0.6rem;
  line-height: 1.5;
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-size: 12px; font-weight: 600;
  flex-shrink: 0;
}
.pricing-card--featured .pricing-features li::before { color: var(--green-mid); }

.pricing-cta { width: 100%; text-align: center; }

/* Hook strip */
.pricing-hook {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
}
.pricing-hook-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.pricing-hook strong { color: var(--green-dark); }
.pricing-hook span { font-size: 14px; color: var(--text-muted); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
}
.faq-item h4 {
  font-size: 14px; font-weight: 500;
  margin-bottom: 0.4rem; color: var(--text);
}
.faq-item p {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-hook-inner { flex-direction: column; align-items: flex-start; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ── BODY BACKGROUND OVERRIDE ── */
/* Astra's theme may inject its own background colour — enforce ours */
body,
.ast-separate-container,
.site-content,
#page {
  background-color: var(--bg) !important;
  background-image: none !important;
}

/* ── SINGLE POST ── */
.post-hero {
  padding: 4rem 0 2.5rem;
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}

.post-back {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.post-back:hover { text-decoration: underline; }

.post-meta-sep { color: var(--border-mid); }

.post-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

.post-lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* Content column */
.post-layout {
  padding: 3rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 720px);
}

.post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.post-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
}

.post-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin: 2rem 0 0.5rem;
}

.post-content p {
  margin-bottom: 1.4rem;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content a {
  color: var(--green);
  text-decoration: underline;
}

.post-content strong { color: var(--text); }

.post-content blockquote {
  border-left: 3px solid var(--green-mid);
  padding: 0.75rem 1.25rem;
  margin: 1.75rem 0;
  background: var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}

.post-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.post-content code {
  background: var(--bg-subtle);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.88em;
}

.post-content pre {
  background: var(--text);
  color: #e8e8e4;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 1.4rem;
  font-size: 0.9em;
}

/* Prev / Next navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2.5rem 0;
}

.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.post-nav-item:hover {
  border-color: var(--green-mid);
  box-shadow: 0 4px 16px rgba(29,158,117,0.08);
}

.post-nav-next { text-align: right; }

.post-nav-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green);
}

.post-nav-title {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}
