/* =========================================================
   DJ TOBI ON TOUR — Rebrand 2026
   Modern light design system — blue accent
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg:          #f6f9fe;
  --bg-2:        #eef3fb;
  --surface:     #ffffff;
  --surface-2:   #f3f7fd;
  --border:      rgba(15,23,42,.10);
  --border-soft: rgba(15,23,42,.06);

  --text:        #0f1f3d;
  --muted:       #54607a;
  --muted-2:     #8a94aa;

  /* accent scale (kept as legacy names so all references turn blue) */
  --violet:      #2563eb;
  --magenta:     #2f6bff;
  --pink:        #3b82f6;
  --cyan:        #0ea5e9;

  --accent:      var(--magenta);
  --grad:        linear-gradient(120deg, #2563eb 0%, #2f6bff 50%, #0ea5e9 100%);
  --grad-soft:   linear-gradient(120deg, rgba(37,99,235,.10), rgba(14,165,233,.10));
  --glow:        0 0 40px rgba(47,107,255,.30);

  --radius:      18px;
  --radius-lg:   26px;
  --maxw:        1180px;

  --shadow:      0 24px 60px -24px rgba(15,23,42,.22);
  --ease:        cubic-bezier(.22,.61,.36,1);

  --font-head:   'Space Grotesk', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

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

/* Ambient background glows */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(60% 50% at 80% -5%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(45% 45% at 0% 35%, rgba(14,165,233,.08), transparent 60%),
    radial-gradient(50% 50% at 100% 100%, rgba(59,130,246,.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; z-index: 1; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--grad-soft);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 10px var(--magenta);
}

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

.lead { color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); max-width: 62ch; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); }
.section-head.center { text-align: center; }
.section-head .lead { margin: 18px auto 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -8px rgba(47,107,255,.6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(47,107,255,.75); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: rgba(15,23,42,.02); }
.btn-ghost:hover { border-color: var(--magenta); background: rgba(47,107,255,.08); transform: translateY(-3px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }
.brand img { height: 46px; width: auto; filter: invert(1) drop-shadow(0 0 10px rgba(47,107,255,.25)); }
.brand span small { display: block; font-size: .62rem; letter-spacing: .3em; color: var(--muted); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--muted);
  padding: 10px 16px; border-radius: 100px; transition: color .25s, background .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(47,107,255,.08); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; border-radius: 12px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 78px; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; width: 100%; padding: 40px 0; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust .t { }
.hero-trust .t b { font-family: var(--font-head); font-size: 1.7rem; display: block; }
.hero-trust .t span { font-size: .82rem; color: var(--muted); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo {
  position: relative; z-index: 2;
  max-height: 72vh; width: auto;
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 30px 70px -20px rgba(15,23,42,.28), 0 0 0 6px rgba(47,107,255,.12), var(--glow);
  animation: floaty 6s ease-in-out infinite;
  object-fit: cover;
}
.hero-disc {
  position: absolute; z-index: 1; width: 115%; max-width: 560px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  opacity: .10; filter: invert(34%) sepia(89%) saturate(2400%) hue-rotate(212deg) brightness(101%);
  animation: spin 40s linear infinite;
}
.hero-blob {
  position: absolute; z-index: 0; width: 420px; height: 420px; border-radius: 50%;
  background: var(--grad); filter: blur(90px); opacity: .35;
  top: 45%; left: 50%; transform: translate(-50%,-50%);
}
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll::after { content: ""; width: 1px; height: 36px; background: linear-gradient(var(--magenta), transparent); animation: scrolly 2s ease-in-out infinite; }

@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg) } }
@keyframes scrolly { 0%,100% { opacity: .3; transform: scaleY(.6) } 50% { opacity: 1; transform: scaleY(1) } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 50px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--muted-2); display: inline-flex; align-items: center; gap: 50px; }
.marquee-track span::after { content: "✦"; color: var(--magenta); }
@keyframes marquee { to { transform: translateX(-50%) } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { padding: 32px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: transform .3s var(--ease), border-color .3s; }
.stat:hover { transform: translateY(-6px); border-color: rgba(47,107,255,.4); }
.stat b { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); display: block; }
.stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Cards / Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--grad-soft); opacity: 0; transition: opacity .35s; pointer-events: none; }
.card:hover { transform: translateY(-8px); border-color: rgba(47,107,255,.35); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--grad); margin-bottom: 22px; box-shadow: var(--glow); }
.card .ic svg { width: 28px; height: 28px; color: #fff; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .98rem; }

/* Service link cards (with image) */
.svc-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.svc-card:hover { transform: translateY(-8px); border-color: rgba(47,107,255,.35); box-shadow: var(--shadow); }
.svc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: saturate(1.05); }
.svc-card:hover .svc-media img { transform: scale(1.08); }
.svc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,.85)); }
.svc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { margin-bottom: 10px; }
.svc-body p { color: var(--muted); font-size: .96rem; margin-bottom: 20px; flex: 1; }
.svc-link { font-family: var(--font-head); font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 8px; transition: gap .3s, color .3s; }
.svc-link svg { width: 18px; height: 18px; color: var(--magenta); transition: transform .3s; }
.svc-card:hover .svc-link { color: var(--magenta); }
.svc-card:hover .svc-link svg { transform: translateX(5px); }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow); }
.split-media .badge {
  position: absolute; bottom: -22px; right: -10px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.split-media .badge b { font-family: var(--font-head); font-size: 1.6rem; display: block; line-height: 1; }
.split-media .badge span { font-size: .8rem; color: var(--muted); }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--muted); margin-bottom: 18px; }

/* Feature list */
.flist { display: grid; gap: 16px; margin: 28px 0; }
.flist li { display: flex; gap: 14px; align-items: flex-start; }
.flist .chk { flex: none; width: 28px; height: 28px; border-radius: 9px; background: var(--grad-soft); border: 1px solid var(--border); display: grid; place-items: center; margin-top: 2px; }
.flist .chk svg { width: 15px; height: 15px; color: var(--magenta); }
.flist b { font-family: var(--font-head); display: block; margin-bottom: 2px; }
.flist span { color: var(--muted); font-size: .94rem; }

/* ---------- Process / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; line-height: 1; margin-bottom: 14px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 180px; gap: 16px; }
.gallery a { overflow: hidden; border-radius: var(--radius); position: relative; border: 1px solid var(--border); }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.1); }
.gallery .big { grid-column: span 2; grid-row: span 2; }
.gallery .tall { grid-row: span 2; }

/* ---------- Testimonials ---------- */
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; position: relative; }
.quote .stars { color: #fbbf24; letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.quote p { font-size: 1.05rem; margin-bottom: 22px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote .who b { font-family: var(--font-head); display: block; font-size: .95rem; }
.quote .who span { color: var(--muted); font-size: .82rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px,7vw,90px) 40px; text-align: center; border: 1px solid var(--border); background: var(--surface); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .14; }
.cta-band::after { content: ""; position: absolute; width: 500px; height: 500px; background: var(--grad); filter: blur(110px); opacity: .3; top: -40%; left: 50%; transform: translateX(-50%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: 150px 0 60px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 18px; max-width: 18ch; }
.page-hero .lead { }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--muted-2); font-size: .85rem; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--magenta); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(255,255,255,.6) 50%, var(--bg) 100%); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; align-items: center; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .3s, transform .3s; }
.contact-card:hover { border-color: rgba(47,107,255,.4); transform: translateY(-4px); }
.contact-card .ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--border); display: grid; place-items: center; }
.contact-card .ic svg { width: 24px; height: 24px; color: var(--magenta); }
.contact-card b { font-family: var(--font-head); display: block; }
.contact-card span, .contact-card a { color: var(--muted); font-size: .95rem; }
.contact-card a:hover { color: var(--magenta); }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-family: var(--font-head); font-weight: 500; margin-bottom: 8px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  font-family: inherit; font-size: .96rem; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(47,107,255,.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a6a6bd' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form .btn { width: 100%; margin-top: 6px; }
.form-embed { background: #fff; padding: 8px; }
.form-embed iframe { width: 1px; min-width: 100%; border: none; border-radius: 12px; display: block; min-height: 520px; }
.form-embed .form-note { color: var(--muted-2); padding: 10px 14px 4px; }
.form-note { font-size: .8rem; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form-success { display: none; background: var(--grad-soft); border: 1px solid rgba(47,107,255,.4); border-radius: 12px; padding: 16px; margin-bottom: 18px; color: var(--text); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--text); }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: .3s; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--magenta); }
.faq-q .pm::before { width: 11px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 11px; transition: transform .3s; }
.faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .pm { background: var(--grad-soft); border-color: var(--magenta); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 70px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 64px; margin-bottom: 18px; filter: invert(1); }
.footer-brand p { color: var(--muted); font-size: .95rem; max-width: 34ch; }
.footer-col h4 { font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: .95rem; transition: color .25s; }
.footer-col a:hover { color: var(--magenta); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .85rem; }
.footer-bottom a:hover { color: var(--magenta); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--magenta); }
.legal strong { color: var(--text); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-photo { max-height: 46vh; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .grid-3, .steps, .stats { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    padding: 20px 24px 30px; border-bottom: 1px solid var(--border);
    transform: translateY(-130%); transition: transform .4s var(--ease); z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: flex; }
  .form .row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .steps, .stats, .footer-grid, .gallery { grid-template-columns: 1fr; }
  .gallery .big { grid-column: span 1; grid-row: span 1; }
  .split-media .badge { right: 50%; transform: translateX(50%); }
  .form, .card, .quote { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
