/* ============================================================
   BODYCOACH.IE — SHARED STYLESHEET
   Brand: Jost (headings) + DM Sans (body)
   Palette: Charcoal #2C2C34, Red #B81E2A, Warm White #F9F8F7
   ============================================================ */

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

:root {
  --charcoal: #2C2C34;
  --red: #B81E2A;
  --warm-white: #F9F8F7;
  --light-grey: #EDECEA;
  --slate: #6B6874;
  --near-black: #1A1A20;
  --red-tint: #F7E8E9;
  --heading: 'Jost', sans-serif;
  --body: 'DM Sans', sans-serif;
  --max: 1100px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-grey);
  padding: 0 24px;
}

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

.logo {
  font-family: var(--heading);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo .bw { color: var(--charcoal); }
.logo .cw { color: var(--red); }

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

.nav-links a {
  font-family: var(--body);
  font-weight: 400;
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active { font-weight: 500; }

.nav-cta {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  background: var(--red);
  color: #F9F8F7;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #9A1822; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  background: var(--red);
  color: #F9F8F7;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: #9A1822; }

.btn-secondary {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--charcoal); color: var(--warm-white); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--charcoal);
  padding: 72px 24px 64px;
  text-align: center;
}

.page-header .eyebrow { color: rgba(255,255,255,0.35); }

.page-header h1 {
  font-family: var(--heading);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header p {
  font-family: var(--body);
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── HERO ── */
.hero {
  padding: 0 24px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 64px 0 80px;
}

.hero-eyebrow {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--heading);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero h1 em { color: var(--red); font-style: normal; }

.hero-subhead {
  font-family: var(--body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 14px;
  max-width: 460px;
}

.hero-body {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.hero-note {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(26,26,32,0.92);
  backdrop-filter: blur(4px);
  padding: 14px 18px;
  border-radius: 6px;
}
.hero-badge strong {
  display: block;
  font-family: var(--heading);
  font-weight: 300;
  font-size: 26px;
  color: #fff;
  line-height: 1;
}
.hero-badge span {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── STATS BAR ── */
.stats {
  background: var(--near-black);
  padding: 0 24px;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--heading);
  font-weight: 300;
  font-size: 38px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat-num em { color: var(--red); font-style: normal; }

.stat-label {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

/* ── SHARED SECTION ── */
.section { padding: 88px 24px; }
.section-grey { background: var(--light-grey); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-h2 {
  font-family: var(--heading);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.section-lead {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 580px;
  margin-bottom: 44px;
}

/* ── FOR YOU ── */
.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.for-you-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.for-you-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.5;
}

.for-you-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 9px;
}

.pull-quote {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 28px 28px 24px;
  border-left: 3px solid var(--red);
  margin-bottom: 16px;
}

.pull-quote p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
}

.pull-quote cite {
  font-family: var(--body);
  font-size: 13px;
  color: var(--slate);
  font-style: normal;
}

/* ── CARDS / SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* App section — split layout */
.app-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.app-split-img {
  display: flex;
  justify-content: center;
}
.app-split-img img {
  max-width: 240px;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}
.app-split-list li {
  font-size: 15px;
}
@media (max-width: 760px) {
  .app-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .app-split-img { order: -1; }
  .app-split-img img { max-width: 200px; }
}

/* App callout (services page) */
.app-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-callout-features li {
  font-size: 15px;
  gap: 12px;
}
@media (max-width: 768px) {
  .app-callout-grid { grid-template-columns: 1fr; gap: 36px; }
}

.card {
  border-radius: 8px;
  padding: 36px;
}

.card-light {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
}

.card-dark {
  background: var(--charcoal);
}

.card-badge {
  display: inline-block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.badge-popular { background: rgba(184,30,42,0.12); color: var(--red); }
.badge-solo { background: var(--light-grey); color: var(--slate); }
.card-dark .badge-popular { background: rgba(184,30,42,0.25); color: #e8707a; }

.card h3 {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.card-dark h3 { color: #fff; }

.card p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 24px;
}
.card-dark p { color: rgba(255,255,255,0.55); }

.pricing-block {
  border-top: 1px solid var(--light-grey);
  padding-top: 20px;
  margin-bottom: 22px;
}
.card-dark .pricing-block { border-color: rgba(255,255,255,0.1); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
}

.price-label {
  font-family: var(--body);
  font-size: 14px;
  color: var(--slate);
}
.card-dark .price-label { color: rgba(255,255,255,0.45); }

.price-val {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 18px;
  color: var(--charcoal);
}
.card-dark .price-val { color: #fff; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.feature-list li {
  font-family: var(--body);
  font-size: 14px;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.card-dark .feature-list li { color: rgba(255,255,255,0.5); }

.feature-list li::before {
  content: '✓';
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.card-dark .feature-list li::before { color: #e8707a; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-num {
  font-family: var(--heading);
  font-weight: 300;
  font-size: 56px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(44,44,52,0.12);
  line-height: 1;
  margin-bottom: 2px;
}

.process-steps h3 {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 19px;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-steps p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testi-card {
  background: var(--light-grey);
  border-radius: 8px;
  padding: 28px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  width: 13px;
  height: 13px;
  background: var(--red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-card blockquote {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-name {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--charcoal);
}

.testi-meta {
  font-family: var(--body);
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
}

.testi-more {
  text-align: center;
  margin-top: 36px;
}

.testi-more a {
  font-family: var(--body);
  font-size: 14px;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.testi-more a:hover { opacity: 0.7; }

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-text p {
  font-family: var(--body);
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
}

.text-link {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1.5px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--red); border-color: var(--red); }

/* ── CONTACT SECTION / CTA ── */
.cta-dark {
  background: var(--charcoal);
  padding: 88px 24px;
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-left .eyebrow { color: rgba(255,255,255,0.35); }

.cta-left .section-h2 {
  color: #fff;
  max-width: 400px;
  margin: 0 0 18px;
}

.cta-left > p {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 0 36px;
}

.cta-contacts { display: flex; flex-direction: column; gap: 14px; }

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-contact-link:hover { color: #fff; }

.cta-contact-link .icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  font-family: var(--body);
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}

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

.form-submit {
  width: 100%;
  font-size: 15px;
  padding: 14px;
  cursor: pointer;
  border: none;
}

.form-note {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--light-grey);
}

.faq-item {
  border-bottom: 1px solid var(--light-grey);
  padding: 24px 0;
}

.faq-q {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.faq-a {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 680px;
}

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: rgba(44,44,52,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.blog-date {
  font-family: var(--body);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
}

.blog-card h3 {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.blog-card p {
  font-family: var(--body);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
}

.blog-read {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--red);
  margin-top: 4px;
}

/* ── BLOG POST CONTENT ── */
.blog-post-content {
  max-width: 700px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
}
.blog-post-content p {
  margin-bottom: 22px;
}
.blog-post-content h2 {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 40px 0 14px;
}
.blog-post-content h3 {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 22px 24px;
}
.blog-post-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.blog-post-content strong {
  font-weight: 600;
}
@media (max-width: 700px) {
  .blog-post-content { font-size: 16px; }
}

/* ── FOOTER ── */
footer {
  background: var(--near-black);
  padding: 56px 24px 32px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: var(--heading);
  font-weight: 300;
  font-size: 30px;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo .bw { color: rgba(255,255,255,0.88); }
.footer-logo .cw { color: #D63040; }

.footer-about {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-h {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-contact-row a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-row a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── BURGER BUTTON ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV PANEL ── */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-grey);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  z-index: 99;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 0;
}

.nav-mobile-links a {
  font-family: var(--body);
  font-size: 16px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-grey);
  transition: color 0.15s;
}
.nav-mobile-links a:last-child { border-bottom: none; }
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: var(--red); }
.nav-mobile-links a.active { font-weight: 500; }

.nav-mobile-footer {
  padding: 16px 24px 24px;
}

.nav-mobile-footer .nav-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 48px 0 0; gap: 40px; }
  .hero-image { aspect-ratio: 3/2; border-radius: 0; margin: 0 -24px; }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .for-you-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { aspect-ratio: 3/2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 56px 20px; }
  .nav-links { display: none; }
  .nav-inner .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
