/* ═══════════════════════════════════════════════
   ANDORA MEDIA — DESIGN SYSTEM
   ═══════════════════════════════════════════════ */
:root {
  --bg: #050505;
  --surface: #0C0C0C;
  --surface-2: #111111;
  --surface-3: #1A1A1A;
  --border: rgba(255,255,255,.06);
  --border-h: rgba(255,255,255,.12);
  --red: #F42B2B;
  --red-d: #C91E1E;
  --red-g: rgba(244,43,43,.10);
  --red-gs: rgba(244,43,43,.20);
  --w: #fff;
  --g4: rgba(255,255,255,.35);
  --g5: rgba(255,255,255,.50);
  --g6: rgba(255,255,255,.60);
  --g8: rgba(255,255,255,.85);
  --fh: 'Sora', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --rs: 8px;
  --rm: 14px;
  --rl: 22px;
  --rx: 32px;
  --sr: 0 8px 30px rgba(244,43,43,.25);
  --t: .3s cubic-bezier(.4,0,.2,1);
}

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

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--fh);
  font-weight: 700;
  color: var(--w);
  line-height: 1.15;
}
.section-label {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--g5);
  max-width: 560px;
  font-weight: 400;
}
.accent { color: var(--red); }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 16px 32px;
  border-radius: var(--rm);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--w);
  box-shadow: var(--sr);
}
.btn-primary:hover {
  background: var(--red-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244,43,43,.35);
}
.btn-ghost {
  color: var(--g6);
  padding: 16px 0;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  gap: 8px;
  display: inline-flex;
  align-items: center;
  transition: all var(--t);
}
.btn-ghost:hover { gap: 14px; color: var(--red); }
.btn-ghost svg { transition: transform var(--t); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--t);
}
nav.scrolled {
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  height: 36px; width: 36px;
  object-fit: contain; border-radius: 6px;
}
.nav-logo-text {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: -.01em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--g5);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--w); }
.nav-cta {
  background: var(--red) !important;
  color: var(--w) !important;
  padding: 10px 24px !important;
  border-radius: var(--rs) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all var(--t) !important;
  box-shadow: var(--sr);
}
.nav-cta:hover {
  background: var(--red-d) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 300;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--w); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 600;
  color: var(--w);
  transition: color .2s;
  padding: 8px 0;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .m-cta {
  background: var(--red);
  color: var(--w) !important;
  padding: 14px 40px;
  border-radius: var(--rm);
  font-size: 16px;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) .8px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; top: -250px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,43,43,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,43,43,.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 2; max-width: 600px; }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-g);
  border: 1px solid rgba(244,43,43,.18);
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--red); margin-bottom: 32px;
  font-family: var(--fh);
}
.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

h1.hero-title {
  font-size: clamp(36px, 5.2vw, 72px);
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--w);
}
.hero-subtitle {
  font-size: 17px; line-height: 1.75;
  color: var(--g5); max-width: 480px;
  margin-bottom: 40px; font-weight: 400;
}
.hero-actions {
  display: flex; gap: 16px;
  align-items: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { position: relative; }
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute;
  right: -20px; top: 4px; bottom: 4px;
  width: 1px; background: rgba(255,255,255,.1);
}
.hero-stat .num {
  font-family: var(--fh); font-size: 36px;
  font-weight: 800; color: var(--w);
  line-height: 1; letter-spacing: -.02em;
}
.hero-stat .num span { color: var(--red); }
.hero-stat .label {
  font-size: 12px; color: var(--g4);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 6px; font-weight: 500;
}

/* Hero Right - Orbital Graphic */
.hero-right {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
}
.hero-graphic {
  width: 100%; max-width: 520px; aspect-ratio: 1;
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.hero-graphic-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(244,43,43,.1);
  animation: spin 30s linear infinite;
}
.hero-graphic-ring:nth-child(1) { width: 100%; height: 100%; }
.hero-graphic-ring:nth-child(2) { width: 80%; height: 80%; animation-duration: 25s; animation-direction: reverse; border-color: rgba(244,43,43,.06); }
.hero-graphic-ring:nth-child(3) { width: 60%; height: 60%; animation-duration: 20s; border-color: rgba(244,43,43,.04); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-graphic-ring::before {
  content: ''; position: absolute;
  width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  top: -5px; left: 50%;
  box-shadow: 0 0 20px rgba(244,43,43,.5);
}
.hero-graphic-center {
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,43,43,.12) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.hero-graphic-center img {
  width: 90px; height: 90px; object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(244,43,43,.3));
}
.hero-badge {
  position: absolute; background: var(--surface-2);
  border-radius: var(--rm); padding: 18px 24px;
  border: 1px solid var(--border);
  animation: float 5s ease-in-out infinite;
  z-index: 3; box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.hero-badge .num {
  font-family: var(--fh); font-size: 24px;
  font-weight: 800; color: var(--red); line-height: 1;
}
.hero-badge .lbl {
  font-size: 11px; color: var(--g4);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 4px; font-weight: 500;
}
.hero-badge-1 { bottom: 15%; left: 0; }
.hero-badge-2 { top: 10%; right: 0; animation-delay: 2.5s; }
.hero-badge-2 .num { color: var(--w); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */
.marquee-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
  background: var(--surface);
}
.marquee-track {
  display: flex; animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  padding: 0 32px; font-family: var(--fh);
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--g4); display: inline-flex;
  align-items: center; gap: 32px; flex-shrink: 0;
}
.marquee-dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
#services { padding: 120px 40px; background: var(--bg); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 64px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all var(--t); cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform .4s ease;
}
.service-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(244,43,43,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t);
}
.service-card:hover {
  border-color: rgba(244,43,43,.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.svc-num {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  color: var(--red); letter-spacing: .2em;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.svc-icon-wrap {
  width: 52px; height: 52px; background: var(--red-g);
  border: 1px solid rgba(244,43,43,.12);
  border-radius: var(--rs);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all var(--t);
  position: relative; z-index: 1;
}
.service-card:hover .svc-icon-wrap {
  background: var(--red-gs);
  border-color: rgba(244,43,43,.25);
}
.svc-icon { width: 24px; height: 24px; color: var(--red); }
.svc-name {
  font-family: var(--fh); font-size: 18px; font-weight: 700;
  color: var(--w); margin-bottom: 12px;
  position: relative; z-index: 1;
}
.svc-desc {
  font-size: 14px; line-height: 1.75; color: var(--g5);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.svc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--g4);
  font-family: var(--fh); transition: all var(--t);
  position: relative; z-index: 1;
}
.service-card:hover .svc-arrow { color: var(--red); gap: 10px; }

/* ═══════════════════════════════════════════════
   SERVICE MODAL
   ═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px); z-index: 500;
  display: none; align-items: center;
  justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--rx);
  max-width: 680px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 48px; position: relative;
  animation: modalIn .35s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--g5); font-size: 20px;
  transition: all var(--t);
}
.modal-close:hover { background: rgba(255,255,255,.1); color: var(--w); }
.modal-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px; font-family: var(--fh);
}
.modal-title {
  font-family: var(--fh); font-size: 26px;
  font-weight: 800; margin-bottom: 16px;
}
.modal-intro { font-size: 15px; line-height: 1.8; color: var(--g5); margin-bottom: 32px; }
.modal-steps { display: flex; flex-direction: column; gap: 14px; }
.modal-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; background: var(--surface-3);
  border-radius: var(--rm); border: 1px solid var(--border);
}
.step-num {
  width: 36px; height: 36px; background: var(--red);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 14px;
  font-weight: 700; color: var(--w); flex-shrink: 0;
}
.step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 13px; line-height: 1.7; color: var(--g5); }
.modal-cta {
  margin-top: 28px; background: var(--red); color: var(--w);
  padding: 14px 32px; font-size: 14px; font-weight: 600;
  letter-spacing: .03em; border-radius: var(--rm);
  transition: all var(--t); font-family: var(--fh);
  box-shadow: var(--sr); width: 100%; text-align: center;
}
.modal-cta:hover { background: var(--red-d); transform: translateY(-2px); }
@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ═══════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════ */
#why {
  padding: 120px 40px; background: var(--surface);
  position: relative; overflow: hidden;
}
.why-glow {
  position: absolute; left: -200px; top: 50%;
  transform: translateY(-50%); width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,43,43,.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-graphic {
  position: relative; width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--rl); overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  border: 1px solid var(--border);
}
.why-graphic svg { width: 80%; height: 80%; }
.why-features { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.why-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--surface-2);
  border-radius: var(--rm); border: 1px solid var(--border);
  transition: all var(--t);
}
.why-feat:hover { border-color: rgba(244,43,43,.15); transform: translateX(4px); }
.feat-icon {
  width: 46px; height: 46px; background: var(--red-g);
  border: 1px solid rgba(244,43,43,.12);
  border-radius: var(--rs); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-body h4 { font-family: var(--fh); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feat-body p { font-size: 14px; line-height: 1.7; color: var(--g5); }

/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
#process { padding: 120px 40px; background: var(--bg); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-label { justify-content: center; }
.process-header .section-label::before { display: none; }
.process-header .section-desc { margin: 0 auto; }
.process-wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative;
}
.proc-step {
  text-align: center; padding: 32px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); transition: all var(--t);
  position: relative;
}
.proc-step:hover {
  border-color: rgba(244,43,43,.15);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
}
.proc-connector {
  position: absolute; top: 50%; right: -12px;
  transform: translateY(-50%); color: var(--g4);
  font-size: 16px; z-index: 2;
}
.proc-step:last-child .proc-connector { display: none; }
.proc-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--fh);
  font-size: 18px; font-weight: 700; color: var(--w);
  box-shadow: var(--sr); transition: all var(--t);
}
.proc-step:hover .proc-dot {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(244,43,43,.5);
}
.proc-title { font-family: var(--fh); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.proc-desc { font-size: 14px; line-height: 1.75; color: var(--g5); }

/* ═══════════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════════ */
#results {
  padding: 120px 40px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0505 0%, #0a0000 50%, var(--bg) 100%);
}
.results-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.results-bg-text {
  font-family: var(--fh); font-size: 220px; font-weight: 800;
  color: rgba(244,43,43,.03); white-space: nowrap; letter-spacing: .05em;
}
.results-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(244,43,43,.08) 0%, transparent 70%);
  pointer-events: none;
}
.results-inner { position: relative; z-index: 2; }
.results-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 64px;
}
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.result-card {
  text-align: center; padding: 40px 20px;
  background: rgba(244,43,43,.04);
  border: 1px solid rgba(244,43,43,.08);
  border-radius: var(--rl); transition: all var(--t);
}
.result-card:hover {
  background: rgba(244,43,43,.08);
  border-color: rgba(244,43,43,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.res-num {
  font-family: var(--fh); font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; color: var(--w); line-height: 1;
  letter-spacing: -.02em;
}
.res-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--g4); margin-top: 10px;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
#testimonials { padding: 120px 40px; background: var(--surface); }
.testi-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 64px;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 36px 28px;
  transition: all var(--t); position: relative; overflow: hidden;
}
.testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0; transition: opacity var(--t);
}
.testi-card:hover {
  border-color: rgba(244,43,43,.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
}
.testi-card:hover::before { opacity: 1; }
.testi-stars { color: var(--red); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.testi-quote-mark {
  font-family: var(--fh); font-size: 60px; line-height: .6;
  color: var(--red); opacity: .2; font-weight: 800; margin-bottom: 12px;
}
.testi-text { font-size: 15px; line-height: 1.8; color: var(--g5); font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 14px; font-weight: 700;
  color: var(--w); flex-shrink: 0;
}
.author-name { font-family: var(--fh); font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--g4); margin-top: 1px; }

/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
#cta {
  padding: 120px 40px; background: var(--bg);
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,43,43,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
#cta .section-label { justify-content: center; }
#cta .section-label::before { display: none; }
.cta-title {
  font-size: clamp(32px, 5.5vw, 64px);
  letter-spacing: -.03em; margin-bottom: 20px; line-height: 1.08;
}
.cta-desc {
  font-size: 16px; color: var(--g5); line-height: 1.75;
  margin-bottom: 40px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════════════
   CONTACT MODAL
   ═══════════════════════════════════════════════ */
.contact-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px); z-index: 600;
  display: none; align-items: center;
  justify-content: center; padding: 20px;
}
.contact-modal.open { display: flex; }
.contact-box {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--rx); max-width: 580px; width: 100%;
  padding: 48px; position: relative;
  animation: modalIn .35s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  max-height: 92vh; overflow-y: auto;
}
.contact-close {
  position: absolute; top: 16px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--g5); font-size: 20px;
  transition: all var(--t);
}
.contact-close:hover { background: rgba(255,255,255,.1); color: var(--w); }
.contact-title {
  font-family: var(--fh); font-size: 24px;
  font-weight: 800; margin-bottom: 6px;
}
.contact-sub { font-size: 14px; color: var(--g5); margin-bottom: 32px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-family: var(--fh); font-size: 11px;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--g5); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--surface-3);
  border: 1px solid var(--border); border-radius: var(--rs);
  padding: 12px 16px; color: var(--w);
  font-family: var(--fb); font-size: 14px;
  outline: none; transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(244,43,43,.12);
}
.form-group select option { background: var(--surface-3); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; background: var(--red); color: var(--w);
  padding: 16px; font-size: 14px; font-weight: 700;
  letter-spacing: .05em; border-radius: var(--rm);
  transition: all var(--t); margin-top: 8px;
  font-family: var(--fh); box-shadow: var(--sr);
  -webkit-appearance: none;
}
.form-submit:hover { background: var(--red-d); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success h3 {
  font-family: var(--fh); font-size: 24px;
  font-weight: 800; margin-bottom: 10px;
}
.form-success p { color: var(--g5); font-size: 14px; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 40px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.8; color: var(--g4);
  margin-top: 16px; max-width: 280px;
}
.footer-col h5 {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--w); margin-bottom: 18px;
}
.footer-col a {
  color: var(--g4); font-size: 14px;
  transition: color var(--t); display: block; margin-bottom: 10px;
}
.footer-col a:hover { color: var(--w); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--g4); }
.socials { display: flex; gap: 10px; }
.soc-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: var(--rs); display: flex;
  align-items: center; justify-content: center;
  color: var(--g4); font-size: 14px; transition: all var(--t);
}
.soc-link:hover { border-color: var(--red); color: var(--w); background: var(--red); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero { grid-template-columns: 1fr; padding: 100px 20px 60px; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  h1.hero-title { font-size: clamp(32px, 8vw, 52px); }
  .hero-subtitle { font-size: 16px; }

  #services, #why, #process, #results, #testimonials, #cta { padding: 80px 20px; }
  .services-header, .testi-header, .results-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-graphic { display: none; }
  .process-wrap { grid-template-columns: 1fr 1fr; }
  .proc-connector { display: none !important; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 60px 20px 24px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  nav { padding: 14px 16px; }
  nav.scrolled { padding: 10px 16px; }
  .nav-logo-text { font-size: 17px; }

  #hero { padding: 90px 16px 50px; min-height: auto; }
  .hero-label { font-size: 11px; padding: 6px 14px; margin-bottom: 24px; }
  h1.hero-title { font-size: clamp(28px, 9vw, 42px); margin-bottom: 18px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { margin-bottom: 40px; }
  .btn { padding: 14px 24px; font-size: 13px; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 28px; }
  .hero-stat:not(:last-child)::after { right: -12px; }
  .hero-stat .label { font-size: 10px; }

  #services, #why, #process, #results, #testimonials, #cta { padding: 60px 16px; }

  .section-title { font-size: clamp(24px, 7vw, 36px); margin-bottom: 14px; }
  .section-desc { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }

  .process-wrap { grid-template-columns: 1fr; gap: 16px; }
  .proc-step { padding: 28px 20px; }

  .results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .result-card { padding: 28px 12px; }
  .res-num { font-size: 32px; }
  .results-bg-text { font-size: 100px; }

  .testi-card { padding: 28px 22px; }
  .testi-quote-mark { font-size: 44px; }

  .cta-title { font-size: clamp(28px, 8vw, 44px); }
  .cta-desc { font-size: 15px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-box { padding: 28px 18px; border-radius: var(--rl); }
  .modal-box { padding: 28px 18px; border-radius: var(--rl); }
  .modal-title { font-size: 22px; }
  .contact-title { font-size: 22px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column; gap: 16px; text-align: center;
  }
  footer { padding: 48px 16px 20px; }

  .why-feat { padding: 14px; }
  .feat-icon { width: 40px; height: 40px; }
  .feat-body h4 { font-size: 14px; }
  .feat-body p { font-size: 13px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤380px)
   ═══════════════════════════════════════════════ */
@media (max-width: 380px) {
  h1.hero-title { font-size: 28px; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 24px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card { padding: 24px 16px; }
}
