/* ============================================================
   RED GREY SOLUTIONS — MAIN STYLESHEET
   ============================================================ */

:root {
  --red: #ff5b5b;
  --red-hover: #e03f3f;
  --grey: #c5c5c4;
  --steel: #4a5254;
  --dark: #5c5b5b;
  --dark-2: #504f4f;
  --body-bg: #ffffff;
  --light-bg: #c5c5c4;
  --border: #b8b8b7;
  --text: #3a3939;
  --text-mid: #3d3c3c;
  --text-light: #5c5b5b;
  --white: #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --nav-h: 64px;
  --container: 1200px;
  --radius: 2px;
  --transition: 0.22s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--body-bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }

/* CONTAINER */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: baseline; gap: 0; line-height: 1; padding-bottom: 4px; }
.logo-red {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--red); letter-spacing: -0.01em;
}
.logo-grey {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--grey); letter-spacing: -0.01em;
  text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 5px;
}
.nav-links { list-style: none; display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  color: rgba(219,219,218,0.65); padding: 0.5rem 0.875rem;
  border-radius: var(--radius); transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--grey); background: rgba(255,255,255,0.07); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 0.5rem 1.25rem !important; margin-left: 0.5rem;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-hover) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--grey); border-radius: 2px; transition: all 0.25s; }

/* ============================================================ HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(60,58,58,0.93) 0%, rgba(60,58,58,0.88) 50%, rgba(60,58,58,0.76) 100%);
}
/* Fallback when no video */
.hero-video-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, #3c3a3a 0%, #504f4f 55%, #5c5b5b 100%),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(232,30,37,0.05) 48px, rgba(232,30,37,0.05) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(232,30,37,0.05) 48px, rgba(232,30,37,0.05) 49px);
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
.hero-content-inner { max-width: 700px; }
.hero-eyebrow {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-heading {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800; line-height: 0.95; color: #ffffff;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-heading .accent { color: var(--red); }
.hero-sub {
  font-size: 1.1rem; color: rgba(219,219,218,0.92); max-width: 560px;
  line-height: 1.7; margin-bottom: 2.5rem; font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  background: rgba(60,58,58,0.92); backdrop-filter: blur(12px);
  border-top: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  padding: 1.25rem 2rem;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0.6rem 2.5rem; }
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(219,219,218,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; text-align: center; max-width: 140px; }
.stat-divider { width: 1px; height: 36px; background: rgba(219,219,218,0.12); align-self: center; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.8rem 1.8rem; border-radius: var(--radius);
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(219,219,218,0.4); }
.btn-ghost:hover { border-color: var(--grey); background: rgba(219,219,218,0.08); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(197,197,196,0.8); }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ============================================================ TICKER */
.ticker-wrap {
  background: var(--dark); overflow: hidden; padding: 0.9rem 0;
  border-top: 2px solid var(--red); border-bottom: 1px solid rgba(232,30,37,0.2);
}
.ticker {
  display: flex; align-items: center; white-space: nowrap;
  animation: ticker 15s linear infinite;
  will-change: transform;
}
.ticker span {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(219,219,218,0.7); padding: 0 1rem;
}
.ticker .sep { color: var(--red); padding: 0 0.5rem; font-weight: 800; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================ SECTIONS */
.section { padding: 6rem 0; }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--dark-2); }

.section-label {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--red); }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; color: var(--dark); letter-spacing: -0.01em; }
.section-header h2.light { color: var(--white); }
.section-sub { margin-top: 1rem; color: var(--text-mid); font-size: 1.05rem; max-width: 560px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* ============================================================ INTRO */
.intro-left h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15; color: var(--dark); }
.intro-right p { color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
.link-arrow {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--red);
  border-bottom: 1px solid var(--red); padding-bottom: 2px;
  transition: opacity var(--transition);
}
.link-arrow:hover { opacity: 0.75; }

/* ============================================================ SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.service-card {
  background: var(--white); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative; transition: background var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { background: #c5c5c4; }
.service-card:hover .card-icon { color: #5c5b5b; }
.card-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.1em; }
.card-icon { color: var(--red); transition: color var(--transition); }
.card-icon svg { width: 36px; height: 36px; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  color: #111111; line-height: 1.2; letter-spacing: -0.01em;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--red); }
.service-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.card-arrow { font-size: 1rem; color: var(--red); margin-top: auto; transition: transform var(--transition); }
.service-card:hover .card-arrow { transform: translateX(4px); }
.services-cta { text-align: center; }

/* ============================================================ QUICK START */
.qs-category { margin-bottom: 3rem; }
.qs-category-label {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark); border-left: 4px solid var(--red);
  padding-left: 0.875rem; margin-bottom: 1.25rem;
}
.qs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.qs-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative; transition: box-shadow var(--transition), transform var(--transition);
}
.qs-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.qs-card.featured { border-color: var(--red); border-width: 2px; }
.qs-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--red); color: var(--white);
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 0 0 4px 4px;
}
.qs-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.qs-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.qs-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.qs-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================ WHY */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  padding: 2rem; border: 1px solid rgba(197,197,196,0.15);
  border-radius: var(--radius);
  background: rgba(197,197,196,0.07);
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover { background: rgba(197,197,196,0.14); border-color: rgba(255,91,91,0.4); }
.why-icon { margin-bottom: 1rem; }
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: rgba(197,197,196,0.7); line-height: 1.65; }

/* ============================================================ CTA BAND */
.cta-band { background: var(--red); padding: 4rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 0.25rem; }
.cta-actions { display: flex; gap: 1rem; }
.cta-band .btn-primary { background: var(--white); color: var(--red); border-color: var(--white); }
.cta-band .btn-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.cta-band .btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,0.45); }
.cta-band .btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ============================================================ FOOTER */
.footer { background: var(--dark); padding: 4rem 0 0; border-top: 2px solid var(--red); }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 0.75rem; display: inline-flex; }
.footer-brand p { font-size: 0.875rem; color: rgba(197,197,196,0.8); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(197,197,196,0.8); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(197,197,196,0.15); padding: 1.5rem 0; }
.footer-bottom span { font-size: 0.8rem; color: rgba(197,197,196,0.6); }

/* ============================================================ SERVICES PAGE */
.page-hero {
  background: var(--dark);
  margin-top: var(--nav-h);
  border-bottom: 2px solid var(--red);
  min-height: 280px;
  display: flex; align-items: center;
  padding: 4rem 2rem;
}
.page-hero-inner { max-width: var(--container); margin: 0 auto; width: 100%; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1.05; }
.page-hero p { font-size: 1.1rem; color: rgba(219,219,218,0.6); margin-top: 1rem; max-width: 600px; }

.services-subnav-wrap {
  position: sticky; top: 64px; z-index: 50;
  background: var(--dark-2); overflow-x: auto;
  border-bottom: 1px solid rgba(219,219,218,0.08);
  scrollbar-width: none;
}
.services-subnav-wrap::-webkit-scrollbar { display: none; }
.services-subnav-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.services-subnav { display: flex; white-space: nowrap; }
.services-subnav a {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(219,219,218,0.4);
  padding: 1rem 1.1rem;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.services-subnav a:hover { color: var(--grey); border-bottom-color: rgba(219,219,218,0.2); }
.services-subnav a.active { color: var(--red); border-bottom-color: var(--red); }

.service-detail { padding: 5rem 0; border-bottom: 1px solid var(--border); scroll-margin-top: 8rem; }
.service-detail:first-of-type { padding-top: 4rem; }
.service-detail:last-child { border-bottom: none; }
.service-meta h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--dark); line-height: 1.15; margin-bottom: 1rem;
}
.service-detail-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-meta { position: sticky; top: 5rem; }
.service-meta .card-num { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.service-meta p { color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.service-meta .btn { display: inline-flex; }

.service-body h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.deliverables { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.deliverables li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
.deliverables li::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 0.45rem; }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.outcome-card { background: var(--light-bg); padding: 1.25rem; border-left: 3px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; }
.outcome-card .outcome-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--red); }
.outcome-card .outcome-label { font-size: 0.8rem; color: var(--text-mid); margin-top: 0.2rem; }
.pricing-note { background: var(--light-bg); border: 1px solid var(--border); padding: 1.25rem 1.5rem; border-radius: var(--radius); }
.pricing-note .price-range { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.pricing-note .price-label { font-size: 0.95rem; color: var(--text-light); margin-top: 0.2rem; }

/* ============================================================ ABOUT PAGE */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { padding: 2rem; background: var(--light-bg); border-top: 3px solid var(--red); }
.value-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { display: flex; flex-direction: column; gap: 1rem; }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--border); line-height: 1; }
.process-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); }
.process-step p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

.metrics-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--dark); }
.metric-item { padding: 3rem 2rem; text-align: center; border-right: 1px solid rgba(219,219,218,0.08); }
.metric-item:last-child { border-right: none; }
.metric-val { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--red); line-height: 1; }
.metric-label { font-size: 0.85rem; color: rgba(219,219,218,0.45); margin-top: 0.5rem; }

/* ============================================================ CONTACT PAGE */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }
.expect-list { display: flex; flex-direction: column; gap: 1rem; }
.expect-item { display: flex; align-items: flex-start; gap: 1rem; }
.expect-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--red); line-height: 1; min-width: 2rem; }
.expect-text h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--dark); }
.expect-text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }

.contact-form { background: var(--light-bg); padding: 2.5rem; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 0.925rem; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border);
  padding: 0.75rem 1rem; border-radius: var(--radius);
  transition: border-color var(--transition); outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; margin-top: 0.5rem; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-mid); }

/* ============================================================ SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-inner.reverse { direction: ltr; }
  .service-meta { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--dark); padding: 1rem 2rem 2rem; gap: 0.25rem; border-bottom: 2px solid var(--red); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 1rem; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 2.5rem 1.5rem 2rem; }
  .hero-stats { padding: 1rem 1.5rem; }
  .stat-divider { display: none; }
  .stat { padding: 0.4rem 1.5rem; border-bottom: 1px solid rgba(219,219,218,0.08); width: 100%; text-align: center; }
  .stat:last-child { border-bottom: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .qs-grid { grid-template-columns: 1fr; }
  .qs-category-label { font-size: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .metrics-bar { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .outcome-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .metrics-bar { grid-template-columns: 1fr; }
}
