/* ═══════════════════════════════════════════
   ASASI MEDIA — Stylesheet
   ═══════════════════════════════════════════ */

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

:root {
  --green:      #0B3D2E;
  --green-mid:  #14533d;
  --green-dark: #07281e;
  --beige:      #D8C3A5;
  --beige-lt:   #e8d8bf;
  --beige-dim:  rgba(216,195,165,0.55);
  --offwhite:   #F8F6F2;
  --charcoal:   #111111;
  --black:      #000000;
  --font:       'Cairo', sans-serif;
  --ease:       cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }
img { display: block; max-width: 100%; }

/* ─── UTILITIES ─────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
.text-offwhite { color: var(--offwhite); }
.text-beige    { color: var(--beige); }
.text-beige-muted { color: var(--beige-dim); }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.85;
  margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(26px, 2.8vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
}
.section-p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(17,17,17,0.6);
  max-width: 560px;
  margin-top: 14px;
}

/* ─── SCROLL REVEAL ─────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="delay1"].revealed { transition-delay: 0.12s; }
[data-reveal="delay2"].revealed { transition-delay: 0.24s; }
[data-reveal="delay3"].revealed { transition-delay: 0.36s; }

/* ─── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px; border-radius: 50px;
  font-size: 16px; font-weight: 700; border: none;
  transition: all 0.3s var(--ease);
}
.btn-primary { background: var(--beige); color: var(--green-dark); }
.btn-primary:hover { background: var(--beige-lt); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.btn-ghost { background: transparent; color: var(--offwhite); border: 1.5px solid rgba(248,246,242,0.3); }
.btn-ghost:hover { border-color: var(--beige); color: var(--beige); background: rgba(216,195,165,0.07); }
.btn-lg { padding: 20px 52px; font-size: 18px; }
.btn-sm { padding: 10px 24px; font-size: 14px; }

/* ─── NAV ───────────────────────────────── */
#nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  transition: background 0.4s var(--ease), padding 0.35s var(--ease), backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(7,40,30,0.92);
  backdrop-filter: blur(24px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(216,195,165,0.1);
}
.nav-logo { font-size: 22px; font-weight: 900; color: var(--offwhite); letter-spacing: -0.5px; }
.nav-logo span { color: var(--beige); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: rgba(248,246,242,0.65); font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--beige); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--beige); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--green); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--offwhite); font-size: 28px; font-weight: 700; }
.mobile-menu .btn { margin-top: 16px; }

/* ─── HERO ──────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--green);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 920px; margin-top: -40px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(216,195,165,0.1); border: 1px solid rgba(216,195,165,0.22);
  border-radius: 50px; padding: 8px 20px;
  color: var(--beige); font-size: 13px; font-weight: 500;
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.badge-dot { width: 7px; height: 7px; background: var(--beige); border-radius: 50%; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(46px, 7vw, 96px); font-weight: 900;
  color: var(--offwhite); line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero h1 .text-beige { color: var(--beige); }
.hero p {
  font-size: clamp(16px, 1.8vw, 20px); color: rgba(248,246,242,0.65);
  line-height: 1.75; max-width: 680px; margin: 0 auto 32px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Stats bar */
.stats-bar {
  position: absolute; bottom: 0; inset-inline: 0; z-index: 2;
  display: flex; align-items: stretch;
  background: rgba(7,40,30,0.75); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(216,195,165,0.12);
}
.stat-item {
  flex: 1; text-align: center;
  padding: 18px 16px;
  border-inline-end: 1px solid rgba(216,195,165,0.12);
}
.stat-item:last-child { border-inline-end: none; }
.stat-num {
  display: block; font-size: clamp(26px, 2.5vw, 38px); font-weight: 900;
  color: var(--beige); line-height: 1; letter-spacing: -1px; direction: ltr;
}
.stat-label {
  display: block; font-size: 13px; color: rgba(248,246,242,0.45);
  font-weight: 400; margin-top: 4px;
}

/* ─── ABOUT ─────────────────────────────── */
.about { background: var(--offwhite); padding: 80px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.about-text .section-h2 { color: var(--charcoal); margin-top: 4px; }
.about-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(17,17,17,0.08);
  border: 1px solid rgba(17,17,17,0.08);
}
.about-item {
  background: var(--offwhite); padding: 20px 18px;
  transition: background 0.25s;
}
.about-item:hover { background: #eeebe4; }
.about-icon {
  font-size: 20px; font-weight: 900; color: var(--green);
  opacity: 0.3; line-height: 1; margin-bottom: 10px; direction: ltr;
}
.about-item h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.about-item p { font-size: 13px; color: rgba(17,17,17,0.5); line-height: 1.6; }

/* ─── WHY / FOUNDATION ──────────────────── */
.why {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, #0e2e1f 0%, #0a0f0c 60%);
  padding: 80px 0; position: relative; overflow: hidden;
  text-align: center;
}
.why-header { margin-bottom: 48px; }
.foundation-stage {
  position: relative; width: 480px; height: 480px;
  margin: 0 auto;
}
.foundation-svg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  animation: hexSpin 40s linear infinite;
}
@keyframes hexSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.foundation-inner {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; z-index: 2; pointer-events: none;
}
.foundation-inner span {
  display: block; font-size: 18px; font-weight: 900; letter-spacing: 4px;
  text-transform: uppercase;
}
.foundation-inner span:first-child { color: var(--offwhite); }
.foundation-inner span:last-child  { color: var(--beige); opacity: 0.85; font-size: 13px; letter-spacing: 5px; margin-top: 4px; }

/* Foundation floating labels */
.f-labels { position: absolute; inset: 0; pointer-events: none; }
.fl {
  position: absolute; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(216,195,165,0.75);
  display: flex; align-items: center; gap: 6px;
}
.fl::before { content: '◆'; font-size: 6px; color: var(--beige); opacity: 0.5; }
.fl-top    { top: 4%;   left: 50%; transform: translateX(-50%); }
.fl-tr     { top: 18%;  right: 6%; }
.fl-br     { bottom: 18%; right: 6%; }
.fl-bot    { bottom: 4%; left: 50%; transform: translateX(-50%); }
.fl-bl     { bottom: 18%; left: 6%; }
.fl-tl     { top: 18%;  left: 6%; }

/* ─── SYSTEM ────────────────────────────── */
.system { background: var(--offwhite); padding: 80px 0; }
.system-header { margin-bottom: 36px; }
.system-header .section-h2 { color: var(--charcoal); }
.system-header .section-tag { color: var(--green); opacity: 1; }
.system-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(17,17,17,0.08);
}
.system-step {
  padding: 28px 22px;
  border-inline-end: 1px solid rgba(17,17,17,0.08);
  border-top: 1px solid rgba(17,17,17,0.08);
  transition: background 0.25s;
  position: relative;
}
.system-step:hover { background: #eeebe4; }
.system-step:nth-child(-n+4) { border-top: none; }
.system-step:nth-child(4n) { border-inline-end: none; }
.step-num {
  font-size: 36px; font-weight: 900; color: var(--green);
  opacity: 0.12; line-height: 1; margin-bottom: 12px; direction: ltr;
}
.step-body h3 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.step-body p  { font-size: 12px; color: rgba(17,17,17,0.45); line-height: 1.6; }

/* ─── SERVICES ──────────────────────────── */
.services { background: var(--green); padding: 80px 0; }
.services-header { margin-bottom: 36px; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(216,195,165,0.08);
}
.service-card {
  background: var(--green); padding: 40px 32px;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(216,195,165,0.07);
  transition: background 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; inset-inline-start: 0;
  width: 0; height: 2px; background: var(--beige);
  transition: width 0.4s var(--ease);
}
.service-card:hover { background: var(--green-mid); }
.service-card:hover::after { width: 100%; }
.service-card.featured { grid-column: span 2; min-height: 200px; flex-direction: row; align-items: flex-end; gap: 32px; }
.service-num {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--beige); opacity: 0.5; margin-bottom: 16px; direction: ltr;
}
.service-card.featured .service-num { margin-bottom: 0; }
.service-card h3 {
  font-size: 24px; font-weight: 900; color: var(--offwhite);
  line-height: 1.1; margin-bottom: 12px; letter-spacing: -0.3px;
}
.service-card.featured h3 { font-size: 34px; flex: 1; }
.service-card p  { font-size: 16px; color: var(--beige-dim); line-height: 1.6; flex: 1; }
.service-card.featured p { max-width: 460px; font-size: 18px; flex: none; align-self: flex-end; }
.service-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(216,195,165,0.3); color: var(--beige);
  font-size: 20px; transition: all 0.3s;
  margin-top: 20px; align-self: flex-start;
}
.service-card:hover .service-arrow { background: var(--beige); color: var(--green-dark); border-color: var(--beige); }

/* ─── RESULTS ───────────────────────────── */
.results { background: var(--black); padding: 80px 0; }
.results-header { margin-bottom: 40px; }
.results-header .section-tag { color: var(--beige); }
.results-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.06);
}
.result-stat {
  padding: 48px 36px;
  border-inline-end: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.result-stat:last-child { border-inline-end: none; }
.result-num {
  display: block;
  font-size: clamp(44px, 5vw, 72px); font-weight: 900;
  color: var(--offwhite); line-height: 1;
  letter-spacing: -2px; margin-bottom: 20px; direction: ltr;
}
.result-label { font-size: 14px; color: rgba(248,246,242,0.35); font-weight: 400; }

/* ─── WORK ──────────────────────────────── */
.work { background: var(--offwhite); padding: 80px 0; }
.work-header { margin-bottom: 36px; }
.work-header .section-h2 { color: var(--charcoal); }
.work-header .section-tag { color: var(--green); opacity: 1; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.work-card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(17,17,17,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.work-num {
  position: absolute; top: 24px; inset-inline-end: 24px;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--beige); z-index: 2; direction: ltr;
}
.work-thumb {
  height: 200px;
  background:
    repeating-linear-gradient(45deg, rgba(11,61,46,0.04), rgba(11,61,46,0.04) 2px, transparent 2px, transparent 14px),
    var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 3px; color: rgba(216,195,165,0.25);
  text-transform: uppercase; font-weight: 700;
  transition: background-color 0.3s;
}
.work-card:hover .work-thumb { background-color: var(--green-mid); }
.work-info { padding: 18px 22px; background: var(--offwhite); }
.work-info h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }
.work-info p  { font-size: 13px; color: var(--green); font-weight: 600; }

/* ─── CASE STUDY (featured) ─────────────── */
.case-study {
  display: grid; grid-template-columns: 1.05fr 1fr;
  border: 1px solid rgba(17,17,17,0.1);
  background: var(--offwhite);
  margin-bottom: 24px;
  overflow: hidden;
}
.case-study.reverse { grid-template-columns: 1fr 1.05fr; }
.case-study.reverse .case-media { order: 2; }
.case-study.reverse .case-text  { order: 1; }
.case-media {
  position: relative;
  background: var(--green-dark);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
}
.case-media .work-num { top: 22px; inset-inline-end: 26px; }
.case-media img {
  width: 100%; border-radius: 8px;
  border: 1px solid rgba(216,195,165,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.case-media img.zoomable { cursor: zoom-in; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.case-media img.zoomable:hover { transform: scale(1.015); box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.zoom-hint {
  position: absolute; top: 22px; inset-inline-start: 26px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(216,195,165,0.14); border: 1px solid rgba(216,195,165,0.25);
  color: var(--beige); font-size: 11px; font-weight: 600;
  padding: 5px 11px; border-radius: 50px; pointer-events: none;
  backdrop-filter: blur(8px); z-index: 3;
}
.case-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(216,195,165,0.14);
}
.case-metric {
  text-align: center; padding: 16px 10px;
  border-inline-end: 1px solid rgba(216,195,165,0.14);
}
.case-metric:last-child { border-inline-end: none; }
.case-metric strong {
  display: block; font-size: 24px; font-weight: 900;
  color: var(--beige); line-height: 1; direction: ltr; letter-spacing: -0.5px;
}
.case-metric span { display: block; font-size: 11px; color: rgba(248,246,242,0.45); margin-top: 6px; }

.case-text { padding: 44px 42px; }
.case-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px; direction: ltr;
}
.case-text h3 {
  font-size: clamp(24px, 2.4vw, 34px); font-weight: 900;
  color: var(--charcoal); line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.case-text p {
  font-size: 14px; line-height: 1.85; color: rgba(17,17,17,0.62);
  margin-bottom: 14px;
}
.case-text p strong { color: var(--charcoal); font-weight: 700; }
.case-points {
  margin: 0 0 14px; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.case-points li {
  position: relative; padding-inline-start: 20px;
  font-size: 13.5px; line-height: 1.6; color: rgba(17,17,17,0.62);
}
.case-points li::before {
  content: '◆'; position: absolute; inset-inline-start: 0; top: 1px;
  font-size: 8px; color: var(--green); opacity: 0.55;
}
.case-quote {
  margin-top: 22px; padding: 22px 24px;
  background: var(--green); border-radius: 10px;
}
.case-quote p {
  margin: 0; font-size: 15px; line-height: 1.7;
  color: var(--offwhite); font-weight: 600;
}
.case-quote p::after { content: none; }

/* Best-angles sub-block */
.case-angles {
  margin: 18px 0;
  border: 1px solid rgba(11,61,46,0.14);
  border-radius: 10px; overflow: hidden;
}
.case-angles-title {
  display: block; padding: 12px 18px;
  background: rgba(11,61,46,0.06);
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--green);
  border-bottom: 1px solid rgba(11,61,46,0.1);
}
.angle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(11,61,46,0.07);
}
.angle-row:last-child { border-bottom: none; }
.angle-row span   { font-size: 13.5px; color: rgba(17,17,17,0.7); direction: ltr; }
.angle-row strong { font-size: 14px; font-weight: 800; color: var(--green); direction: ltr; }

@media (max-width: 900px) {
  .case-study, .case-study.reverse { grid-template-columns: 1fr; }
  .case-study.reverse .case-media { order: 0; }
  .case-study.reverse .case-text  { order: 0; }
  .case-media { padding: 24px; }
  .case-text  { padding: 32px 26px; }
}

/* ─── LIGHTBOX ──────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,16,12,0.92); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px; cursor: zoom-out;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 95%; max-height: 90vh;
  border-radius: 10px;
  border: 1px solid rgba(216,195,165,0.25);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.94); transition: transform 0.35s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 28px; inset-inline-end: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(216,195,165,0.12); border: 1px solid rgba(216,195,165,0.3);
  color: var(--beige); font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
}
.lightbox-close:hover { background: var(--beige); color: var(--green-dark); border-color: var(--beige); }

/* ─── TESTIMONIALS ──────────────────────── */
.testimonials { background: var(--green); padding: 80px 0; }
.testimonials-header { margin-bottom: 36px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(216,195,165,0.08); }
.testi-card {
  background: rgba(7,40,30,0.6);
  border: 1px solid rgba(216,195,165,0.07);
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(14,55,40,0.8); }
.testi-video {
  position: relative; height: 220px; overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, rgba(216,195,165,0.03), rgba(216,195,165,0.03) 2px, transparent 2px, transparent 12px),
    rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
}
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(216,195,165,0.15); border: 1.5px solid rgba(216,195,165,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.play-btn:hover { background: var(--beige); border-color: var(--beige); }
.play-btn svg {
  width: 18px; height: 18px;
  fill: var(--beige); stroke: none;
  transform: translateX(2px);
}
.play-btn:hover svg { fill: var(--green-dark); }
.testi-body { padding: 24px 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.testi-body > p {
  font-size: 14px; color: rgba(248,246,242,0.8); line-height: 1.7;
  font-style: italic; flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(216,195,165,0.12); border: 1.5px solid rgba(216,195,165,0.25);
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--offwhite); }
.testi-author span  { display: block; font-size: 11px; color: var(--beige-dim); margin-top: 1px; }

/* ─── FAQ ───────────────────────────────── */
.faq { background: var(--offwhite); padding: 80px 0; }
.faq-header { margin-bottom: 0; }
.faq-header .section-h2 { color: var(--charcoal); }
.faq-header .section-tag { color: var(--green); opacity: 1; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 56px; align-items: start; }
.faq-list { border-top: 1px solid rgba(17,17,17,0.1); }
.faq-item { border-bottom: 1px solid rgba(17,17,17,0.1); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; gap: 16px;
  text-align: start;
}
.faq-q span { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(17,17,17,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--charcoal); transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--green); color: var(--offwhite); border-color: var(--green); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 0 18px; font-size: 14px; line-height: 1.7; color: rgba(17,17,17,0.6); }

/* ─── FOOTER CTA ────────────────────────── */
.footer-cta {
  background: var(--green); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute; top: -1px; inset-inline: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,195,165,0.3), transparent);
}
.footer-cta-inner { max-width: 700px; margin: 0 auto; }
.footer-cta .section-h2 { margin-bottom: 12px; }
.footer-cta .text-beige-muted { font-size: 16px; margin-bottom: 28px; display: block; }

/* ─── FOOTER ────────────────────────────── */
.footer {
  background: #060e0a; padding: 44px 0 24px;
  border-top: 1px solid rgba(216,195,165,0.08);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; margin-bottom: 32px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(248,246,242,0.35); max-width: 280px; line-height: 1.6; }
.footer-links ul { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 14px; color: rgba(248,246,242,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--beige); }
.footer-bottom {
  border-top: 1px solid rgba(216,195,165,0.06);
  padding-top: 28px;
}
.footer-bottom p { font-size: 13px; color: rgba(248,246,242,0.2); }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .system-steps { grid-template-columns: repeat(2, 1fr); }
  .system-step:nth-child(-n+4) { border-top: 1px solid rgba(17,17,17,0.08); }
  .system-step:nth-child(-n+2) { border-top: none; }
  .system-step:nth-child(4n)   { border-inline-end: 1px solid rgba(17,17,17,0.08); }
  .system-step:nth-child(2n)   { border-inline-end: none; }
}

@media (max-width: 900px) {
  section { padding: 64px 0; }
  .about-grid    { grid-template-columns: 1fr; gap: 52px; }
  .testi-grid    { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: 1fr; }
  .result-stat   { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .result-stat:last-child { border-bottom: none; }
  .faq-layout    { grid-template-columns: 1fr; gap: 48px; }
  .work-grid     { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { flex-direction: column; }
  .foundation-stage { width: 100%; max-width: 440px; height: 440px; }
  .foundation-svg { width: 280px; height: 280px; }
  .fl { font-size: 10px; }
}

@media (max-width: 768px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-links, #nav > .btn { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 24px; }
  .stats-bar { position: relative; bottom: auto; flex-direction: column; }
  .stat-item { border-inline-end: none; border-bottom: 1px solid rgba(216,195,165,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .hero { min-height: calc(100vh - 0px); padding-bottom: 0; }
  .hero-content { margin-top: -20px; }
  .system-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 36px; }
}

@media (max-width: 560px) {
  .system-steps { grid-template-columns: 1fr; }
  .system-step:nth-child(n) { border-inline-end: none; }
  .system-step:nth-child(n) { border-top: 1px solid rgba(17,17,17,0.08); }
  .system-step:first-child  { border-top: none; }
  .about-items { grid-template-columns: 1fr; }
}
