/* =====================================================
   ScrewedFilm – style.css
   Trendy dark mode + violet/cyan neon palette
   ===================================================== */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --bg:          #09090f;
  --surface:     #111120;
  --surface-2:   #17172a;
  --card:        #1c1c32;
  --card-hover:  #222240;
  --border:      rgba(139,92,246,.18);
  --border-soft: rgba(255,255,255,.07);

  /* Brand gradient */
  --grad-start:  #8b5cf6;   /* violet */
  --grad-mid:    #a855f7;
  --grad-end:    #ec4899;   /* pink */
  --accent:      #06b6d4;   /* cyan */
  --accent-2:    #10b981;   /* emerald */

  /* Text */
  --text:        #f1f5f9;
  --text-muted:  #94a3b8;
  --text-dim:    #64748b;

  /* Glow */
  --glow-v:   0 0 40px rgba(139,92,246,.35);
  --glow-c:   0 0 40px rgba(6,182,212,.35);
  --glow-p:   0 0 40px rgba(236,72,153,.35);

  /* Typography */
  --font-body:  'Inter', system-ui, sans-serif;
  --font-head:  'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  1200px;
  --radius:     14px;
  --radius-lg:  22px;

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: var(--text) !important; }

h1, h2, h3, h4, h5, h6 { color: var(--text); }
p { color: var(--text-muted); }
li { color: var(--text-muted); }

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--grad-start); border-radius: 99px; }

/* ─── CONTAINER ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ─── GRADIENT UTILITIES ─────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-cyan {
  background: linear-gradient(135deg, var(--accent), var(--grad-start));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), opacity .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  box-shadow: 0 4px 24px rgba(139,92,246,.4);
}
.btn-primary:hover { box-shadow: 0 8px 36px rgba(139,92,246,.6); }

.btn-outline {
  border: 1.5px solid var(--grad-start);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(139,92,246,.12);
  box-shadow: var(--glow-v);
}

.btn-ghost {
  color: var(--text-muted);
  background: transparent;
  padding: .6rem 0;
}
.btn-ghost:hover { color: var(--text); }

.btn-sm { padding: .55rem 1.3rem; font-size: .88rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ─── BADGE ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 9999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-violet {
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.3);
  color: #c4b5fd;
}
.badge-cyan {
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.3);
  color: #67e8f9;
}
.badge-pink {
  background: rgba(236,72,153,.12);
  border: 1px solid rgba(236,72,153,.3);
  color: #f9a8d4;
}

/* ─── SECTION HEADER ─────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .8rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
  font-size: 1.05rem;
}

/* ─── CARD ───────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border-color: var(--border);
}

/* ─── NOISE OVERLAY ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(9,9,15,.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  transition: padding .3s var(--ease), background .3s;
}
.site-header.scrolled {
  padding: .6rem 0;
  background: rgba(9,9,15,.92);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
}
.brand-icon { font-size: 1.4rem; }
.brand-name { color: var(--text); }
.brand-accent { color: var(--grad-start); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(139,92,246,.1);
}
.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MAIN CONTENT OFFSET ────────────────────────── */
main { padding-top: 74px; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem,10vw,8rem) 0 clamp(3rem,8vw,6rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .25;
}
.hero-bg-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--grad-start), transparent 70%);
  top: -200px; left: -200px;
}
.hero-bg-blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--grad-end), transparent 70%);
  bottom: -150px; right: -150px;
}
.hero-bg-blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: .12;
}

/* Grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--grad-start), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: .8rem; color: var(--text-dim); margin-top: .25rem; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-mic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), var(--glow-v);
  max-width: 360px;
  width: 100%;
}
.hero-mic-icon {
  font-size: 6rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float-mic 4s ease-in-out infinite;
}
@keyframes float-mic {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-mic-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.hero-mic-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.hero-waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 48px;
}
.hero-waveform span {
  display: block;
  width: 4px;
  background: linear-gradient(to top, var(--grad-start), var(--accent));
  border-radius: 4px;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.hero-waveform span:nth-child(1)  { animation-delay: 0s;    height: 20%; }
.hero-waveform span:nth-child(2)  { animation-delay: .1s;   height: 60%; }
.hero-waveform span:nth-child(3)  { animation-delay: .2s;   height: 100%; }
.hero-waveform span:nth-child(4)  { animation-delay: .3s;   height: 75%; }
.hero-waveform span:nth-child(5)  { animation-delay: .4s;   height: 40%; }
.hero-waveform span:nth-child(6)  { animation-delay: .5s;   height: 80%; }
.hero-waveform span:nth-child(7)  { animation-delay: .6s;   height: 55%; }
.hero-waveform span:nth-child(8)  { animation-delay: .7s;   height: 30%; }
.hero-waveform span:nth-child(9)  { animation-delay: .8s;   height: 70%; }
.hero-waveform span:nth-child(10) { animation-delay: .9s;   height: 45%; }
.hero-waveform span:nth-child(11) { animation-delay: 1s;    height: 90%; }
.hero-waveform span:nth-child(12) { animation-delay: 1.1s;  height: 60%; }

@keyframes wave-bar {
  0%,100% { transform: scaleY(1); opacity: .8; }
  50%      { transform: scaleY(.3); opacity: .4; }
}

/* ─── Hero photo ─── */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(139,92,246,.2);
  animation: float-mic 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.hero-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(9,9,15,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-photo-badge span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.hero-photo-badge .hero-waveform { height: 32px; flex: 1; }
.hero-photo-badge .hero-waveform span { width: 3px; }

/* Floating chips */
.chip-float {
  position: absolute;
  background: rgba(9,9,15,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: .5rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 10;
}
.chip-1 { top: 12%; left: 4%; animation: chip-float1 6s ease-in-out infinite; }
.chip-2 { bottom: 22%; right: 4%; animation: chip-float2 5s ease-in-out infinite; }
@keyframes chip-float1 {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(3deg); }
}
@keyframes chip-float2 {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50%      { transform: translateY(8px) rotate(-2deg); }
}

/* ─── MARQUEE / TRUST BAR ─────────────────────────── */
.trust-bar {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  background: var(--surface);
}
.trust-bar-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-bar-item i { color: var(--grad-start); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SERVICES ───────────────────────────────────── */
.services { padding: var(--section-py) 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,.06), transparent);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: transform .3s var(--ease);
  box-shadow: 0 8px 24px rgba(139,92,246,.35);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.service-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-link {
  color: var(--grad-start);
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.service-link:hover { gap: .7rem; }

/* ─── ABOUT SPLIT ────────────────────────────────── */
.about-section { padding: var(--section-py) 0; background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-stats-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--glow-v);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--surface-2);
  border-radius: var(--radius);
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-label { font-size: .78rem; color: var(--text-dim); margin-top: .2rem; }

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-content p { color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.8; }

.check-list { margin: 1.5rem 0; display: grid; gap: .75rem; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.check-item i { color: var(--accent-2); margin-top: .2rem; flex-shrink: 0; }

/* ─── PROCESS ────────────────────────────────────── */
.process { padding: var(--section-py) 0; background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(139,92,246,.4);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.process-step p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(236,72,153,.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-banner p { color: var(--text-muted); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.cta-sub { font-size: .82rem; color: var(--text-dim); }

/* ─── WHY SECTION ────────────────────────────────── */
.why-section { padding: var(--section-py) 0; background: var(--surface); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.why-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.why-quote {
  border-left: 3px solid var(--grad-start);
  padding: 1rem 1.5rem;
  background: rgba(139,92,246,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

.why-checklist {
  display: grid;
  gap: .8rem;
}
.why-check-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1rem;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  font-size: .92rem;
  transition: border-color .2s, background .2s;
}
.why-check-item:hover { border-color: var(--border); background: var(--card-hover); }
.why-check-item i { color: var(--accent-2); width: 18px; text-align: center; }

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials { padding: var(--section-py) 0; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .25s var(--ease), border-color .25s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border); }
.stars { color: #f59e0b; font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; }
.author-location { font-size: .78rem; color: var(--text-dim); }
.testimonial-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .78rem;
  color: var(--text-dim);
}

/* ─── EQUIPMENT ──────────────────────────────────── */
.equipment { padding: var(--section-py) 0; background: var(--surface); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.equipment-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .25s var(--ease), border-color .25s;
}
.equipment-card:hover { transform: translateY(-4px); border-color: var(--border); }
.equip-tag {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grad-start);
  margin-bottom: .6rem;
}
.equipment-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.equipment-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* ─── BLOG SECTION ───────────────────────────────── */
.blog-section { padding: var(--section-py) 0; background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--surface-2), var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(6,182,212,.1));
  pointer-events: none;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-body .badge { margin-bottom: .75rem; }
.blog-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .6rem;
}
.blog-card-body p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-read-more {
  color: var(--grad-start);
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.blog-read-more:hover { gap: .7rem; }
.blog-cta-wrap { text-align: center; }

/* ─── FAQ ────────────────────────────────────────── */
.faq-section { padding: var(--section-py) 0; background: var(--surface); }
.faq-container { max-width: 780px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.faq-question:hover { background: var(--card-hover); }

/* ─── FORCE white text on FAQ (overrides any browser default) ─── */
.faq-section .faq-item button,
.faq-section .faq-item button.faq-question,
button.faq-question {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--grad-start);
  transition: transform .3s var(--ease), background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(139,92,246,.3);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.75;
  background: var(--surface-2);
  border-top: 1px solid var(--border-soft);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── CONTACT SECTION ────────────────────────────── */
.contact-section { padding: var(--section-py) 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-perks { display: grid; gap: .75rem; margin-bottom: 2rem; }
.contact-perk {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
}
.contact-perk i { color: var(--accent-2); }

/* Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }
label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
label .req { color: var(--grad-end); }
input, select, textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--surface-2);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .93rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--grad-start);
  box-shadow: 0 0 0 3px rgba(139,92,246,.15);
}
textarea { min-height: 120px; resize: vertical; }
select option { background: var(--surface-2); }
.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.form-note { font-size: .78rem; color: var(--text-dim); text-align: center; margin-top: .75rem; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .92rem;
}
.alert-success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #6ee7b7;
}
.alert-error {
  background: rgba(236,72,153,.1);
  border: 1px solid rgba(236,72,153,.3);
  color: #f9a8d4;
}

/* ─── KNOWLEDGE SECTION ──────────────────────────── */
.knowledge { padding: var(--section-py) 0; background: var(--surface); }
.knowledge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.knowledge-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.knowledge-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.knowledge-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.knowledge-stat {
  text-align: center;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}
.knowledge-stat-num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--grad-start));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.knowledge-stat-label { font-size: .75rem; color: var(--text-dim); margin-top: .2rem; }

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  padding: clamp(4rem,8vw,7rem) 0 clamp(3rem,6vw,5rem);
  background: var(--bg);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(139,92,246,.12), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ─── BREADCRUMB ─────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  justify-content: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--grad-start); }
.breadcrumb i { font-size: .7rem; }

/* ─── BLOG POST ──────────────────────────────────── */
.blog-post { padding: var(--section-py) 0; background: var(--bg); }
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.blog-post-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
  color: var(--text);
}
.blog-post-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 .5rem;
  color: var(--text);
}
.blog-post-body p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.2rem; }
.blog-post-body ul, .blog-post-body ol {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.blog-post-body li { margin-bottom: .5rem; line-height: 1.7; }
.blog-post-body blockquote {
  border-left: 3px solid var(--grad-start);
  padding: 1rem 1.5rem;
  background: rgba(139,92,246,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.5rem 0;
}
.blog-post-body strong { color: var(--text); font-weight: 600; }
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: .85rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.blog-post-meta i { color: var(--grad-start); }

/* Sidebar */
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-soft);
}
.sidebar-links { display: grid; gap: .5rem; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  transition: background .2s, color .2s;
}
.sidebar-link:hover { background: rgba(139,92,246,.1); color: var(--text); }
.sidebar-link i { color: var(--grad-start); width: 16px; }

/* ─── SERVICES PAGE ──────────────────────────────── */
.services-full { padding: var(--section-py) 0; background: var(--bg); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail-content { order: 2; }
.service-detail:nth-child(even) .service-detail-visual { order: 1; }
.service-detail-icon {
  font-size: 5rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-v);
}
.service-detail-content .badge { margin-bottom: 1rem; }
.service-detail-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.service-detail-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.service-features { display: grid; gap: .6rem; margin: 1.5rem 0; }
.service-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
}
.service-feature i { color: var(--accent-2); }

/* ─── LEGAL PAGES ────────────────────────────────── */
.legal-content { padding: var(--section-py) 0; background: var(--bg); }
.legal-body { max-width: 780px; margin-inline: auto; }
.legal-body h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.5rem 0 .75rem;
  color: var(--text);
}
.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 .5rem;
}
.legal-body p, .legal-body li { color: var(--text-muted); line-height: 1.8; margin-bottom: .75rem; }
.legal-body ul { padding-left: 1.5rem; }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  padding: clamp(3rem,6vw,5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-soft);
}
.footer-desc { color: var(--text-muted); font-size: .88rem; line-height: 1.7; margin: .75rem 0 1.25rem; }
.footer-socials { display: flex; gap: .6rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-muted);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.social-link:hover {
  background: rgba(139,92,246,.15);
  color: var(--grad-start);
  border-color: rgba(139,92,246,.4);
  box-shadow: 0 0 12px rgba(139,92,246,.25);
}
.footer-heading {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links { display: grid; gap: .5rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: .88rem;
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: var(--grad-start); padding-left: 4px; }
.footer-contact-list { display: grid; gap: .7rem; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-muted);
}
.footer-contact-list li i { color: var(--grad-start); width: 14px; }
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--grad-start); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-dim);
}
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: var(--text-dim); }
.footer-legal-links a:hover { color: var(--text-muted); }

/* ─── ANIMATIONS ─────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner      { gap: 2.5rem; }
  .about-grid      { gap: 2.5rem; }
  .why-grid        { gap: 2.5rem; }
  .knowledge-inner { gap: 2.5rem; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .service-detail  { gap: 2rem; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 74px 0 0;
    background: rgba(9,9,15,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem 1rem;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 1rem; }
  .nav-cta  { justify-content: center; margin: 1rem 0 0; padding: .9rem; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-photo-wrap { max-width: 340px; }

  /* Grids */
  .about-grid, .why-grid, .knowledge-inner,
  .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-content,
  .service-detail:nth-child(even) .service-detail-visual { order: unset; }

  .form-row { grid-template-columns: 1fr; }
  .knowledge-stats { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .chip-1 { left: -5%; font-size: .72rem; }
  .chip-2 { right: -5%; font-size: .72rem; }
  .knowledge-stats { grid-template-columns: 1fr 1fr; }
  .knowledge-stats .knowledge-stat:last-child { grid-column: span 2; }
}

/* ─── SUCCESS MODAL ──────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,.8), var(--glow-v);
  transform: translateY(30px) scale(.96);
  transition: transform .4s var(--ease);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 0 40px rgba(16,185,129,.4);
  animation: modal-pop .5s var(--ease) .1s both;
}
@keyframes modal-pop {
  0%  { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); }
  100%{ transform: scale(1); opacity: 1; }
}
.modal-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .75rem;
}
.modal-text {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.modal-text strong { color: var(--text); }
.modal-close-btn {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  border: none;
  padding: .85rem 2.5rem;
  border-radius: 9999px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139,92,246,.45);
  transition: transform .2s, box-shadow .2s;
}
.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,92,246,.6);
  color: #fff;
}
.modal-close-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.modal-close-x:hover { background: var(--card-hover); color: var(--text); }
.modal-confetti {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ─── ADDITIONAL READABILITY FIXES ──────────────── */
.nav-link, .nav-link.active { color: var(--text); }
.nav-link:not(.active) { color: var(--text-muted); }
.service-card p, .testimonial-text, .about-content p,
.why-content p, .knowledge-content p, .contact-info p { color: var(--text-muted); }
.service-card h3, .equipment-card h3, .blog-card-body h3,
.process-step h3, .testimonial-card h3 { color: var(--text); }
.hero-sub { color: var(--text-muted); }
.about-stat-label, .hero-stat-label,
.knowledge-stat-label { color: var(--text-dim); }
.footer-desc, .footer-links a, .footer-contact-list li { color: var(--text-muted); }
.footer-links a:hover { color: var(--grad-start); }
.blog-post-body p, .blog-post-body li { color: var(--text-muted); }
.blog-post-body h2, .blog-post-body h3 { color: var(--text); }
.legal-body p, .legal-body li { color: var(--text-muted); }
.legal-body h2, .legal-body h3 { color: var(--text); }
.faq-answer-inner { color: var(--text-muted); }
.sidebar-link { color: var(--text-muted); }
.sidebar-link:hover { color: var(--text); }
.check-item, .why-check-item, .service-feature,
.contact-perk { color: var(--text-muted); }
.equip-tag { color: var(--grad-start); }
.author-name { color: var(--text); }
.author-location { color: var(--text-dim); }
select option { color: var(--text); background: var(--surface-2); }
