/* =============================================================
   JAS FULL REMODELING — styles.css
   4Inspirations Agency — premium architectural/dark direction
   =============================================================
   1. Tokens
   2. Reset & base
   3. Utilities
   4. Typography
   5. Components (btn, card, nav, form)
   6. Sections
   7. Effects
   8. Responsive
   9. Reduced motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #050505;
  --bg-2:      #0a0a0a;
  --bg-3:      #171717;
  --bg-card:   #131313;
  --ink:       #FFFFFF;
  --ink-dim:   #A8A8A8;
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(183,240,0,.35);
  --lime:      #B7F000;
  --lime-dim:  #9AD200;
  --green:     #4F7300;
  --graphite:  #171717;
  --metal:     #A8A8A8;

  --display: "Anton", "Arial Narrow Bold", sans-serif;
  --kicker-font: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --header-h: 84px;
}

@property --mesh-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }
::selection { background: var(--lime); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--lime); color: var(--bg);
  z-index: 9999; border-radius: 4px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.icon {
  width: 1em; height: 1em; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--kicker-font); text-transform: uppercase;
  letter-spacing: .22em; font-size: .78rem; color: var(--lime);
  margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--lime); display: inline-block; }
.divider { height: 1px; background: var(--line); border: 0; }
.text-dim { color: var(--ink-dim); }

/* =============================================================
   4. Typography
   ============================================================= */
h1, .h1 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 1.0;
}
h2, .h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}
h3, .h3 {
  font-family: var(--kicker-font);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-dim); max-width: 60ch; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--kicker-font); text-transform: uppercase; letter-spacing: .08em;
  font-size: .88rem; font-weight: 600; padding: 1rem 1.8rem;
  border-radius: var(--radius); transition: transform .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--lime); color: #050505; }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* Cards */
.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: border-color .4s var(--ease-out), transform .4s var(--ease-out);
}
.card:hover { border-color: var(--line-2); }

/* Nav */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 200;
  height: var(--header-h); display: flex; align-items: center;
  background: rgba(5,5,5,.72); backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease-out), height .3s var(--ease-out);
}
.site-header.is-scrolled { background: rgba(5,5,5,.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1.5rem; }
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 40px; width: auto; }
.nav-links { display: none; align-items: center; gap: clamp(1.2rem, 2vw, 2.2rem); }
.nav-links a {
  font-family: var(--kicker-font); font-size: .84rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ink-dim); position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--lime); transition: width .3s var(--ease-out);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.lang-toggle {
  display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  font-family: var(--kicker-font); font-size: .74rem; letter-spacing: .06em;
}
.lang-toggle button { padding: .4rem .75rem; color: var(--ink-dim); }
.lang-toggle button[aria-pressed="true"] { background: var(--lime); color: var(--bg); }
.nav-call { display: none; align-items: center; gap: .4rem; color: var(--ink-dim); }
.nav-call:hover { color: var(--lime); }
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 190; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding: 2rem var(--gutter); transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer a { font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
.mobile-drawer .btn { align-self: flex-start; margin-top: 1rem; }

/* Floating action buttons */
.fab-stack { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 150; display: flex; flex-direction: column; gap: .7rem; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.5); transition: transform .3s var(--ease-bounce);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 24px; height: 24px; }
.fab-call { background: var(--lime); color: #050505; }
.fab-whatsapp { background: #171717; color: var(--lime); border: 1px solid var(--line-2); }

/* Forms */
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.field label { font-family: var(--kicker-font); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-dim); }
.field input, .field select, .field textarea {
  background: var(--bg-3); border: 1px solid var(--line); color: var(--ink);
  padding: .85rem 1rem; border-radius: var(--radius); font-family: var(--sans); font-size: .95rem;
  transition: border-color .3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.field-error { color: var(--lime); font-size: .8rem; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff5a5a; }
.field.has-error .field-error { display: block; color: #ff8a8a; }
.upload-drop {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
  color: var(--ink-dim); cursor: pointer; transition: border-color .3s var(--ease-out);
}
.upload-drop:hover { border-color: var(--lime); }
.upload-drop svg { width: 28px; height: 28px; color: var(--lime); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.is-visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--lime); margin-inline: auto 1rem; }

/* =============================================================
   6. Sections
   ============================================================= */

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: var(--header-h); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.35) 0%, rgba(5,5,5,.55) 55%, var(--bg) 100%);
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background: conic-gradient(from var(--mesh-angle) at 30% 20%, rgba(183,240,0,.16), transparent 35%);
  animation: meshRotate 18s linear infinite;
}
@keyframes meshRotate { to { --mesh-angle: 360deg; } }
.hero-inner { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 5rem) clamp(3rem, 7vw, 4.5rem); width: 100%; }
.hero-title { max-width: 16ch; }
.hero-title em { color: var(--lime); font-style: normal; }
.hero-sub { margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-badges {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 1.6rem;
  margin-top: 2.6rem; max-width: 640px;
}
.hero-badge { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--ink-dim); }
.hero-badge svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; }

/* Before/after mini compare in hero */
.ba-compare {
  position: relative; margin-top: 2.4rem; max-width: 480px; aspect-ratio: 16/10;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
}
.ba-compare img, .ba-compare svg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after-wrap { position: absolute; inset: 0; overflow: hidden; width: 55%; border-right: 2px solid var(--lime); }
.ba-compare .ba-after-wrap > * { width: var(--ba-w, 600px); height: 100%; max-width: none; object-fit: cover; }
.ba-tag { position: absolute; top: .7rem; font-family: var(--kicker-font); font-size: .68rem; letter-spacing: .1em; padding: .3rem .6rem; background: rgba(5,5,5,.7); border-radius: 999px; }
.ba-tag-before { right: .7rem; }
.ba-tag-after { left: .7rem; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 55%; width: 2px; background: var(--lime);
  display: flex; align-items: center; justify-content: center; cursor: ew-resize; touch-action: none;
}
.ba-handle::before {
  content: ""; width: 34px; height: 34px; border-radius: 50%; background: var(--lime);
  display: block;
}

/* ---- Trust bar ---- */
.trust-bar {
  border-block: 1px solid var(--line); background: var(--bg-2);
  padding-block: 1.4rem; overflow: hidden;
}
.trust-track { display: flex; gap: clamp(2rem, 4vw, 3.5rem); width: max-content; animation: trustScroll 28s linear infinite; }
.trust-track span { display: flex; align-items: center; gap: .6rem; font-family: var(--kicker-font); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-dim); white-space: nowrap; }
.trust-track span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
@keyframes trustScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Services ---- */
.services-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.service-card { display: flex; flex-direction: column; gap: 1rem; }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius); background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; color: var(--lime);
  border: 1px solid var(--line-2);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.05rem; }
.service-meta { display: flex; flex-direction: column; gap: .35rem; font-size: .82rem; color: var(--ink-dim); margin-top: .3rem; }
.service-meta b { color: var(--ink); font-weight: 600; }
.service-card .btn { margin-top: .6rem; align-self: flex-start; }

/* ---- Differentiator ---- */
.diff-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }
.diff-points { display: grid; gap: .9rem; grid-template-columns: 1fr; }
.diff-point { display: flex; gap: .8rem; align-items: flex-start; padding-block: .9rem; border-top: 1px solid var(--line); }
.diff-point svg { width: 20px; height: 20px; color: var(--lime); flex-shrink: 0; margin-top: .15rem; }

/* ---- Gallery ---- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.gallery-filters button {
  padding: .5rem 1.1rem; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--kicker-font); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-dim); transition: all .3s var(--ease-out);
}
.gallery-filters button[aria-pressed="true"], .gallery-filters button:hover { border-color: var(--lime); color: var(--lime); }
.gallery-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-item img, .gallery-item svg { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-item:hover img, .gallery-item:hover svg { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset-inline: 0; bottom: 0; padding: 1rem 1.1rem;
  background: linear-gradient(0deg, rgba(5,5,5,.9), transparent);
  font-family: var(--kicker-font); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
}
.gallery-note {
  margin-top: 1.6rem; padding: 1rem 1.2rem; border: 1px dashed var(--line);
  border-radius: var(--radius); color: var(--ink-dim); font-size: .85rem;
}

/* ---- Process ---- */
.process-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; counter-reset: step; }
.process-step { position: relative; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.process-num { font-family: var(--display); font-size: 2.6rem; color: var(--lime); display: block; margin-bottom: .6rem; }

/* ---- About ---- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.about-signature { margin-top: 1.8rem; font-family: var(--kicker-font); text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; color: var(--lime); }

/* ---- Testimonials ---- */
.testimonial-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.testimonial-card { display: flex; flex-direction: column; gap: .9rem; }
.stars { display: flex; gap: .2rem; color: var(--lime); }
.stars svg { width: 16px; height: 16px; }
.testimonial-quote { font-size: 1rem; color: var(--ink-dim); }
.testimonial-meta { font-family: var(--kicker-font); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); }
.testimonial-meta span { color: var(--ink-dim); text-transform: none; letter-spacing: 0; display: block; font-family: var(--sans); font-size: .82rem; margin-top: .15rem; }
.testimonial-sample-flag {
  display: inline-block; margin-bottom: .5rem; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--bg); background: var(--lime); padding: .2rem .5rem; border-radius: 999px;
}

/* ---- Service areas ---- */
.areas-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
.areas-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.areas-list span {
  padding: .45rem .9rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: .82rem; color: var(--ink-dim); display: flex; align-items: center; gap: .4rem;
}
.areas-list span svg { width: 14px; height: 14px; color: var(--lime); }
.areas-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.areas-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9); }

/* ---- Quote form section ---- */
.quote-section { background: var(--bg-2); border-block: 1px solid var(--line); }
.quote-form { max-width: 760px; }

/* ---- Final CTA ---- */
.cta-final {
  position: relative; padding-block: clamp(5rem, 12vw, 9rem); text-align: center;
  background: var(--bg-2); overflow: hidden;
}
.cta-final .hero-bg { opacity: .55; }
.cta-final-inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.cta-final .btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }

/* ---- Footer ---- */
.site-footer { background: var(--bg-3); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: var(--ink-dim); font-size: .9rem; max-width: 32ch; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--ink-dim);
  transition: all .3s var(--ease-out);
}
.footer-social a:hover { color: var(--lime); border-color: var(--lime); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--kicker-font); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-dim); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: var(--ink-dim); font-size: .9rem; transition: color .3s var(--ease-out); }
.footer-col a:hover { color: var(--lime); }
.footer-col li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--ink-dim); }
.footer-col li svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--ink-dim);
}
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a:hover { color: var(--lime); }

/* ---- Simple inner page hero (About, Services, Projects, Contact, Privacy) ---- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.breadcrumb { font-family: var(--kicker-font); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--lime); }

/* Legal page */
.legal-content { max-width: 74ch; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.2rem; margin-bottom: .8rem; }
.legal-content p, .legal-content li { color: var(--ink-dim); margin-bottom: .9rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; }

/* =============================================================
   7. Effects
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive: never hide split-text if JS is stale */
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

.tilt { transition: transform .4s var(--ease-out); will-change: transform; }

.diag-line {
  position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: .35; pointer-events: none;
}

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.count-up { font-variant-numeric: tabular-nums; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .field-row-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-call { display: flex; }
  .nav-toggle { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: 1.1fr .9fr; }
  .about-grid { grid-template-columns: .9fr 1.1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* =============================================================
   9. Reduced motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .trust-track { animation: none; }
  html { scroll-behavior: auto; }
}
