/* ============================================================
   Studio Andrea Galletto — services.css
   Foglio di stile condiviso dalle pagine "Aree di competenza"
   (consulenza-fiscale / consulenza-aziendale / consulenza-del-lavoro)
   Mirror del design system di index.html — "Studio sobrio moderno".
   ============================================================ */

@font-face{font-family:'Inter';font-style:normal;font-weight:300 700;font-display:swap;src:url('/assets/fonts/inter-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:300 700;font-display:swap;src:url('/assets/fonts/inter-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}

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

:root {
  --deep:       #003740;
  --deep-2:     #014a55;
  --teal:       #6499ab;
  --teal-2:     #4a8094;
  --teal-lt:    #a8c5d2;
  --teal-soft:  #c8dde4;
  --teal-bg:    #e8eef0;

  --paper:      #ffffff;
  --paper-2:    #f7f7f5;
  --paper-3:    #eeeeec;
  --rule:       #e5e5e2;
  --rule-soft:  #efefed;
  --ink:        #14272d;
  --graphite:   #404a51;
  --mute:       #7a8389;

  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --pad-x: clamp(1.5rem, 6vw, 6rem);
  --max-w: 1400px;
  --max-w-narrow: 920px;
  --max-w-text: 680px;

  --ease: cubic-bezier(.65,0,.35,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","cv11","cv02";
  line-height: 1.5;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--deep); color: var(--paper); }

/* ───── HEADER / NAV ───── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
header.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.4rem var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  transition: padding .3s;
}
header.scrolled .nav-inner { padding-top: 1rem; padding-bottom: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .92rem; font-weight: 400; color: var(--graphite);
  text-decoration: none; letter-spacing: -.005em; transition: color .25s;
  position: relative;
}
.nav-links a:hover { color: var(--deep); }
.nav-links a[aria-current="page"] { color: var(--deep); font-weight: 500; }
.nav-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px; background: var(--teal);
}
.nav-actions { display: flex; align-items: center; gap: 1.4rem; }

/* Dropdown "Aree di competenza" */
.nav-has-children { position: relative; }
.nav-has-children > a { display: inline-flex; align-items: center; gap: .34rem; }
.nav-caret { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2; opacity: .6; transition: transform .3s var(--ease-out), opacity .25s; }
.nav-has-children:hover .nav-caret,
.nav-has-children:focus-within .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-has-children::after { content: ""; position: absolute; left: -8px; right: -8px; top: 100%; height: 18px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 248px; list-style: none; margin: 0; padding: .5rem;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 8px;
  box-shadow: 0 18px 44px -20px rgba(0,55,64,.32);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease-out), transform .22s var(--ease-out), visibility .22s;
  z-index: 60;
}
.nav-has-children:hover .nav-dropdown,
.nav-has-children:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: flex; align-items: baseline; gap: .65rem;
  padding: .62rem .8rem; border-radius: 5px;
  font-size: .9rem; font-weight: 400; color: var(--graphite); white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-dropdown a:hover { background: var(--paper-2); color: var(--deep); }
.nav-dropdown a[aria-current="page"] { font-weight: 500; color: var(--deep); }
.nav-dropdown a[aria-current="page"]::after { display: none; }
.nav-dd-num { color: var(--teal); font-size: .72rem; letter-spacing: .04em; min-width: 1.3em; }
.nav-reserved {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--graphite); text-decoration: none;
  font-size: .9rem; font-weight: 500; letter-spacing: -.005em;
  padding: .4rem .1rem; white-space: nowrap; transition: color .25s;
}
.nav-reserved svg { stroke: currentColor; transition: transform .3s var(--ease-out); }
.nav-reserved:hover { color: var(--deep); }
.nav-reserved:hover svg { transform: translateY(-1px); }

.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--deep); color: var(--paper);
  padding: .82rem 1.45rem; text-decoration: none;
  font-size: .9rem; font-weight: 500; letter-spacing: -.005em;
  border-radius: 4px;
  transition: background .3s var(--ease-out), transform .15s var(--ease-out), box-shadow .3s;
}
.btn-primary::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.btn-primary:hover { background: var(--deep-2); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,55,64,.18); }
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary .arrow { transition: transform .35s var(--ease-out); display: inline-block; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--ink); padding: .8rem 1.4rem; text-decoration: none;
  font-size: .9rem; font-weight: 500; letter-spacing: -.005em;
  border-radius: 4px; border: 1px solid var(--rule); background: transparent;
  transition: border-color .25s, background .25s, color .25s, gap .25s;
}
.btn-secondary:hover { border-color: var(--deep); background: var(--deep); color: var(--paper); gap: .8rem; }
.btn-secondary svg { stroke: currentColor; flex-shrink: 0; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: .5rem;
  background: transparent; z-index: 130;
}
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .2s; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ───── MOBILE MENU (assente su index: qui è funzionante) ───── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 6rem var(--pad-x) 3rem;
  display: flex; flex-direction: column; gap: .4rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-size: 1.5rem; font-weight: 500; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none;
  padding: .9rem 0; border-bottom: 1px solid var(--rule);
}
.mobile-menu a[aria-current="page"] { color: var(--deep); }
.mobile-menu .mobile-sub { display: flex; flex-direction: column; }
.mobile-menu .mobile-sub a {
  font-size: 1.05rem; font-weight: 400; color: var(--graphite);
  padding: .7rem 0 .7rem 1.1rem;
}
.mobile-menu .mobile-sub a .nav-dd-num { color: var(--teal); font-size: .8rem; margin-right: .6rem; }
.mobile-menu .mobile-cta { margin-top: 1.6rem; border: none; }
.mobile-menu .btn-primary { justify-content: center; font-size: 1rem; padding: 1rem; }

/* ───── SECTION SHELL ───── */
.section {
  padding: 7rem var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section.compact { padding-top: 5rem; padding-bottom: 5rem; }
.section.alt-bg { max-width: none; background: var(--paper-2); }
.section.alt-bg > .inner { max-width: var(--max-w); margin: 0 auto; padding: 7rem var(--pad-x); }
.section.dark-bg { max-width: none; background: var(--teal); color: var(--paper); }
.section.dark-bg > .inner { max-width: var(--max-w); margin: 0 auto; padding: 6rem var(--pad-x); }

.section-head { max-width: var(--max-w-narrow); margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .76rem; letter-spacing: .04em; color: var(--mute); margin-bottom: 1.5rem;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--teal); }
.section.dark-bg .section-eyebrow { color: rgba(255,255,255,.7); }
.section.dark-bg .section-eyebrow::before { background: var(--paper); opacity: .5; }
.section-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500; line-height: 1.05; letter-spacing: -.03em;
  color: var(--ink); margin-bottom: 1.5rem;
}
.section.dark-bg .section-title { color: var(--paper); }
.section-title .accent { color: var(--deep); }
.section-lead {
  font-size: 1.1rem; color: var(--graphite); line-height: 1.6; max-width: var(--max-w-text);
}
.section.dark-bg .section-lead { color: rgba(255,255,255,.85); }

/* ───── SERVICE HERO ───── */
.svc-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x) clamp(3.5rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-bottom: 1px solid var(--rule);
}
.svc-breadcrumb {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-size: .8rem; letter-spacing: .01em; color: var(--mute);
  margin-bottom: 1.8rem;
}
.svc-breadcrumb a { color: var(--mute); text-decoration: none; transition: color .25s; }
.svc-breadcrumb a:hover { color: var(--deep); }
.svc-breadcrumb .sep { color: var(--teal); }
.svc-breadcrumb .current { color: var(--graphite); }
.svc-hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500; line-height: 1.02; letter-spacing: -.035em;
  color: var(--ink); margin-bottom: 1.8rem; text-wrap: balance;
}
.svc-hero h1 .accent { color: var(--deep); }
.svc-hero-lead {
  font-size: 1.15rem; color: var(--graphite); line-height: 1.65;
  max-width: 520px; margin-bottom: 2.4rem;
}
.svc-hero-lead strong { color: var(--ink); font-weight: 500; }
.svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.svc-hero-trust {
  margin-top: 2.4rem; padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  font-size: .82rem; color: var(--mute); line-height: 1.6; max-width: 520px;
}
.svc-hero-trust strong { color: var(--graphite); font-weight: 500; }

/* marchio tipografico: numerale romano dell'area */
.svc-hero-mark {
  position: relative;
  aspect-ratio: 1 / 1.12;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(100,153,171,.14), transparent 60%),
    var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.svc-hero-mark .roman {
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 300; line-height: .8; letter-spacing: -.04em;
  color: var(--deep); opacity: .9;
  font-feature-settings: "lnum";
}
.svc-hero-mark .mark-label {
  position: absolute; left: 1.6rem; bottom: 1.4rem;
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-2);
}
.svc-hero-mark .mark-corner {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-size: .76rem; letter-spacing: .04em; color: var(--mute);
}

/* ───── A CHI SI RIVOLGE ───── */
.svc-audience .inner { max-width: var(--max-w); margin: 0 auto; padding: 6rem var(--pad-x); }
.svc-audience-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.svc-audience-grid p { font-size: 1.1rem; color: var(--graphite); line-height: 1.75; margin-bottom: 1.2rem; }
.svc-audience-grid p strong { color: var(--deep); font-weight: 500; }
.svc-tags { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
.svc-tag {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: baseline;
  padding: 1.3rem 0; border-bottom: 1px solid var(--rule);
}
.svc-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); transform: translateY(-2px); }
.svc-tag .tag-name { font-size: 1.05rem; font-weight: 500; color: var(--ink); letter-spacing: -.015em; }
.svc-tag .tag-desc { font-size: .92rem; color: var(--mute); line-height: 1.5; margin-top: .25rem; }

/* ───── COSA COMPRENDE · griglia sotto-servizi ───── */
.svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.svc-item {
  background: var(--paper);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: background .3s var(--ease-out);
}
.section.alt-bg .svc-item { background: var(--paper); }
.svc-item:hover { background: var(--paper-2); }
.svc-item .svc-num {
  font-size: .8rem; color: var(--teal-2); font-weight: 500;
  letter-spacing: .04em; font-feature-settings: "lnum";
}
.svc-item h3 {
  font-family: var(--sans); font-size: 1.18rem; font-weight: 500;
  letter-spacing: -.018em; color: var(--ink); line-height: 1.25;
}
.svc-item p { font-size: .94rem; color: var(--graphite); line-height: 1.6; }

/* ───── PERCHÉ LO STUDIO · 3 punti ───── */
.svc-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 1rem; }
.svc-why-item { padding: 2rem 0 0; border-top: 1px solid var(--rule); }
.svc-why-item .roman {
  font-size: 1.05rem; color: var(--teal); font-weight: 500;
  letter-spacing: -.005em; margin-bottom: 1.5rem; font-feature-settings: "lnum";
}
.svc-why-item h3 {
  font-family: var(--sans); font-size: 1.35rem; font-weight: 500;
  letter-spacing: -.018em; color: var(--ink); margin-bottom: .8rem; line-height: 1.2;
}
.svc-why-item p { font-size: .95rem; color: var(--graphite); line-height: 1.65; }

/* ───── FAQ (mirror index) ───── */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.faq-side { position: sticky; top: 7rem; }
.faq-side .section-eyebrow { margin-bottom: 1.5rem; }
.faq-side h2 {
  font-family: var(--sans); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500;
  line-height: 1.05; color: var(--ink); letter-spacing: -.025em; margin-bottom: 1.4rem;
}
.faq-side p { font-size: 1rem; color: var(--graphite); line-height: 1.65; margin-bottom: 2rem; max-width: 380px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; padding: 1.6rem 0; text-align: left;
  font-family: var(--sans); font-size: 1.1rem; font-weight: 500;
  letter-spacing: -.012em; color: var(--ink); transition: color .25s; line-height: 1.4;
}
.faq-q:hover { color: var(--deep); }
.faq-q .icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease-out), background .25s, color .25s, border-color .25s;
  color: var(--graphite);
}
.faq-item.open .faq-q .icon { background: var(--deep); border-color: var(--deep); color: var(--paper); transform: rotate(45deg); }
.faq-a { font-size: .98rem; color: var(--graphite); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), padding .35s; }
.faq-item.open .faq-a { max-height: 360px; padding: 0 0 1.8rem; }

/* ───── LE ALTRE AREE · cross-link ───── */
.svc-cross-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.svc-cross-card {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center;
  padding: 2.2rem; border: 1px solid var(--rule); border-radius: 6px;
  text-decoration: none; color: inherit; background: var(--paper);
  transition: border-color .3s, background .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.svc-cross-card:hover { border-color: var(--deep); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,55,64,.10); }
.svc-cross-card .cc-num { font-size: .8rem; color: var(--mute); letter-spacing: .04em; font-feature-settings: "lnum"; align-self: start; padding-top: .35rem; }
.svc-cross-card h3 { font-family: var(--sans); font-size: 1.3rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink); margin-bottom: .4rem; line-height: 1.15; }
.svc-cross-card p { font-size: .92rem; color: var(--graphite); line-height: 1.55; }
.svc-cross-card .cc-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center; color: var(--ink); flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .3s, color .3s;
}
.svc-cross-card:hover .cc-arrow { background: var(--deep); border-color: var(--deep); color: var(--paper); transform: rotate(-45deg); }
.svc-cross-card .cc-arrow svg { stroke: currentColor; }

/* ───── CTA BAND ───── */
.svc-cta-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.svc-cta-grid h2 {
  font-family: var(--sans); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
  line-height: 1.05; letter-spacing: -.03em; color: var(--paper); margin-bottom: 1.2rem;
}
.svc-cta-grid h2 .accent { color: var(--deep); }
.svc-cta-grid p { font-size: 1.08rem; color: rgba(255,255,255,.88); line-height: 1.6; max-width: 460px; }
.svc-cta-actions { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.svc-cta-actions .btn-light {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--paper); color: var(--deep);
  padding: .95rem 1.6rem; border-radius: 4px; text-decoration: none;
  font-size: .95rem; font-weight: 500; letter-spacing: -.005em;
  transition: transform .15s var(--ease-out), box-shadow .3s, background .25s;
}
.svc-cta-actions .btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,42,50,.25); background: #fff; }
.svc-cta-actions .btn-light .arrow { transition: transform .35s var(--ease-out); display: inline-block; }
.svc-cta-actions .btn-light:hover .arrow { transform: translateX(3px); }
.svc-cta-phone {
  display: inline-flex; align-items: baseline; gap: .7rem;
  color: var(--paper); text-decoration: none; font-size: 1.05rem; letter-spacing: -.01em;
}
.svc-cta-phone span.lbl { font-size: .82rem; color: rgba(255,255,255,.7); }
.svc-cta-phone strong { font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.45); transition: border-color .25s, color .25s; }
.svc-cta-phone:hover strong { color: var(--deep); border-bottom-color: var(--deep); }

/* ───── FOOTER (mirror index) ───── */
footer { background: var(--ink); color: var(--paper); padding: 5rem var(--pad-x) 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: clamp(48px, 5vw, 58px); width: auto; filter: brightness(0) invert(1) opacity(.9); margin-bottom: 1.7rem; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 360px; }
.footer-utils { display: flex; align-items: center; gap: .9rem; margin-top: 1.8rem; flex-wrap: wrap; }
.footer-reserved {
  display: inline-flex; align-items: center; gap: .6rem; padding: .7rem 1.2rem;
  border: 1px solid rgba(168,197,210,.4); border-radius: 4px; color: var(--teal-lt);
  text-decoration: none; font-size: .9rem; font-weight: 500; letter-spacing: -.005em;
  transition: border-color .25s, background .25s, color .25s;
}
.footer-reserved svg { stroke: currentColor; }
.footer-reserved:hover { border-color: var(--teal-lt); background: rgba(168,197,210,.1); color: #fff; }
.footer-social {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border: 1px solid rgba(168,197,210,.4); border-radius: 4px; color: var(--teal-lt);
  transition: border-color .25s, background .25s, color .25s;
}
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.footer-social:hover { border-color: var(--teal-lt); background: rgba(168,197,210,.1); color: #fff; }
.footer-col h4 { font-size: .82rem; letter-spacing: .005em; color: rgba(255,255,255,.5); margin-bottom: 1.4rem; font-weight: 400; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer-col ul li, .footer-col ul li a { font-size: .92rem; color: rgba(255,255,255,.78); text-decoration: none; transition: color .25s; line-height: 1.5; }
.footer-col ul li a:hover { color: var(--teal-lt); }
.footer-col ul li.faded { color: rgba(255,255,255,.55); }
.footer-bottom { margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; margin-right: 1.4rem; }
.footer-bottom a:hover { color: var(--teal-lt); }

/* ───── REVEAL ───── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .svc-hero { grid-template-columns: 1fr; gap: 2.6rem; }
  .svc-hero-mark { aspect-ratio: 16 / 9; max-height: 320px; order: -1; }
  .svc-audience-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-list { grid-template-columns: 1fr; }
  .svc-why-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-side { position: static; }
  .svc-cross-grid { grid-template-columns: 1fr; }
  .svc-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-reserved { display: none; }
  .nav-actions .btn-primary:not(.mobile-menu .btn-primary) { display: none; }
  .svc-hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .svc-item { padding: 1.8rem 1.4rem; }
  .svc-cross-card { grid-template-columns: auto 1fr; padding: 1.8rem 1.4rem; }
  .svc-cross-card .cc-arrow { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
