/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --primary:      #e8470a;
  --accent:       #ff6b2b;
  --bg:           #ffffff;
  --bg-light:     #f6f6f6;
  --bg-dark:      #0a0a0a;
  --bg-dark2:     #0f0f0f;
  --text:         #0f0f0f;
  --text-muted:   #6b6b6b;
  --border:       rgba(0,0,0,0.08);
  --border-dark:  rgba(255,255,255,0.08);
  --radius:       2px;
  --font-head:    'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

/* ── Utility ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.eyebrow { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); margin-bottom: .75rem; }
.section-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em; line-height: 1.1; }
.section-body { color: var(--text-muted); line-height: 1.75; font-size: .9375rem; }
.accent { color: var(--primary); }
.hidden { display: none !important; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: 1rem 1.75rem; border-radius: var(--radius); font-weight: 600; font-size: .9375rem; border: none; cursor: pointer; transition: background .2s, border-color .2s, color .2s; text-decoration: none; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--accent); }
.btn--ghost { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25); }
.btn--ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--dark-ghost { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.15); }
.btn--dark-ghost:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s; background: rgba(10,10,10,.8); backdrop-filter: blur(8px); }
.navbar.scrolled { background: rgba(10,10,10,.95); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar__logo img { height: 52px; width: auto; object-fit: contain; }
.navbar__nav { display: flex; align-items: center; gap: 2rem; }
.navbar__link { color: rgba(255,255,255,.6); font-size: .875rem; font-weight: 500; transition: color .2s; }
.navbar__link:hover, .navbar__link--active { color: #fff; }
.navbar__cta { display: flex; align-items: center; gap: .75rem; }
.navbar__phone { color: rgba(255,255,255,.5); font-size: .875rem; margin-right: .5rem; transition: color .2s; }
.navbar__phone:hover { color: #fff; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.navbar__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s; }
.mobile-menu { display: none; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.06); padding: 1.5rem 2.5rem; flex-direction: column; gap: 1.25rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button { color: rgba(255,255,255,.8); font-size: 1rem; font-weight: 500; background: none; border: none; text-align: left; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--bg-dark); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, #0a0a0a, rgba(10,10,10,.8) 60%, transparent); }
.hero__accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary); }
.hero__content { position: relative; z-index: 1; padding: 9rem 0 5rem; max-width: 720px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem .75rem; border: 1px solid rgba(232,71,10,.4); border-radius: var(--radius); margin-bottom: 2rem; }
.hero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.hero__eyebrow-text { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); }
.hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -.03em; line-height: 1.05; color: #fff; margin-bottom: 1.5rem; }
.hero__body { color: rgba(255,255,255,.7); font-size: 1.125rem; line-height: 1.7; max-width: 560px; margin-bottom: 2.5rem; }
.hero__highlights { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 2.5rem; }
.hero__highlight { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.8); font-size: .875rem; }
.hero__highlight-icon { color: var(--primary); font-size: 1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__fade { position: absolute; bottom: 0; left: 0; right: 0; height: 6rem; background: linear-gradient(to top, var(--bg), transparent); }

/* ── Stats ──────────────────────────────────────────────────────────────────── */
.stats { background: var(--bg-dark2); padding: 3.5rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: none; }

/* Mobile: stack stats and show horizontal separators instead of vertical */
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 1.25rem 1rem; }
  .stats__item:last-child { border-bottom: none; }
}
.stats__item {
  padding: 2.5rem 2rem;
  border-top: none;
  border-bottom: none;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stats__item:last-child { border-right: none; }
.stats__value { font-family: var(--font-head); font-weight: 800; font-size: 2.75rem; letter-spacing: -.04em; line-height: 1; color: var(--primary); margin-bottom: .25rem; }
.stats__label { color: rgba(255,255,255,.5); font-size: .875rem; }

/* ── Section base ───────────────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section--light { background: var(--bg-light); }
.section--dark { background: var(--bg-dark2); }
.section__header { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.section__header-desc { color: var(--text-muted); max-width: 320px; font-size: .9375rem; line-height: 1.7; }

/* ── Services ───────────────────────────────────────────────────────────────── */
.services__tabs { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
.tab-btn { display: flex; align-items: center; gap: .5rem; padding: .75rem 1.25rem; font-size: .875rem; font-weight: 500; background: none; border: none; border-bottom: 2px solid transparent; color: var(--text-muted); margin-bottom: -1px; transition: color .2s, border-color .2s; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--text); border-bottom-color: var(--primary); font-weight: 600; }
.tab-btn svg { width: 14px; height: 14px; }
.services__panel { display: none; }
.services__panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.service__eyebrow { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); margin-bottom: .75rem; }
.service__title { font-family: var(--font-head); font-weight: 700; font-size: 1.75rem; letter-spacing: -.025em; line-height: 1.2; margin-bottom: 1.25rem; }
.service__body { color: var(--text-muted); line-height: 1.75; font-size: .9375rem; margin-bottom: 2rem; }
.service__points { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 2.5rem; }
.service__point { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; line-height: 1.5; }
.service__point::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); margin-top: .45rem; flex-shrink: 0; }
.service__cta { display: inline-flex; align-items: center; gap: .5rem; color: var(--primary); font-size: .875rem; font-weight: 600; background: none; border: none; }
.service__img-wrap { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--bg-light); }
.service__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── About/Why us ───────────────────────────────────────────────────────────── */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about__img-wrap { position: relative; margin-top: 2.5rem; }
.about__img-wrap img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
.about__badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--primary); padding: .75rem 1rem; border-radius: var(--radius); }
.about__badge-num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1; color: #fff; }
.about__badge-label { font-size: .75rem; color: rgba(255,255,255,.8); margin-top: 2px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pillar { background: #fff; padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; }
.pillar:hover { border-color: rgba(232,71,10,.3); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.pillar__icon { width: 40px; height: 40px; background: rgba(232,71,10,.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--primary); }
.pillar__icon svg { width: 18px; height: 18px; }
.pillar__title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; margin-bottom: .75rem; }
.pillar__body { color: var(--text-muted); font-size: .875rem; line-height: 1.65; }

/* ── Process ────────────────────────────────────────────────────────────────── */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__line { position: absolute; top: 1.25rem; left: 12.5%; right: 12.5%; height: 1px; background: var(--border); }
.process__step { padding: 0 1.5rem 0; }
.process__dot { width: 40px; height: 40px; border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg); margin-bottom: 1.5rem; z-index: 1; position: relative; }
.process__num { font-family: var(--font-head); font-weight: 700; font-size: .75rem; color: var(--primary); }
.process__title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; margin-bottom: .75rem; }
.process__body { color: var(--text-muted); font-size: .875rem; line-height: 1.7; }

/* ── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials__grid { display: flex !important; gap: 1.5rem; margin-bottom: 4rem; overflow-x: auto; align-items: stretch; flex-wrap: nowrap !important; }

.testimonials__grid .tcard { flex: 0 0 auto; min-width: 320px; width: 320px; }

/* hide horizontal scrollbar on WebKit while still allowing scroll */
.testimonials__grid::-webkit-scrollbar { height: 8px; }
.testimonials__grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,.08); border-radius: 8px; }

/* Marquee behaviour for testimonials when more than 3 cards */
.testimonials__grid.rolling { display: block; overflow: hidden; position: relative; }
.testimonials__grid .marquee-track { display: flex; gap: 1.5rem; align-items: stretch; }
.testimonials__grid .marquee-track .tcard { flex: 0 0 auto; width: 320px; }
.testimonials__grid.rolling .marquee-track { animation: marquee linear infinite; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tcard { background: #fff; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; }
.tcard__stars { display: flex; gap: 2px; margin-bottom: 1.25rem; color: var(--primary); font-size: .75rem; }
.tcard__quote { color: var(--text); font-size: .9375rem; line-height: 1.75; flex: 1; margin-bottom: 1.75rem; white-space: normal; overflow-wrap: break-word; }
.tcard__footer { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.tcard__name { font-family: var(--font-head); font-weight: 600; font-size: .9375rem; }
.tcard__role { color: var(--text-muted); font-size: .875rem; margin-top: 2px; }
.clients-strip { border-top: 1px solid var(--border); padding-top: 2.5rem; text-align: center; }
.clients-strip__label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 1.75rem; }
.clients-strip__names { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.clients-strip__name { font-family: var(--font-head); font-weight: 600; font-size: .875rem; letter-spacing: .02em; color: rgba(107,107,107,.6); }

/* ── Contact ────────────────────────────────────────────────────────────────── */
.contact { background: var(--bg-dark2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem,4vw,3rem); letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 1.5rem; }
.contact__body { color: rgba(255,255,255,.6); font-size: .9375rem; line-height: 1.75; margin-bottom: 3rem; }
.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.cinfo { display: flex; align-items: flex-start; gap: 1rem; }
.cinfo__icon { width: 36px; height: 36px; background: rgba(232,71,10,.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.cinfo__icon svg { width: 15px; height: 15px; }
.cinfo__label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.cinfo__value { color: rgba(255,255,255,.85); font-size: .875rem; }
.cinfo__value a { color: rgba(255,255,255,.85); transition: color .2s; }
.cinfo__value a:hover { color: var(--primary); }
.contact__form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.25rem; }
.form-label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.form-input { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: .75rem 1rem; color: #fff; font-size: .875rem; transition: border-color .2s; outline: none; }
.form-input::placeholder { color: rgba(255,255,255,.25); }
.form-input:focus { border-color: var(--primary); }
.form-input.error { border-color: #d4183d; }
.form-error { color: #ff6b8a; font-size: .75rem; }
.form-input option { background: #1a1a1a; }
textarea.form-input { resize: none; }
.contact__success { text-align: center; padding: 3rem 1rem; }
.contact__success-icon { width: 56px; height: 56px; background: rgba(232,71,10,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--primary); font-size: 1.5rem; }
.contact__success h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: .75rem; }
.contact__success p { color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.05); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer__logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 1.25rem; }
.footer__tagline { color: rgba(255,255,255,.45); font-size: .875rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 280px; }
.footer__contact { display: block; color: rgba(255,255,255,.55); font-size: .875rem; margin-bottom: .5rem; transition: color .2s; }
.footer__contact:hover { color: var(--primary); }
.footer__heading { color: #fff; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.25rem; }
.footer__list { display: flex; flex-direction: column; gap: .75rem; }
.footer__list a {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.footer__list a:hover { color: rgba(255,255,255,.8); }

/* Center icon + text in header nav links and mobile menu */
.navbar__nav a,
.mobile-menu a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.footer__cta-banner { border: 1px solid rgba(232,71,10,.2); border-radius: var(--radius); padding: 1.75rem 2rem; margin-bottom: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; background: rgba(232,71,10,.05); flex-wrap: wrap; }
.footer__cta-banner strong { display: block; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: .25rem; }
.footer__cta-banner span { color: rgba(255,255,255,.5); font-size: .875rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer__bottom span { color: rgba(255,255,255,.25); font-size: .75rem; }
.footer__bottom a { color: rgba(255,255,255,.25); font-size: .75rem; margin-left: 1.5rem; transition: color .2s; }
.footer__bottom a:hover { color: rgba(255,255,255,.5); }

/* ── Reviews page ───────────────────────────────────────────────────────────── */
.page-hero { background: var(--bg-dark); padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.page-hero__accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary); }
.page-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(232,71,10,.12) 0%, transparent 60%); }
.page-hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,5vw,4rem); letter-spacing: -.03em; line-height: 1.05; color: #fff; margin-bottom: 1.25rem; }
.page-hero__body { color: rgba(255,255,255,.6); font-size: 1.0625rem; line-height: 1.7; max-width: 560px; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; /*! align-items: center; */ }

.hero-stat__value { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; letter-spacing: -.04em; line-height: 1; color: var(--primary); }
.hero-stat__value.white { color: #fff; }
.hero-stat__stars { display: flex; gap: 2px; margin: .375rem 0 .25rem; color: var(--primary); font-size: .75rem; }
.hero-stat__label { color: rgba(255,255,255,.4); font-size: .75rem; }
.hero-divider { width: 1px; height: 3rem; background: rgba(255,255,255,.1); }
.reviews-layout { display: grid; grid-template-columns: 340px 1fr; gap: 3.5rem; padding: 5rem 0; }
.reviews-form-wrap { position: sticky; top: 6rem; align-self: start; }
.reviews-form-wrap h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; margin-bottom: .5rem; }
.reviews-form-wrap p { color: var(--text-muted); font-size: .875rem; line-height: 1.6; margin-bottom: 1.75rem; }
.star-picker { display: flex; gap: .25rem; }
.star-btn { background: none; border: none; font-size: 1.75rem; color: rgba(0,0,0,.15); cursor: pointer; padding: 0 2px; transition: transform .1s, color .15s; line-height: 1; }
.star-btn:hover, .star-btn.active { color: var(--primary); transform: scale(1.1); }
.star-group { background: var(--bg-light); padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 1.25rem; }
.star-label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: .75rem; }
.field { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.25rem; }
.field label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.field input, .field select, .field textarea { border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem 1rem; font-size: .875rem; transition: border-color .2s; outline: none; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); }
.field input.error, .field select.error, .field textarea.error { border-color: #d4183d; }
.field-error { color: #d4183d; font-size: .75rem; }
.field-hint { color: var(--text-muted); font-size: .75rem; text-align: right; }
.reviews-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); align-items: center; }
.filter-btn { padding: .375rem 1rem; font-size: .75rem; font-weight: 600; border: 1px solid var(--border); border-radius: var(--radius); background: transparent; cursor: pointer; transition: all .2s; color: var(--text-muted); }
.filter-btn:hover { color: var(--text); border-color: rgba(0,0,0,.2); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.filter-count { margin-left: auto; color: var(--text-muted); font-size: .75rem; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.rcard { background: #fff; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s; }
.rcard:hover { border-color: rgba(232,71,10,.2); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.rcard__stars { display: flex; gap: 2px; margin-bottom: 1.25rem; color: var(--primary); font-size: .75rem; }
.rcard__quote-icon { color: rgba(232,71,10,.2); font-size: 1.25rem; margin-bottom: .75rem; line-height: 1; }
.rcard__text { font-size: .9375rem; line-height: 1.75; flex: 1; margin-bottom: 1.75rem; }
.rcard__footer { border-top: 1px solid var(--border); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; }
.rcard__name { font-family: var(--font-head); font-weight: 600; font-size: .9375rem; }
.rcard__company { color: var(--text-muted); font-size: .875rem; margin-top: 2px; }
.rcard__service { font-size: .6875rem; font-weight: 700; color: var(--primary); background: rgba(232,71,10,.08); padding: .25rem .625rem; border-radius: var(--radius); white-space: nowrap; }
.rcard__date { color: rgba(107,107,107,.5); font-size: .75rem; margin-top: .625rem; }
.submit-success { background: rgba(232,71,10,.05); border: 1px solid rgba(232,71,10,.2); border-radius: var(--radius); padding: 2rem; text-align: center; }
.submit-success__icon { width: 48px; height: 48px; background: rgba(232,71,10,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.25rem; }
.submit-success h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.submit-success p { color: var(--text-muted); font-size: .875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.no-reviews { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }

/* ── Admin page ─────────────────────────────────────────────────────────────── */
.admin-page { background: var(--bg-light); min-height: 100vh; }
.pin-gate { min-height: 100vh; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.pin-card { width: 100%; max-width: 380px; }
.pin-card__logo { text-align: center; margin-bottom: 2rem; }
.pin-card__logo img { height: 52px; width: auto; object-fit: contain; display: inline-block; }
.pin-card__box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2.5rem; }
.pin-card__icon { width: 48px; height: 48px; background: rgba(232,71,10,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.25rem; }
.pin-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff; text-align: center; margin-bottom: .25rem; }
.pin-card__sub { color: rgba(255,255,255,.45); font-size: .875rem; text-align: center; margin-bottom: 1.75rem; }
.pin-input { width: 100%; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: .5em; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: .875rem; color: #fff; outline: none; margin-bottom: 1rem; transition: border-color .2s; }
.pin-input:focus { border-color: var(--primary); }
.pin-input.error { border-color: #d4183d; }
.pin-error { color: #ff6b8a; font-size: .75rem; text-align: center; margin-bottom: 1rem; }
.admin-wrap { display: none; }
.admin-wrap.visible { display: block; }
.admin-topbar { background: var(--bg-dark); border-bottom: 1px solid rgba(255,255,255,.05); padding: 0; }
.admin-topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.admin-topbar__logo img { height: 40px; width: auto; object-fit: contain; }
.admin-topbar__meta { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.7); font-size: .875rem; font-weight: 500; }
.admin-topbar__actions { display: flex; align-items: center; gap: 1rem; }
.admin-topbar__actions a, .admin-topbar__actions button { color: rgba(255,255,255,.4); font-size: .75rem; background: none; border: none; cursor: pointer; transition: color .2s; }
.admin-topbar__actions a:hover, .admin-topbar__actions button:hover { color: #fff; }
.lock-btn { display: flex; align-items: center; gap: .375rem; padding: .375rem .75rem; border: 1px solid rgba(255,255,255,.1) !important; border-radius: var(--radius) !important; }
.admin-body { padding: 2.5rem 0; }
.admin-title { font-family: var(--font-head); font-weight: 800; font-size: 1.75rem; letter-spacing: -.025em; margin-bottom: .375rem; }
.admin-sub { color: var(--text-muted); font-size: .875rem; margin-bottom: 2rem; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-bottom: 2rem; }
.astat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; cursor: pointer; transition: border-color .2s; }
.astat.active { border-color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.astat__label { display: flex; align-items: center; gap: .375rem; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.astat__label.pending  { color: #b45309; }
.astat__label.approved { color: #15803d; }
.astat__label.rejected { color: #dc2626; }
.astat__label.all      { color: var(--primary); }
.astat__num { font-family: var(--font-head); font-weight: 800; font-size: 1.75rem; letter-spacing: -.04em; line-height: 1; }
.bulk-bar { display: flex; align-items: center; gap: .75rem; padding: .875rem 1rem; background: #fef9c3; border: 1px solid #fde047; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .875rem; color: #854d0e; }
.bulk-bar span { flex: 1; font-weight: 500; }
.bulk-btn { display: flex; align-items: center; gap: .375rem; padding: .375rem .875rem; border: none; border-radius: var(--radius); font-size: .75rem; font-weight: 600; cursor: pointer; }
.bulk-btn--approve { background: #16a34a; color: #fff; }
.bulk-btn--reject  { background: #dc2626; color: #fff; }
.review-row { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.review-row--pending { border-color: #fde68a; }
.review-row__head { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; }
.review-row__avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(232,71,10,.1); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: .875rem; color: var(--primary); flex-shrink: 0; }
.review-row__info { flex: 1; min-width: 0; }
.review-row__name { font-family: var(--font-head); font-weight: 600; font-size: .9375rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.review-row__meta { display: flex; align-items: center; gap: .75rem; margin-top: 2px; flex-wrap: wrap; }
.review-row__stars { display: flex; gap: 2px; color: var(--primary); font-size: .625rem; }
.review-row__service { font-size: .6875rem; font-weight: 700; color: var(--primary); background: rgba(232,71,10,.08); padding: 2px .5rem; border-radius: var(--radius); }
.review-row__date { font-size: .75rem; color: var(--text-muted); }
.badge { display: inline-block; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 2px .5rem; border-radius: var(--radius); border: 1px solid; }
.badge--pending  { background: #fef9c3; color: #854d0e; border-color: #fde68a; }
.badge--approved { background: #dcfce7; color: #15803d; border-color: #86efac; }
.badge--rejected { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }
.review-row__actions { display: flex; align-items: center; gap: .25rem; flex-shrink: 0; }
.action-btn { width: 32px; height: 32px; border: none; border-radius: var(--radius); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .875rem; transition: background .15s; }
.action-btn:hover { background: var(--bg-light); }
.action-btn--approve:hover { background: #dcfce7; color: #15803d; }
.action-btn--reject:hover  { background: #fee2e2; color: #b91c1c; }
.action-btn--delete:hover  { background: #fee2e2; color: #b91c1c; }
.review-row__body { padding: 0 1.25rem 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem; font-size: .9375rem; line-height: 1.75; color: var(--text); display: none; }
.review-row__body.open { display: block; }
.empty-state { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 5rem 1rem; text-align: center; color: var(--text-muted); }

/* ── Email preview ──────────────────────────────────────────────────────────── */
.email-page { background: #e0e0e0; padding: 2.5rem 1rem; min-height: 100vh; }
.email-toolbar { max-width: 640px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.email-toolbar a, .email-toolbar button { color: #555; font-size: .875rem; background: none; border: none; cursor: pointer; transition: color .2s; }
.email-toolbar a:hover, .email-toolbar button:hover { color: #111; }
.email-shell { max-width: 640px; margin: 0 auto; box-shadow: 0 8px 40px rgba(0,0,0,.18); border-radius: var(--radius); overflow: hidden; }
.email-header { background: #0a0a0a; padding: 2rem; text-align: center; }
.email-header img { height: 56px; width: auto; object-fit: contain; display: inline-block; }
.email-rule { height: 4px; background: var(--primary); }
.email-hero { background: #111; padding: 3.5rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.email-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(232,71,10,.2) 0%, transparent 65%); pointer-events: none; }
.email-eyebrow { display: inline-block; color: var(--primary); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: .375rem .75rem; border: 1px solid rgba(232,71,10,.3); border-radius: var(--radius); margin-bottom: 1.25rem; }
.email-hero__title { font-family: var(--font-head); font-weight: 800; font-size: 2rem; letter-spacing: -.025em; line-height: 1.15; color: #fff; margin-bottom: 1.25rem; position: relative; }
.email-hero__body { color: rgba(255,255,255,.65); font-size: .9375rem; line-height: 1.75; max-width: 400px; margin: 0 auto; position: relative; }
.email-section { padding: 2.5rem; border-bottom: 1px solid #ebebeb; }
.email-section--alt { background: #f8f8f8; }
.email-eyebrow-sm { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); margin-bottom: .75rem; }
.email-heading { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #111; letter-spacing: -.02em; margin-bottom: 1.25rem; }
.email-body { color: #444; font-size: .9375rem; line-height: 1.8; margin-bottom: 1rem; }
.email-steps { display: flex; flex-direction: column; gap: .875rem; }
.email-step { display: flex; align-items: flex-start; gap: .875rem; }
.email-step__dot { width: 28px; height: 28px; border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.email-step__num { font-family: var(--font-head); font-weight: 700; font-size: .625rem; color: var(--primary); }
.email-step__title { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: #111; margin-bottom: 2px; }
.email-step__desc { color: #666; font-size: .875rem; line-height: 1.6; }
.email-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.email-service { border: 1px solid #ebebeb; border-radius: var(--radius); padding: .875rem; display: flex; align-items: flex-start; gap: .75rem; }
.email-service__icon { width: 32px; height: 32px; background: rgba(232,71,10,.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .875rem; }
.email-service__title { font-family: var(--font-head); font-weight: 600; font-size: .875rem; color: #111; }
.email-service__sub { color: #888; font-size: .75rem; margin-top: 2px; }
.email-cta { padding: 3rem 2.5rem; text-align: center; border-bottom: 1px solid #ebebeb; }
.email-cta__title { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #111; letter-spacing: -.025em; margin-bottom: .75rem; }
.email-cta__body { color: #666; font-size: .9375rem; line-height: 1.7; margin-bottom: 1.75rem; }
.email-cta__btn { display: inline-flex; align-items: center; gap: .5rem; background: var(--primary); color: #fff; padding: .875rem 2rem; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: .9375rem; }
.email-cta__btn:hover { background: var(--accent); }
.email-cta__phone { display: block; margin-top: 1rem; color: var(--primary); font-size: .875rem; font-weight: 600; }
.email-stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid #ebebeb; }
.email-stat { padding: 1.5rem 1.25rem; text-align: center; }
.email-stat:not(:last-child) { border-right: 1px solid #ebebeb; }
.email-stat__value { font-family: var(--font-head); font-weight: 800; font-size: 1.75rem; color: var(--primary); letter-spacing: -.04em; line-height: 1; margin-bottom: .25rem; }
.email-stat__label { color: #888; font-size: .75rem; }
.email-contact { padding: 2rem 2.5rem; background: #f8f8f8; border-bottom: 1px solid #ebebeb; }
.email-contact-item { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.email-contact-item__icon { width: 28px; height: 28px; background: rgba(232,71,10,.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; }
.email-contact-item__val { color: #333; font-size: .875rem; font-weight: 500; }
.email-footer { background: #0a0a0a; padding: 2rem 2.5rem; text-align: center; }
.email-footer img { height: 40px; width: auto; object-fit: contain; display: inline-block; margin-bottom: 1rem; }
.email-footer__text { color: rgba(255,255,255,.35); font-size: .75rem; line-height: 1.6; margin-bottom: 1.25rem; }
.email-footer__links { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.25rem; display: flex; justify-content: center; gap: 1.5rem; }
.email-footer__links a { color: rgba(255,255,255,.25); font-size: .75rem; }
.email-note { text-align: center; font-size: .75rem; color: #999; margin-top: 1.5rem; }

/* ── Download page ──────────────────────────────────────────────────────────── */
.dl-page { min-height: 100vh; background: var(--bg-dark); display: flex; flex-direction: column; }
.dl-header { border-bottom: 1px solid rgba(255,255,255,.05); padding: .875rem 2.5rem; display: flex; align-items: center; justify-content: space-between; }
.dl-header img { height: 40px; width: auto; object-fit: contain; }
.dl-header a { color: rgba(255,255,255,.4); font-size: .875rem; transition: color .2s; }
.dl-header a:hover { color: #fff; }
.dl-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 4rem 1.5rem; }
.dl-inner { max-width: 680px; width: 100%; }
.dl-icon { width: 64px; height: 64px; background: rgba(232,71,10,.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; font-size: 1.75rem; }
.dl-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
.dl-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; transition: border-color .2s; }
.dl-card:hover { border-color: rgba(255,255,255,.2); }
.dl-card--featured { border-color: rgba(232,71,10,.35); }
.dl-card--featured:hover { border-color: rgba(232,71,10,.55); }
.dl-card__badge { position: absolute; top: 0; right: 0; background: var(--primary); color: #fff; font-size: .625rem; font-weight: 700; padding: 3px 10px; border-radius: 0 0 0 var(--radius); }
.dl-card__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.dl-card__icon { width: 40px; height: 40px; background: rgba(232,71,10,.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.dl-card__title { font-family: var(--font-head); font-weight: 700; font-size: .9375rem; color: #fff; }
.dl-card__subtitle { color: rgba(255,255,255,.35); font-size: .75rem; }
.dl-file-list { flex: 1; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.dl-file { display: flex; align-items: center; gap: .625rem; font-size: .75rem; }
.dl-file__icon { color: rgba(232,71,10,.6); font-size: .875rem; flex-shrink: 0; }
.dl-file__name { color: rgba(255,255,255,.7); font-family: monospace; flex: 1; }
.dl-file__size { color: rgba(255,255,255,.3); flex-shrink: 0; }
.dl-guide { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.75rem; }
.dl-guide h3 { font-family: var(--font-head); font-weight: 700; color: #fff; margin-bottom: 1.25rem; font-size: .9375rem; }
.dl-guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dl-guide-item { display: flex; gap: .625rem; align-items: flex-start; }
.dl-guide-item__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: .45rem; }
.dl-guide-item__host { font-family: var(--font-head); font-weight: 600; font-size: .875rem; color: rgba(255,255,255,.8); }
.dl-guide-item__detail { color: rgba(255,255,255,.4); font-size: .75rem; margin-top: 2px; line-height: 1.5; }

/* ── Service dots ───────────────────────────────────────────────────────────── */
.services__dots { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.svc-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.15); border: none; cursor: pointer; padding: 0; transition: all .3s; }
.svc-dot.active { width: 20px; height: 8px; border-radius: 4px; background: var(--primary); }
.svc-auto-label { color: rgba(0,0,0,.2); font-size: .7rem; margin-left: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
@keyframes growWidth { from { width: 0% } to { width: 100% } }
@keyframes fadeSlideIn { from { opacity:0;transform:translateY(6px) } to { opacity:1;transform:translateY(0) } }
.services__panel.active { animation: fadeSlideIn .3s ease; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__grid, .contact__grid, .reviews-layout { grid-template-columns: 1fr; }
  .reviews-form-wrap { position: static; }
  .pillars, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services__panel.active { grid-template-columns: 1fr; }
  .service__points { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__line { display: none; }
  .pillars, .reviews-grid, .dl-cards, .dl-guide-grid { grid-template-columns: 1fr; }
  .email-services-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats__grid, .footer__grid, .process__grid, .admin-stat-grid { grid-template-columns: 1fr 1fr; }
}
@media print {
  .email-toolbar, .dl-header a { display: none !important; }
}