@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #F8F5F0;
  --bg-s:        #F0EDE8;
  --bg-e:        #FFFFFF;
  --bg-h:        #EDE9E2;
  --orange:      #E8731A;
  --orange-l:    #F5892E;
  --orange-d:    #C05E0D;
  --orange-dim:  rgba(232,115,26,.10);
  --orange-glow: rgba(232,115,26,.18);
  --text:        #1A1714;
  --text-2:      #5C5751;
  --text-3:      #9C9790;
  --border:      #E2DDD6;
  --border-l:    #D4CEC6;
  --radius:      10px;
  --radius-lg:   18px;
  --font-d:      'Barlow Condensed', sans-serif;
  --font-b:      'DM Sans', sans-serif;
  --ease:        cubic-bezier(.22,1,.36,1);
  --container:   1200px;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
.d1 { font-family: var(--font-d); font-size: clamp(36px,4.5vw,62px); font-weight: 800; line-height: 1; letter-spacing: -.01em; text-transform: uppercase; }
.d2 { font-family: var(--font-d); font-size: clamp(26px,3.2vw,44px); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; }
.d3 { font-family: var(--font-d); font-size: clamp(20px,2.5vw,30px); font-weight: 700; line-height: 1.15; letter-spacing: 0em; text-transform: uppercase; }
.label { font-family: var(--font-d); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.body-lg { font-size: 18px; line-height: 1.75; color: var(--text-2); }
.body-sm { font-size: 14px; line-height: 1.65; color: var(--text-2); }

/* ─── NAV ─────────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,245,240,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em; color: var(--text);
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .8; }
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-top { font-size: 13px; letter-spacing: .04em; color: var(--orange); }
.nav-logo .logo-btm { font-size: 17px; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  font-family: var(--font-d); font-size: 15px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--text-2);
  padding: 8px 14px; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-e); }
.nav-links a.active { color: var(--text); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: ''; display: block; width: 0; height: 0; border: 4px solid transparent; border-top-color: currentColor; margin-top: 2px; transition: transform .2s; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-e); border: 1px solid var(--border-l);
  border-radius: var(--radius); padding: 8px; min-width: 240px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: none; }
.nav-dropdown-menu a {
  display: block; padding: 8px 12px; font-size: 14px; border-radius: 6px;
  color: var(--text-2);
}
.nav-dropdown-menu a:hover { color: var(--text); background: var(--bg-h); }
.nav-cta {
  font-family: var(--font-d); font-size: 15px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  background: var(--orange); color: #fff;
  padding: 10px 20px; border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover { background: var(--orange-l); transform: translateY(-1px); box-shadow: 0 4px 16px var(--orange-glow); }
.nav-cta:active { transform: translateY(0); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav-mobile { display: none; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-weight: 700; font-size: 15px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  transition: transform .15s var(--ease), box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 2px 12px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-l); box-shadow: 0 6px 24px var(--orange-glow); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-l);
}
.btn-secondary:hover { background: var(--bg-e); border-color: var(--text-3); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,115,26,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--orange); }
.hero-heading { margin-bottom: 24px; }
.hero-heading mark {
  background: none; color: var(--orange);
  -webkit-text-stroke: 0;
}
.hero-body { font-size: 18px; line-height: 1.75; color: var(--text-2); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item .num {
  font-family: var(--font-d); font-size: 28px; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.hero-trust-item .txt { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ─── LEAD FORM CARD ──────────────────────────────────────── */
.lead-card {
  background: var(--bg-e);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.07);
  position: relative;
}
.lead-card::before {
  content: '';
  position: absolute; top: 0; left: 32px; right: 32px; height: 2px;
  background: var(--orange); border-radius: 0 0 2px 2px;
}
.lead-card-title {
  font-family: var(--font-d); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 6px;
}
.lead-card-sub { font-size: 13px; color: var(--text-2); margin-bottom: 24px; }

/* ─── FORM ────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--text-2);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-s); border: 1px solid var(--border-l);
  color: var(--text); font-family: var(--font-b); font-size: 15px;
  padding: 12px 16px; border-radius: var(--radius);
  outline: none; transition: border-color .2s, box-shadow .2s;
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-upload {
  border: 1px dashed var(--border-l); border-radius: var(--radius);
  padding: 16px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.form-upload:hover { border-color: var(--orange); background: var(--orange-dim); }
.form-upload-label {
  font-size: 12px; color: var(--text-3);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.form-upload-label svg { width: 20px; height: 20px; color: var(--orange); }
.form-upload-label span { color: var(--orange); }
.form-upload input[type="file"] { display: none; }

/* ─── SECTION BASE ────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header .label { margin-bottom: 12px; }
.section-heading { margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--text-2); max-width: 640px; line-height: 1.7; }
.section-header.centered .section-sub { margin: 0 auto; }

/* divider line */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── SERVICE GRID ────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--bg-e);
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: background .25s, border-color .25s;
}
.service-card:hover { background: var(--bg-h); border-color: var(--border-l); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--orange-dim); border: 1px solid var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  transition: background .25s;
}
.service-card:hover .service-card-icon { background: rgba(232,115,26,.18); }
.service-card-icon svg { width: 22px; height: 22px; color: var(--orange); }
.service-card-title {
  font-family: var(--font-d); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 10px; color: var(--text); line-height: 1.1;
}
.service-card-desc {
  font-size: 13px; color: var(--text-2); line-height: 1.65; flex: 1;
}
.service-card-link {
  margin-top: 24px;
  font-family: var(--font-d); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 12px; height: 12px; }
@media(max-width:900px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .services-grid{ grid-template-columns: 1fr; } }

/* ─── PROCESS STEPS ───────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 1px; background: var(--border-l);
}
.step-item { padding: 0 16px; text-align: center; }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-e); border: 1px solid var(--border-l);
  font-family: var(--font-d); font-size: 32px; font-weight: 800; color: var(--orange);
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  transition: background .3s, border-color .3s;
}
.step-item:hover .step-num { background: var(--orange-dim); border-color: var(--orange); }
.step-title {
  font-family: var(--font-d); font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.review-card {
  background: var(--bg-s); padding: 28px;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}
.review-card:hover { background: var(--bg-e); border-color: var(--border-l); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 16px; height: 16px; fill: var(--orange); }
.review-text { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-e); border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 14px; font-weight: 700; color: var(--orange);
}
.review-name { font-size: 13px; font-weight: 600; color: var(--text); }
.review-date { font-size: 12px; color: var(--text-3); }

/* ─── PAGE HERO (subpages) ─────────────────────────────────── */
.page-hero {
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 60% at 30% 50%, rgba(232,115,26,.06) 0%, transparent 70%);
}
.page-hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
}
.page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero-eyebrow-line { width: 32px; height: 2px; background: var(--orange); }
.page-hero h1 { margin-bottom: 20px; }
.page-hero-body { font-size: 17px; color: var(--text-2); line-height: 1.75; margin-bottom: 28px; max-width: 560px; }
.page-hero-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  display: none; /* Images replaced by placeholder */
}
.page-hero-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-e); border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 13px;
}

/* ─── CONTENT SECTION (article body) ─────────────────────── */
.content-section { padding: 80px 0; border-top: 1px solid var(--border); }
.content-section:first-child { border-top: none; }
.content-wrap { max-width: 760px; }
.content-h2 {
  font-family: var(--font-d); font-size: clamp(20px,2.5vw,28px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 16px; color: var(--text);
}
.content-h3 {
  font-family: var(--font-d); font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  margin: 28px 0 10px; color: var(--orange);
}
.content-p { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.content-p:last-child { margin-bottom: 0; }
.content-p a { color: var(--orange); border-bottom: 1px solid var(--orange-dim); }
.content-p a:hover { border-color: var(--orange); }
.content-p strong { color: var(--text); font-weight: 600; }

/* ─── TWO-COL LAYOUT (sidebar pages) ─────────────────────── */
.two-col-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 64px; align-items: start;
}
.sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--bg-e); border: 1px solid var(--border-l);
  border-radius: var(--radius-lg); padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card-title {
  font-family: var(--font-d); font-size: 18px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 16px;
}
.trust-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.trust-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); }
.trust-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg-s); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-d); font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -.01em; color: var(--text);
  cursor: pointer; transition: background .2s;
  gap: 16px;
}
.faq-question:hover { background: var(--bg-e); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: var(--bg-e); border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--orange); transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--orange-dim); border-color: var(--orange); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-2); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ─── STATS ROW ───────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.stat-block {
  background: var(--bg-s); padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
}
.stat-num {
  font-family: var(--font-d); font-size: 64px; font-weight: 900;
  color: var(--orange); line-height: 1; letter-spacing: -.03em;
}
.stat-label { font-size: 14px; color: var(--text-2); margin-top: 8px; max-width: 180px; margin-left: auto; margin-right: auto; }

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-s); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 80% 50%, rgba(232,115,26,.06) 0%, transparent 60%);
}
.cta-band-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 64px; align-items: start;
  position: relative;
}
.cta-band-heading { margin-bottom: 16px; }
.cta-band-sub { font-size: 17px; color: var(--text-2); line-height: 1.75; max-width: 480px; }

/* ─── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: var(--bg-s);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-size: 18px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 16px; color: var(--text);
}
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo .logo-top { font-size: 11px; letter-spacing: .04em; color: var(--orange); }
.footer-logo .logo-btm { font-size: 15px; }
.footer-desc { font-size: 13px; color: var(--text-3); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { font-size: 13px; color: var(--text-2); display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: var(--orange); }
.footer-col-title {
  font-family: var(--font-d); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-2); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); transition: color .2s; }
.footer-bottom a:hover { color: var(--text-2); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ─── ORANGE ACCENT LINE ──────────────────────────────────── */
.orange-line { color: var(--orange); }

/* ─── ABOUT GRID ──────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap {
  aspect-ratio: 4/5;
  background: var(--bg-e); border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 13px;
  position: relative; overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, var(--orange-dim) 0%, transparent 60%);
}

/* ─── FEATURE LIST ────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.feature-item { display: flex; gap: 16px; }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius);
  background: var(--orange-dim); border: 1px solid var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--orange); }
.feature-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ─── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-3);
  padding: 16px 0; margin-bottom: 0;
}
.breadcrumb a { color: var(--text-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--text-3); }

/* ─── ORANGE HIGHLIGHT ────────────────────────────────────── */
.highlight { color: var(--orange); }
.underline-orange {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

/* ─── PLACEHOLDER IMG ─────────────────────────────────────── */
.img-placeholder {
  background: var(--bg-e); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 12px;
  overflow: hidden; position: relative;
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }

/* ─── SCROLL ANIMATION ────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stats-row { grid-template-columns: 1fr 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-band-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-mobile.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg-s); padding: 24px;
    z-index: 99; overflow-y: auto; gap: 4px;
  }
  .nav-mobile a {
    font-family: var(--font-d); font-size: 18px; font-weight: 700;
    text-transform: uppercase; padding: 14px 16px; border-radius: var(--radius);
    color: var(--text-2); display: block;
  }
  .nav-mobile a:hover { color: var(--text); background: var(--bg-e); }
  .nav-mobile .nav-cta {
    display: block; text-align: center; margin-top: 16px;
    background: var(--orange); color: #fff; padding: 14px;
  }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-trust { gap: 20px; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
