/* =========================================================
   DebugLover Technologies — Stylesheet
   Theme: Navy / Blue / Red on a white (or deep navy) surface
   ========================================================= */

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

:root {
  /* --- Brand palette --- */
  --navy:        #0B2545;
  --navy-deep:   #081B36;
  --blue:        #1657D6;
  --blue-light:  #3D7FFF;
  --red:         #E63946;
  --red-deep:    #C8222F;

  /* --- Light theme surface --- */
  --bg:            #FFFFFF;
  --bg-alt:        #F4F7FC;
  --surface:       #FFFFFF;
  --surface-card:  #F7F9FD;
  --border:        rgba(11,37,69,0.12);
  --border-strong: rgba(11,37,69,0.22);
  --text-primary:  #0E1A2B;
  --text-muted:    #5A6B85;
  --text-dim:      #97A4BC;
  --pattern-opacity: 0.05;
  --shadow: 0 20px 50px -20px rgba(11,37,69,0.18);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html[data-theme="dark"] {
  --bg:            #071120;
  --bg-alt:        #0A1626;
  --surface:       #0C1B2E;
  --surface-card:  #101F34;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --text-primary:  #EAF0FA;
  --text-muted:    #9AAAC4;
  --text-dim:      #5D6E8A;
  --blue:          #4C8DFF;
  --blue-light:    #6EA2FF;
  --red:           #FF5A66;
  --pattern-opacity: 0.07;
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  transition: background .3s, color .3s;
  position: relative;
}

/* ===== Faded circuit-board pattern (signature backdrop) ===== */
.circuit-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--pattern-opacity);
  background-image:
    repeating-linear-gradient(0deg, var(--navy) 0, var(--navy) 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(90deg, var(--navy) 0, var(--navy) 1px, transparent 1px, transparent 120px);
  transition: opacity .3s;
}
html[data-theme="dark"] .circuit-bg {
  background-image:
    repeating-linear-gradient(0deg, #9AAAC4 0, #9AAAC4 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(90deg, #9AAAC4 0, #9AAAC4 1px, transparent 1px, transparent 120px);
}
.circuit-nodes {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: calc(var(--pattern-opacity) * 3.2);
}

a { color: inherit; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; color: #fff;
  font-weight: 700; border-radius: 8px;
  position: relative;
}
.nav-logo-mark::after {
  content: ''; position: absolute; right: -3px; bottom: -3px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--surface);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 16px; letter-spacing: .5px;
  color: var(--text-primary); font-weight: 700;
}
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -8px;
  width: 0; height: 2px; background: var(--red);
  transition: width .25s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }
html[data-theme="dark"] .nav-links a.active { color: var(--blue-light); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface-card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: border-color .25s, transform .15s;
}
.theme-toggle:hover { border-color: var(--blue); }
.theme-toggle:active { transform: scale(.92); }

.nav-cta {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  background: var(--blue); border: none; color: #fff;
  padding: 11px 24px; cursor: pointer; border-radius: 8px;
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

.nav-burger {
  display: none; width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--surface-card);
  cursor: pointer; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-burger span { width: 18px; height: 2px; background: var(--text-primary); display: block; }

.mobile-menu {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 16px 24px 28px; display: none; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 4px; text-decoration: none; color: var(--text-primary);
  font-weight: 500; border-bottom: 1px solid var(--border); font-size: 15px;
}
.mobile-menu .nav-cta { margin-top: 14px; text-align: center; }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 60%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-glow svg { position: absolute; width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 980px; margin-top: 76px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: 2px; color: var(--blue);
  text-transform: uppercase; margin-bottom: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px; border: 1px solid var(--border);
  border-radius: 999px; background: var(--surface-card);
  opacity: 0; animation: fadeSlideUp .8s .3s forwards;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  animation: blink 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(230,57,70,.5);
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700; line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 28px; color: var(--navy);
  opacity: 0; animation: fadeSlideUp .9s .45s forwards;
}
html[data-theme="dark"] .hero-h1 { color: var(--text-primary); }
.hero-h1 .accent-blue { color: var(--blue); }
.hero-h1 .accent-red { color: var(--red); }

.hero-sub {
  font-size: 17.5px; color: var(--text-muted);
  line-height: 1.75; max-width: 580px; margin-bottom: 44px;
  opacity: 0; animation: fadeSlideUp .9s .65s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px;
  opacity: 0; animation: fadeSlideUp .9s .85s forwards;
}
.btn-primary {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  background: var(--blue); color: #fff; border: none;
  padding: 16px 32px; cursor: pointer; border-radius: 9px;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(22,87,214,.5); }
.btn-ghost {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
  padding: 16px 32px; cursor: pointer; border-radius: 9px;
  transition: border-color .25s, color .25s, transform .2s;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp .9s 1.05s forwards;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 34px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
html[data-theme="dark"] .hero-stat-num { color: var(--blue-light); }
.hero-stat-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
  color: var(--text-muted); text-transform: uppercase; margin-top: 6px;
}

/* ===== SECTION BASE ===== */
section { padding: 110px 60px; position: relative; }
.section-label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 2.5px; color: var(--red);
  text-transform: uppercase; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: '//'; color: var(--blue); font-weight: 700; }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 700; line-height: 1.15; letter-spacing: -.5px;
  margin-bottom: 22px; color: var(--navy);
}
html[data-theme="dark"] .section-h2 { color: var(--text-primary); }
.section-h2 .accent { color: var(--blue); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--navy); overflow: hidden; white-space: nowrap; padding: 14px 0;
}
.ticker-inner { display: inline-block; animation: ticker 32s linear infinite; }
.ticker-item {
  display: inline-block; font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 500;
  padding: 0 36px;
}
.ticker-item::after { content: '◆'; margin-left: 36px; opacity: .45; color: var(--blue-light); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
#about { background: var(--bg); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-card {
  background: var(--navy); border-radius: 18px; padding: 44px;
  position: relative; overflow: hidden; min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow);
}
.about-card svg { position: absolute; inset: 0; opacity: .5; }
.about-card-top { position: relative; z-index: 2; }
.about-card-top .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px;
  color: var(--blue-light); text-transform: uppercase; margin-bottom: 10px; display: block;
}
.about-card-top h3 {
  font-family: var(--font-display); color: #fff; font-size: 26px; font-weight: 700; max-width: 280px;
}
.about-badge-row { position: relative; z-index: 2; display: flex; gap: 14px; }
.about-mini-badge {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 16px; flex: 1;
}
.about-mini-badge .num { font-family: var(--font-display); font-size: 24px; color: #fff; font-weight: 700; }
.about-mini-badge .lbl { font-family: var(--font-mono); font-size: 10px; color: var(--blue-light); letter-spacing: 1px; margin-top: 2px; text-transform: uppercase; }

.about-body p { color: var(--text-muted); line-height: 1.85; font-size: 16px; margin-bottom: 22px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.pillar {
  padding: 20px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface-card); transition: border-color .25s, transform .25s;
}
.pillar:hover { border-color: var(--blue); transform: translateY(-2px); }
.pillar-num { font-family: var(--font-display); font-size: 26px; color: var(--blue); font-weight: 700; }
.pillar-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .5px; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }

/* ===== SERVICES ===== */
#services { background: var(--bg-alt); }
.services-layout { max-width: 1200px; margin: 0 auto; }
.services-header { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.services-desc { color: var(--text-muted); line-height: 1.85; font-size: 16px; padding-top: 36px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 32px 26px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, var(--blue), var(--red)); transition: height .35s;
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 22px;
}
.service-title { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.service-desc { font-size: 13.8px; color: var(--text-muted); line-height: 1.7; }
.service-tag {
  position: absolute; top: 26px; right: 24px;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim);
}

/* ===== PROMISE STRIP ===== */
#promise-strip { padding: 0; background: var(--navy); }
.promise-inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; }
.promise-pillar {
  padding: 56px 40px; border-right: 1px solid rgba(255,255,255,0.1);
  transition: background .3s;
}
.promise-pillar:last-child { border-right: none; }
.promise-pillar:hover { background: rgba(255,255,255,0.04); }
.promise-icon { font-size: 30px; margin-bottom: 16px; }
.promise-title { font-family: var(--font-display); font-size: 15.5px; color: #fff; margin-bottom: 10px; font-weight: 700; }
.promise-desc { font-size: 13.8px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== PROJECTS / CASE STUDIES ===== */
#projects { background: var(--bg); }
.projects-layout { max-width: 1200px; margin: 0 auto; }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.project-card {
  position: relative; overflow: hidden; border-radius: 16px;
  min-height: 320px; border: 1px solid var(--border);
}
.project-card:nth-child(1) { grid-column: 1 / 8; }
.project-card:nth-child(2) { grid-column: 8 / 13; }
.project-card:nth-child(3) { grid-column: 1 / 5; }
.project-card:nth-child(4) { grid-column: 5 / 9; }
.project-card:nth-child(5) { grid-column: 9 / 13; }
.project-bg { position: absolute; inset: 0; transition: transform .5s ease; }
.project-card:hover .project-bg { transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,27,54,0.92) 100%);
}
.project-content { position: relative; z-index: 2; padding: 32px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.project-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 2px; color: var(--blue-light); text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.project-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 6px; color: #fff; }
.project-sub { font-size: 12.8px; color: rgba(255,255,255,0.7); }

/* ===== NUMBERS ===== */
#numbers { background: var(--bg-alt); padding: 70px 60px; }
.numbers-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.number-cell { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 44px 32px; text-align: center; transition: border-color .25s; }
.number-cell:hover { border-color: var(--red); }
.number-val { font-family: var(--font-display); font-size: 50px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 12px; }
.number-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }

/* ===== PROCESS ===== */
#process { background: var(--bg); }
.process-layout { max-width: 1200px; margin: 0 auto; }
.process-steps { margin-top: 60px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 8%; right: 8%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px); z-index: 0;
}
.process-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; color: var(--blue); background: var(--surface);
  transition: background .25s, border-color .25s; font-weight: 700;
}
.process-step:hover .step-num { background: var(--blue); border-color: var(--blue); color: #fff; }
.step-title { font-family: var(--font-display); font-size: 14.5px; color: var(--text-primary); margin-bottom: 10px; font-weight: 700; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== CTA BANNER ===== */
#cta-banner { padding: 0; background: var(--navy); overflow: hidden; position: relative; }
.cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 90px 60px;
  display: grid; grid-template-columns: 1.2fr auto; gap: 50px; align-items: center;
  position: relative; z-index: 2;
}
.cta-glow { position: absolute; right: -10%; top: -30%; width: 60%; height: 160%; pointer-events: none; opacity: .5; }
.cta-h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; color: #fff; line-height: 1.18; }
.cta-h2 .accent { color: var(--blue-light); }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-actions .btn-primary { background: #fff; color: var(--navy); }
.cta-actions .btn-primary:hover { background: var(--blue-light); color: #fff; }
.cta-actions .btn-ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-actions .btn-ghost:hover { border-color: var(--red); color: var(--red); }
.cta-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); text-transform: uppercase; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--bg-alt); }
.testimonials-layout { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 30px; transition: border-color .25s, transform .25s;
}
.testimonial-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.testimonial-quote { font-family: var(--font-display); font-size: 56px; color: var(--blue); line-height: .5; margin-bottom: 18px; opacity: .35; }
.testimonial-text { font-size: 14.5px; color: var(--text-muted); line-height: 1.85; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--border); padding-top: 22px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; color: #fff; font-weight: 700;
}
.author-name { font-family: var(--font-body); font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.author-company { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); margin-top: 2px; }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 70px 60px 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 64px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-top: 18px; margin-bottom: 26px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
  transition: border-color .25s, color .25s, background .25s;
}
.social-btn:hover { border-color: var(--blue-light); color: #fff; background: rgba(255,255,255,0.06); }
.footer-col-title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 22px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  max-width: 1200px; margin: 0 auto;
}
.footer-copy { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,0.45); }
.footer-tagline { font-family: var(--font-display); font-size: 13.5px; color: rgba(255,255,255,0.5); }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-eyebrow, .hero-h1, .hero-sub, .hero-actions, .hero-stats { opacity: 1 !important; animation: none !important; }
  .ticker-inner, .status-dot { animation: none !important; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px;
}

/* ===== MOBILE ===== */
@media (max-width: 980px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 80px 20px; }
  .hero-content { padding: 0 20px; }
  .hero-stats { gap: 30px; }
  .about-layout { grid-template-columns: 1fr; gap: 44px; }
  .services-header { grid-template-columns: 1fr; gap: 18px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .promise-inner { grid-template-columns: 1fr 1fr; }
  .promise-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .project-card:nth-child(n) { grid-column: 1 / -1; }
  .numbers-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}
