/* Sid Media Services — Global Styles */
:root {
  --bg: #0b0b12;
  --bg-2: #11111b;
  --surface: #16161f;
  --surface-2: #1d1d2a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #9aa3b2;
  --secondary: #7c3aed;   /* deep purple */
  --accent: #2563eb;      /* electric blue */
  --highlight: #22d3ee;   /* neon cyan */
  --pink: #ec4899;
  --bg-light: #f7f8fb;
  --text-dark: #0b0b12;
  --grad: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #22d3ee 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.18));
  --radius: 16px;
  --shadow-glow: 0 20px 60px -20px rgba(124, 58, 237, 0.45);
  --shadow-card: 0 10px 30px -10px rgba(0,0,0,.5);
  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Poppins', 'Montserrat', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; position: relative; }
.section-tight { padding: 3.5rem 0; }
.eyebrow {
  display: inline-block; padding: .35rem .85rem; font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; border-radius: 999px;
  background: var(--grad-soft); color: var(--highlight); border: 1px solid rgba(34,211,238,.25);
  margin-bottom: 1rem;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { margin-top: .75rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
  padding: 1rem 0;
}
.nav.scrolled {
  background: rgba(11,11,18,.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
}
.brand:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(34,211,238,.5); }
.brand img { display: block; height: 60px; width: auto; }
.footer .brand { background: transparent; border: none; padding: 0; }
.footer .brand img { height: 60px; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .55rem .9rem; border-radius: 10px; font-size: .92rem; font-weight: 500; color: var(--text);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--highlight); background: rgba(34,211,238,.08); }
.nav-cta { margin-left: .5rem; }
.hamburger {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text);
  transition: transform .3s var(--ease);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 12px; font-weight: 600; font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff; box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 25px 70px -20px rgba(124,58,237,.7); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-outline { border-color: rgba(34,211,238,.45); color: var(--highlight); }
.btn-outline:hover { background: rgba(34,211,238,.08); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; padding-top: 7rem; padding-bottom: 4rem;
  display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(40% 40% at 50% 50%, rgba(37,99,235,.12), transparent 70%),
    var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero h1 span.gradient-text { display: inline; }
.hero-sub { font-size: 1.1rem; margin: 1.25rem 0 2rem; max-width: 560px; color: #cbd2dc; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.trust-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .85rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 999px;
  font-size: .82rem; color: #d4dae6;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--highlight); }

/* hero visual */
.hero-visual { position: relative; height: 480px; }
.hero-card {
  position: absolute; border-radius: 20px; padding: 1rem 1.1rem;
  background: rgba(22,22,31,.7); backdrop-filter: blur(14px);
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: .75rem; min-width: 220px;
  animation: float 6s ease-in-out infinite;
}
.hero-card .ico {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff;
}
.hero-card h4 { font-size: .95rem; }
.hero-card p { font-size: .8rem; color: var(--muted); margin: 0; }
.hero-card.c1 { top: 4%; left: 0; }
.hero-card.c2 { top: 32%; right: 0; animation-delay: -2s; }
.hero-card.c3 { top: 60%; left: 8%; animation-delay: -4s; }
.hero-card.c4 { bottom: 0; right: 6%; animation-delay: -3s; }
.hero-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--grad); filter: blur(60px); opacity: .55; animation: pulse 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .55; } 50% { transform: translate(-50%, -50%) scale(1.08); opacity: .75; } }

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

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-soft); opacity: 0; transition: opacity .3s; pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,.45); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card h3 { margin: 1rem 0 .5rem; }
.card p { font-size: .95rem; }
.card .learn {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: 1rem; color: var(--highlight); font-weight: 600; font-size: .9rem;
}
.card .learn svg { width: 14px; transition: transform .25s; }
.card:hover .learn svg { transform: translateX(4px); }
.icon-wrap {
  width: 56px; height: 56px; border-radius: 14px; background: var(--grad);
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-glow);
}
.icon-wrap svg { width: 26px; height: 26px; }

/* ---------- Why Choose / Benefits ---------- */
.feat {
  padding: 1.5rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .3s, background .3s;
}
.feat:hover { transform: translateY(-4px); background: var(--surface-2); }
.feat .ico-s {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-soft); display: grid; place-items: center; color: var(--highlight);
}
.feat h4 { font-family: 'Poppins'; font-size: 1.02rem; margin-bottom: .25rem; }
.feat p { font-size: .9rem; margin: 0; }

/* ---------- Portfolio ---------- */
.portfolio-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.chip {
  padding: .55rem 1.05rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  font-size: .85rem; font-weight: 500; color: var(--muted); transition: all .25s;
}
.chip:hover { color: var(--text); border-color: rgba(124,58,237,.5); }
.chip.active { background: var(--grad); color: #fff; border-color: transparent; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.portfolio-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: var(--grad-soft); border: 1px solid var(--border); cursor: pointer;
}
.portfolio-item .thumb {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Poppins'; font-weight: 700; font-size: 1.2rem; color: rgba(255,255,255,.55);
  background-size: cover; background-position: center;
}
.portfolio-item .overlay {
  position: absolute; inset: 0; padding: 1.25rem; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(11,11,18,.92));
  opacity: 0; transition: opacity .3s;
}
.portfolio-item:hover .overlay { opacity: 1; }
.portfolio-item:hover .thumb { transform: scale(1.05); }
.portfolio-item .thumb { transition: transform .5s var(--ease); }
.portfolio-item .tag { font-size: .72rem; color: var(--highlight); text-transform: uppercase; letter-spacing: .1em; }
.portfolio-item h4 { color: #fff; margin-top: .35rem; font-size: 1.05rem; }
.portfolio-item .stats { display: flex; gap: 1rem; margin-top: .5rem; color: #cbd2dc; font-size: .8rem; }
.portfolio-item.hidden { display: none; }

/* gradient backgrounds for portfolio thumbs */
.bg-1 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.bg-2 { background: linear-gradient(135deg, #ec4899, #f97316); }
.bg-3 { background: linear-gradient(135deg, #22d3ee, #0ea5e9); }
.bg-4 { background: linear-gradient(135deg, #10b981, #22d3ee); }
.bg-5 { background: linear-gradient(135deg, #f59e0b, #ec4899); }
.bg-6 { background: linear-gradient(135deg, #8b5cf6, #06b6d4); }

/* ---------- Process Timeline ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step {
  position: relative; padding: 1.75rem 1.5rem 1.5rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); transition: transform .3s;
}
.step:hover { transform: translateY(-4px); }
.step .num {
  position: absolute; top: -22px; left: 1.5rem; width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-family: 'Poppins'; font-weight: 700; font-size: 1.05rem; box-shadow: var(--shadow-glow);
}
.step h4 { margin: .75rem 0 .35rem; font-family: 'Poppins'; }
.step p { font-size: .92rem; }

/* ---------- Testimonials ---------- */
.testi {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; position: relative;
}
.testi::before {
  content: '“'; position: absolute; top: -10px; right: 18px;
  font-family: 'Poppins'; font-size: 6rem; line-height: 1; color: rgba(124,58,237,.3);
}
.testi p { color: #d4dae6; font-size: .98rem; }
.testi-who { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 700;
}
.testi-who strong { display: block; color: var(--text); font-size: .95rem; }
.testi-who span { color: var(--muted); font-size: .82rem; }
.stars { color: #fbbf24; margin-bottom: .75rem; font-size: .9rem; letter-spacing: 2px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad); border-radius: 24px; padding: 3.5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.2), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,.15), transparent 50%);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); margin: .75rem 0 1.75rem; position: relative; }
.cta-band .btn-primary { background: #fff; color: var(--secondary); box-shadow: 0 20px 60px -10px rgba(0,0,0,.4); }
.cta-band .btn-primary:hover { background: #f5f5f5; }
.cta-band .btn-ghost { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.25); }
.cta-band-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Counters ---------- */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.counter {
  text-align: center; padding: 1.75rem 1rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.counter .num {
  font-family: 'Poppins'; font-weight: 800; font-size: 2.5rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.counter .label { color: var(--muted); margin-top: .35rem; font-size: .9rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--secondary), var(--highlight));
}
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-item::before {
  content: ''; position: absolute; left: -28px; top: 6px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 0 4px rgba(124,58,237,.18);
}
.tl-item h4 { font-family: 'Poppins'; margin-bottom: .25rem; }
.tl-item .year { color: var(--highlight); font-size: .85rem; font-weight: 600; letter-spacing: .08em; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: .75rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 1.1rem 1.25rem; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; font-size: 1rem;
}
.faq-q .plus { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px;
  background: var(--highlight); transform: translate(-50%, -50%); transition: transform .3s;
}
.faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  padding: 0 1.25rem;
}
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 1.1rem; }
.faq-a p { font-size: .94rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding: 9rem 0 4rem; text-align: center;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(124,58,237,.18), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero p { max-width: 680px; margin: 1rem auto 0; }

/* ---------- Service detail blocks ---------- */
.svc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.svc:nth-child(even) .svc-art { order: -1; }
.svc-art {
  aspect-ratio: 4/3; border-radius: 20px; position: relative; overflow: hidden;
  border: 1px solid var(--border); display: grid; place-items: center; color: #fff;
}
.svc-art svg { width: 100px; height: 100px; opacity: .9; }
.svc h2 { margin-bottom: 1rem; }
.svc ul { list-style: none; margin: 1rem 0; }
.svc ul li { padding: .4rem 0; padding-left: 1.5rem; position: relative; color: #cbd2dc; }
.svc ul li::before {
  content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--highlight); box-shadow: 0 0 8px var(--highlight);
}
.svc h3 { margin-top: 1.25rem; color: var(--highlight); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; }
.form-card, .info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-size: .85rem; color: #d4dae6; font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  padding: .8rem .95rem; border-radius: 10px; font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--highlight); box-shadow: 0 0 0 3px rgba(34,211,238,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: #f87171; font-size: .8rem; min-height: 1em; }
.info-row { display: flex; gap: .85rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px dashed var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row .ico-s { flex-shrink: 0; }
.info-row strong { display: block; color: var(--text); font-weight: 600; margin-bottom: .15rem; }
.info-row span, .info-row a { color: var(--muted); font-size: .92rem; }
.info-row a:hover { color: var(--highlight); }

.map-wrap { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: invert(.92) hue-rotate(180deg); }

/* Floating actions */
.float-btn {
  position: fixed; right: 1.25rem; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-card);
  z-index: 90; transition: transform .25s;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; }
.fab-wa { bottom: 1.25rem; background: #25d366; }
.fab-call { bottom: 5.5rem; background: var(--accent); }
.back-top {
  position: fixed; right: 1.25rem; bottom: 10rem; width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 90;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); border-color: var(--highlight); }
.back-top svg { width: 18px; height: 18px; color: var(--highlight); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2); border-top: 1px solid var(--border); padding: 4rem 0 2rem; margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer h5 { font-family: 'Poppins'; font-size: .9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--highlight); }
.footer-about p { font-size: .92rem; margin: 1rem 0; }
.socials { display: flex; gap: .5rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; background: var(--surface);
  border: 1px solid var(--border); display: grid; place-items: center;
  color: var(--muted); transition: all .25s;
}
.socials a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .85rem;
}

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; color: var(--text); }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal ul { color: #cbd2dc; margin-bottom: .75rem; }
.legal ul { padding-left: 1.25rem; }
.legal ul li { margin-bottom: .35rem; }
.legal .muted { color: var(--muted); font-size: .9rem; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .process, .counters, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .svc, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 1rem; }
  .svc:nth-child(even) .svc-art { order: 0; }
  .footer-grid { gap: 2.5rem; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 320px;
    background: var(--bg-2); flex-direction: column; align-items: stretch; padding: 5rem 1.25rem 2rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
    border-left: 1px solid var(--border); gap: .25rem;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: .9rem 1rem; }
  .nav-cta { margin: 1rem 0 0; }
  .hamburger { display: inline-flex; }
  .grid-3, .grid-2, .process, .counters, .portfolio-grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 6rem; min-height: auto; }
  .hero-card.c1, .hero-card.c2, .hero-card.c3, .hero-card.c4 { position: relative; top: auto; left: auto; right: auto; bottom: auto; margin-bottom: .75rem; animation: none; }
  .hero-visual { height: auto; display: flex; flex-direction: column; }
  .hero-orb { display: none; }
  .cta-band { padding: 2.5rem 1.25rem; }
}
