/* ============================================================
   HAYKAL — Section styles + responsive breakpoints
   ============================================================ */

/* ============================================================
   REAL IMAGES (img tag, replacing .img-ph placeholders)
   ============================================================ */
.step-img-wrap > img,
.work-card > img,
.cta-img > img,
.pillar > img.pillar-icon-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}
.work-card > img { aspect-ratio: 4/5; margin-bottom: 16px; transition: transform 0.3s ease; }
.work-card:hover > img { transform: translateY(-6px); }
.cta-img > img { aspect-ratio: 1/1; }

/* ============================================================
   NAV + MOBILE MENU
   ============================================================ */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 12px var(--pad-x);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Section content containers (max-width cap) ===== */
.pillars,
.steps-list,
.services-grid,
.plans,
.work-head,
.work-grid,
.t-grid,
.cta-grid,
.footer-grid,
.footer-foot {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.nav.is-stuck {
  position: fixed; background: rgba(26,20,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,234,216,0.08);
  animation: slideDown 0.3s ease;
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 38px; height: 38px;
  background: var(--bg-paper); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 900; font-family: var(--font-display);
  font-size: 18px;
}
.nav-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--bg-paper); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; color: var(--bg-paper); }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--ember); }
.nav-cta { background: var(--bg-paper); color: var(--ink); border: none; padding: 10px 20px; font-size: 14px; font-family: var(--font-display); font-weight: 700; }
.nav-toggle {
  display: none; background: transparent; border: none;
  width: 44px; height: 44px; padding: 0; color: var(--bg-paper);
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px); background: var(--bg-deep);
  z-index: 100; padding: 24px;
  transform: translateX(100%); transition: transform 0.35s ease;
  display: flex; flex-direction: column; gap: 8px;
  border-left: 1px solid rgba(244,234,216,0.1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 99; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(244,234,216,0.1); margin-bottom: 16px; }
.mobile-menu-close { background: transparent; border: none; color: var(--bg-paper); width: 44px; height: 44px; }
.mobile-menu a { color: var(--bg-paper); font-size: 22px; font-family: var(--font-display); font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(244,234,216,0.08); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ============================================================
   HERO — full bleed
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  width: 100%; overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg { position: absolute; inset: 0; background: var(--bg-deep); }
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-bg-tones {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(199, 90, 42, 0.25), transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgba(90, 107, 58, 0.15), transparent 60%);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background:
    linear-gradient(to left, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.55) 35%, rgba(26,20,16,0.15) 60%, transparent 80%),
    linear-gradient(to top, rgba(26,20,16,0.7) 0%, transparent 50%);
}
.hero-vignette-top {
  position: absolute; top: 0; left: 0; right: 0; height: 120px; z-index: 4;
  background: linear-gradient(to bottom, rgba(26,20,16,0.55), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 5;
  min-height: 100vh; min-height: 100svh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px var(--pad-x) 80px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 56px;
}
.hero-text {
  color: var(--bg-paper);
  align-self: center;
  justify-self: start;
  max-width: 980px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(244,234,216,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(244,234,216,0.3); border-radius: 100px;
  color: var(--bg-paper); font-size: 13px; margin-bottom: 32px;
  font-family: var(--font-body); font-weight: 500;
}
.hero-pill .dot { width: 8px; height: 8px; background: var(--ember); border-radius: 50%; animation: pulse 2s infinite; }

.hero-h1 {
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 28px; color: var(--bg-paper);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-h1 .accent { color: var(--ember); position: relative; }
.hero-h1 .accent svg { position: absolute; left: -4px; right: -4px; bottom: 2px; width: calc(100% + 8px); }
.hero-h1 em { color: var(--ember); font-style: italic; }

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.75; color: rgba(244,234,216,0.88);
  max-width: 620px; margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  background: rgba(244,234,216,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(244,234,216,0.18);
  padding: 20px 0;
  width: 100%; max-width: 540px;
  justify-self: end;
}
.hero-stat { flex: 1; padding: 0 24px; }
.hero-stat + .hero-stat { border-right: 1px solid rgba(244,234,216,0.18); }
.hero-stat-n { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--bg-paper); letter-spacing: -0.02em; }
.hero-stat-l { font-size: 13px; color: rgba(244,234,216,0.7); font-weight: 400; }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 5; color: var(--bg-paper); opacity: 0.6;
  font-family: var(--font-mono); font-size: 11px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  letter-spacing: 0.15em;
}
.hero-scroll-line { width: 1px; height: 32px; background: var(--bg-paper); opacity: 0.5; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--bg-paper);
  padding: 22px 0; overflow: hidden;
  border-bottom: 1px solid var(--ink-soft);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display); font-size: clamp(16px, 2vw, 24px); font-weight: 700;
  letter-spacing: -0.01em;
}
.marquee-track .star { color: var(--ember); }

/* ============================================================
   PHILOSOPHY — why us
   ============================================================ */
.philosophy { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); }
.philosophy-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.philosophy-title { font-size: clamp(30px, 4.4vw, 56px); }
.philosophy-title em { font-style: italic; color: var(--burnt-deep); }
.philosophy-sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-mid); margin-top: 18px; line-height: 1.75; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--bg-cream);
  border: 1px solid var(--line-strong);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.pillar:hover { transform: translateY(-4px); background: #f0e2c8; }
.pillar-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 1; color: var(--burnt);
  opacity: 0.85;
}
.pillar-icon-img { aspect-ratio: 4/3; margin-bottom: 8px; }
.pillar-t { font-size: clamp(20px, 2.4vw, 26px); }
.pillar-d { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }

/* ============================================================
   STEPS — 4 stages
   ============================================================ */
.steps { padding: var(--section-y) var(--pad-x); background: var(--bg-deep); color: var(--bg-paper); }
.steps-header { margin: 0 auto 80px; text-align: center; max-width: 820px; }
.steps-eyebrow { font-family: var(--font-body); font-size: 13px; color: var(--ember); letter-spacing: 0.02em; margin-bottom: 16px; font-weight: 600; }
.steps-title { font-size: clamp(32px, 4.6vw, 64px); font-weight: 900; }

.steps-list { display: flex; flex-direction: column; gap: 80px; }
.step {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center;
}
.step.reverse { grid-template-columns: 1.1fr 1fr; }
.step.reverse .step-text { order: 2; }
.step.reverse .step-img-wrap { order: 1; }
.step-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; color: var(--bg-paper);
  font-family: var(--font-display); font-size: 13px;
  margin-bottom: 24px; font-weight: 700;
  letter-spacing: 0.01em;
}
.step-tag::before {
  content: ""; display: block;
  width: 6px; height: 6px;
  background: var(--ember); border-radius: 50%;
  flex-shrink: 0;
}
.step-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; }
.step-n { font-family: var(--font-display); font-size: clamp(60px, 7vw, 96px); font-weight: 900; color: var(--ember); line-height: 1; opacity: 0.45; flex-shrink: 0; }
.step-t-wrap { display: flex; flex-direction: column; gap: 4px; padding-top: 14px; }
.step-t { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; line-height: 1.2; }
.step-t-sub { font-size: clamp(22px, 2.8vw, 32px); font-weight: 600; opacity: 0.75; line-height: 1.2; }
.step-d { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8; opacity: 0.82; max-width: 520px; }

.step-img-wrap { position: relative; }
.step-img { aspect-ratio: 5/4; }
.step-img.tilt-l { transform: rotate(-1deg); }
.step-img.tilt-r { transform: rotate(1deg); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); }
.services-head { margin: 0 auto 64px; max-width: var(--max-w); }
.services-title { font-size: clamp(30px, 4.2vw, 56px); }
.services-title em { color: var(--burnt-deep); font-style: italic; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
}
.service {
  padding: 36px; background: var(--bg-cream);
  transition: background 0.3s ease;
}
.service:hover { background: var(--bg-tan); }
.services-grid .service:not(:nth-child(3n)) { border-left: 1px solid var(--line-strong); }
.services-grid .service:nth-child(-n+3) { border-bottom: 1px solid var(--line-strong); }
.service-icon { font-size: 36px; color: var(--burnt-deep); margin-bottom: 20px; }
.service-t { font-size: 22px; margin-bottom: 8px; font-weight: 800; }
.service-d { font-size: 14.5px; color: var(--ink-mid); line-height: 1.75; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: var(--section-y) var(--pad-x); background: var(--bg-deep); color: var(--bg-paper); }
.pricing-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.pricing-eyebrow { font-family: var(--font-body); font-size: 13px; color: var(--ember); letter-spacing: 0.02em; margin-bottom: 16px; font-weight: 600; }
.pricing-title { font-size: clamp(32px, 4.6vw, 60px); font-weight: 900; }
.pricing-title em { color: var(--ember); font-style: italic; }
.pricing-sub { font-size: clamp(15px, 1.6vw, 18px); color: rgba(244,234,216,0.7); margin-top: 18px; line-height: 1.75; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: rgba(244,234,216,0.05);
  border: 1px solid rgba(244,234,216,0.12);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.plan:hover { background: rgba(244,234,216,0.09); transform: translateY(-4px); }
.plan.featured {
  background: var(--bg-paper); color: var(--ink);
  border-color: var(--ember);
  position: relative;
  box-shadow: 0 24px 60px rgba(199,90,42,0.25);
}
.plan-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--ember); color: var(--ink);
  padding: 6px 14px; font-family: var(--font-display); font-size: 12px;
  letter-spacing: 0; font-weight: 700;
}
.plan-name { font-family: var(--font-display); font-size: 13px; letter-spacing: 0; color: var(--ember); font-weight: 700; }
.plan.featured .plan-name { color: var(--burnt-deep); }
.plan-h { font-size: clamp(24px, 2.8vw, 30px); font-weight: 800; }
.plan-price { font-family: var(--font-display); font-size: clamp(34px, 4vw, 44px); font-weight: 900; line-height: 1.1; }
.plan-price small { font-size: 14px; opacity: 0.65; font-weight: 500; margin-right: 4px; font-family: var(--font-body); }
.plan-d { font-size: 14.5px; line-height: 1.75; opacity: 0.78; }
.plan.featured .plan-d { opacity: 0.72; }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.6;
}
.plan-features li::before { content: "✓"; color: var(--ember); font-weight: 700; flex-shrink: 0; }
.plan.featured .plan-features li::before { color: var(--burnt-deep); }
.plan .btn { justify-content: center; margin-top: 8px; }

/* ============================================================
   WORK
   ============================================================ */
.work { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); }
.work-head {
  margin-bottom: 64px; display: flex; justify-content: space-between;
  align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.work-title { font-size: clamp(30px, 4.2vw, 56px); }
.work-title em { color: var(--burnt-deep); font-style: italic; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card { cursor: pointer; }
.work-card .img-ph { aspect-ratio: 4/5; margin-bottom: 16px; transition: transform 0.3s ease; }
.work-card:hover .img-ph { transform: translateY(-6px); }
.work-card-foot { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.work-card-t { font-size: 20px; font-weight: 800; }
.work-card-cat { font-size: 12px; font-family: var(--font-body); color: var(--ink-mid); letter-spacing: 0; font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--section-y) var(--pad-x); background: var(--bg-cream); }
.testimonials-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.testimonials-title { font-size: clamp(30px, 4.4vw, 56px); }
.testimonials-title em { color: var(--burnt-deep); font-style: italic; }

.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-strong);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-card:nth-child(1) { transform: rotate(-0.6deg); }
.t-card:nth-child(2) { transform: rotate(0.5deg); }
.t-card:nth-child(3) { transform: rotate(-0.3deg); }
.t-card:hover { transform: rotate(0) translateY(-4px); box-shadow: 0 24px 50px rgba(26,20,16,0.12); }
.t-mark {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 0.6; color: var(--ember);
  height: 18px;
}
.t-quote {
  font-size: 16px; line-height: 1.85; color: var(--ink-soft);
  font-weight: 400;
}
.t-foot {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px dashed var(--line-strong); padding-top: 18px;
}
.t-avatar {
  width: 46px; height: 46px;
  background: var(--bg-tan);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; color: var(--burnt-deep);
  border-radius: 50%;
  flex-shrink: 0;
}
.t-who { display: flex; flex-direction: column; }
.t-name { font-weight: 700; font-size: 15px; }
.t-role { font-size: 12px; color: var(--ink-mid); font-family: var(--font-body); margin-top: 2px; font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 64px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.faq-side .faq-title { font-size: clamp(28px, 3.8vw, 50px); margin-bottom: 16px; }
.faq-side .faq-title em { color: var(--burnt-deep); font-style: italic; }
.faq-side p {
  font-size: 15.5px; line-height: 1.8; color: var(--ink-mid);
  margin-bottom: 24px;
}
.faq-side .btn-ghost { padding: 12px 18px; font-size: 14px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 22px 0; text-align: right;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(16px, 1.6vw, 18.5px); color: var(--ink);
  cursor: pointer; letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--burnt-deep); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--bg-cream);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 18px;
  color: var(--burnt-deep);
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon { background: var(--ember); color: var(--ink); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 22px; }
.faq-a p {
  font-size: 15.5px; line-height: 1.85; color: var(--ink-soft);
  max-width: 640px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 100px var(--pad-x); background: var(--burnt-deep); color: var(--bg-paper); position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.cta-h2 { font-size: clamp(32px, 4.6vw, 60px); margin-bottom: 24px; font-weight: 900; }
.cta-h2 em { font-style: italic; }
.cta-p { font-size: clamp(15px, 1.7vw, 18px); margin-bottom: 32px; opacity: 0.88; max-width: 540px; line-height: 1.75; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-img .img-ph { aspect-ratio: 1/1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 72px var(--pad-x) 32px;
  background: var(--bg-deep); color: var(--bg-paper);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,234,216,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .nav-brand { gap: 12px; }
.footer-tag { font-size: 14.5px; line-height: 1.75; opacity: 0.7; max-width: 360px; }
.footer-mail {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--ember); margin-top: 4px;
}
.footer-mail:hover { color: var(--bg-paper); }
.footer-col h4 {
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0;
  color: rgba(244,234,216,0.55); font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; opacity: 0.85; transition: color 0.2s ease, opacity 0.2s ease; }
.footer-col a:hover { color: var(--ember); opacity: 1; }
.footer-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(244,234,216,0.55);
  font-family: var(--font-body);
}

.footer-other {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px dashed rgba(244,234,216,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-other-label {
  color: rgba(244,234,216,0.5);
  font-weight: 500;
}
.footer-other a {
  font-family: var(--font-mono);
  color: var(--ember);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.footer-other a:hover { color: var(--bg-paper); }
.footer-other-sep { color: rgba(244,234,216,0.3); }

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { gap: 32px; padding-top: 120px; padding-bottom: 80px; }
  .step, .step.reverse { grid-template-columns: 1fr; gap: 24px; }
  .step.reverse .step-text { order: 1; }
  .step.reverse .step-img-wrap { order: 2; }
  .pillars { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service { border-left: none !important; border-bottom: 1px solid var(--line-strong) !important; }
  .services-grid .service:not(:nth-child(2n)) { border-left: 1px solid var(--line-strong) !important; }
  .plans { grid-template-columns: 1fr; gap: 16px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; gap: 18px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  .nav { padding: 16px var(--pad-x); }
  .nav-name { font-size: 18px; }
  .nav-logo { width: 32px; height: 32px; font-size: 14px; }
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
  .hero-pill { font-size: 12px; padding: 6px 12px; margin-bottom: 24px; }
  .hero-buttons { gap: 10px; margin-bottom: 24px; }
  .hero-buttons .btn { padding: 14px 20px; font-size: 14px; flex: 1; min-width: 0; justify-content: center; }
  .hero-stats { max-width: 100%; justify-self: stretch; }
  .hero-stat { padding: 0 12px; }
  .hero-stat-l { font-size: 11px; }
  .hero-scroll { display: none; }

  .marquee-track { gap: 32px; }

  .steps-header { margin-bottom: 48px; }
  .steps-list { gap: 56px; }
  .step-tag { font-size: 11px; padding: 5px 12px; }
  .step-img.tilt-l, .step-img.tilt-r { transform: none; }

  .services-head, .work-head, .testimonials-head, .pricing-head, .philosophy-head { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service { border-left: none !important; }
  .service { padding: 28px; }
  .pillar { padding: 28px 24px; }
  .plan { padding: 28px 22px; }
  .work-grid { grid-template-columns: 1fr; gap: 32px; }
  .t-card:nth-child(n) { transform: none; }
  .faq-q { padding: 18px 0; font-size: 15.5px; }

  .cta { padding: 72px var(--pad-x); }
  .cta-buttons .btn { flex: 1; justify-content: center; min-width: 0; }

  .footer { padding: 56px var(--pad-x) 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
}
