/* ============================================================
   Edita il Video — montaggio e finalizzazione video su richiesta
   Visual system: "studio console" — dark editing-suite aesthetic
   with a request configurator as the primary surface.
   ============================================================ */

:root {
  --bg: #0c0e14;
  --bg-2: #11141d;
  --panel: #161a26;
  --panel-2: #1c2130;
  --line: #282f42;
  --line-soft: #20263619;
  --ink: #eef1f8;
  --ink-2: #aeb6cb;
  --ink-3: #7d869e;
  --accent: #ff5a3c;
  --accent-2: #ffae3c;
  --cyan: #3ce0d2;
  --violet: #8b6cff;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
  --shadow-soft: 0 14px 40px -24px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.4, 0.01, 0.16, 1);
  --font: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: radial-gradient(1200px 700px at 78% -8%, rgba(139, 108, 255, 0.14), transparent 60%),
              radial-gradient(900px 600px at 6% 8%, rgba(60, 224, 210, 0.08), transparent 55%),
              var(--bg);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--cyan));
  z-index: 200; transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(255, 90, 60, 0.6);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.2px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  position: relative; box-shadow: 0 8px 22px -10px rgba(255, 90, 60, 0.8);
}
.brand-mark::before {
  content: ""; width: 0; height: 0;
  border-left: 11px solid #1a1208; border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.brand-name { font-size: 1.05rem; }
.brand-name span { display: block; font-size: 0.66rem; font-weight: 500; color: var(--ink-3); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 0.9rem; color: var(--ink-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 9px 18px; border-radius: 999px; font-size: 0.86rem; font-weight: 600;
  background: var(--ink); color: #0c0e14; transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(255, 255, 255, 0.4); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--ink); width: 42px; height: 38px; border-radius: 10px; font-size: 1.1rem; }

/* ---------- Section frame ---------- */
section { padding: 86px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent-2);
  padding: 6px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.12; margin: 18px 0 14px; letter-spacing: -0.5px; }
.section-head p { color: var(--ink-2); font-size: 1.02rem; }

/* ============================================================
   HERO — quick edit request configurator
   ============================================================ */
.hero { padding: 56px 0 74px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: stretch; }
.hero-copy { align-self: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -1.2px; margin: 20px 0 18px; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 1.1rem; color: var(--ink-2); max-width: 480px; margin-bottom: 26px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-size: 1.04rem; color: var(--ink); }
.hero-meta span { font-size: 0.78rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 1px; }

/* Configurator card (signature section, primary interaction) */
.configurator {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: 22px; padding: 26px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.configurator::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 60%, rgba(255, 90, 60, 0.08));
  pointer-events: none;
}
.config-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.config-top h3 { font-size: 1.02rem; }
.config-dot { display: flex; gap: 6px; }
.config-dot i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.config-dot i:first-child { background: var(--accent); }
.config-dot i:nth-child(2) { background: var(--accent-2); }

.config-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--ink-3); margin: 16px 0 9px; display: block; }

/* Segmented control */
.segmented { display: flex; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 5px; gap: 4px; }
.segmented[role="tablist"] { position: relative; }
.seg-btn {
  flex: 1; border: none; background: transparent; color: var(--ink-2); padding: 9px 8px;
  border-radius: 8px; font-size: 0.84rem; font-weight: 600; transition: color 0.25s, background 0.25s var(--ease);
}
.seg-btn[aria-selected="true"] { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a1208; box-shadow: 0 8px 18px -10px rgba(255, 90, 60, 0.7); }
.seg-btn:hover:not([aria-selected="true"]) { color: var(--ink); background: var(--panel-2); }

/* Format chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: var(--bg); color: var(--ink-2);
  padding: 8px 13px; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
  transition: all 0.2s var(--ease);
}
.chip[aria-pressed="true"] { border-color: var(--cyan); color: var(--cyan); background: rgba(60, 224, 210, 0.1); }
.chip:hover { border-color: var(--ink-3); }

/* Summary panel */
.config-summary {
  margin-top: 20px; background: var(--bg); border: 1px dashed var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid var(--line-soft); }
.summary-row:last-of-type { border-bottom: none; }
.summary-row span:first-child { color: var(--ink-3); }
.summary-row span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
.summary-note { font-size: 0.78rem; color: var(--ink-3); margin-top: 12px; line-height: 1.5; }
.config-cta {
  display: block; width: 100%; text-align: center; margin-top: 18px; padding: 13px;
  border-radius: var(--radius-sm); border: none; font-weight: 700; font-size: 0.95rem;
  background: var(--ink); color: #0c0e14; transition: transform 0.2s var(--ease);
}
.config-cta:hover { transform: translateY(-2px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.94rem; border: 1px solid transparent; transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a1208; box-shadow: 0 16px 32px -16px rgba(255, 90, 60, 0.8); }
.btn-primary:hover { transform: translateY(-3px); }
.btn-ghost { background: var(--panel); border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-3); transform: translateY(-3px); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Marquee ticker */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 14px 0; }
.ticker-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.ticker span { color: var(--ink-3); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; }
.ticker span::before { content: "◆"; color: var(--accent); font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ============================================================
   PACKAGE CARDS — hover-reveal
   ============================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s;
  min-height: 340px; display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.pkg-card .pkg-img { position: relative; height: 150px; overflow: hidden; }
.pkg-card .pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.pkg-card:hover .pkg-img img { transform: scale(1.07); }
.pkg-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-body h3 { font-size: 1.18rem; margin-bottom: 6px; }
.pkg-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-2); margin-bottom: 12px; }
.pkg-body p { color: var(--ink-2); font-size: 0.9rem; }
.pkg-reveal {
  margin-top: auto; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s, margin-top 0.3s;
}
.pkg-card:hover .pkg-reveal, .pkg-card:focus-within .pkg-reveal { max-height: 220px; opacity: 1; margin-top: 16px; }
.pkg-reveal ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pkg-reveal li { font-size: 0.85rem; color: var(--ink-2); padding-left: 20px; position: relative; }
.pkg-reveal li::before { content: "›"; position: absolute; left: 4px; color: var(--cyan); font-weight: 700; }
.pkg-corner { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(12,14,20,0.7); backdrop-filter: blur(4px); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; font-size: 0.72rem; color: var(--ink); }

/* ============================================================
   ASSET CHECKLIST — interactive
   ============================================================ */
.checklist-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.checklist-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); position: relative; }
.checklist-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.checklist-visual .badge { position: absolute; left: 16px; bottom: 16px; background: rgba(12,14,20,0.78); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-size: 0.82rem; }
.checklist-visual .badge b { color: var(--cyan); }

.checklist { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; padding: 15px; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.2s; border: 1px solid transparent; }
.check-item:hover { background: var(--panel-2); }
.check-item.done { border-color: rgba(60, 224, 210, 0.35); background: rgba(60, 224, 210, 0.05); }
.check-box {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--line);
  display: grid; place-items: center; transition: all 0.2s var(--ease); margin-top: 2px;
}
.check-item.done .check-box { background: var(--cyan); border-color: var(--cyan); }
.check-box::after { content: "✓"; font-size: 0.8rem; color: #0c0e14; opacity: 0; transform: scale(0.4); transition: all 0.2s var(--ease); }
.check-item.done .check-box::after { opacity: 1; transform: scale(1); }
.check-text b { display: block; font-size: 0.96rem; margin-bottom: 2px; }
.check-text span { font-size: 0.84rem; color: var(--ink-3); }
.check-progress { padding: 16px 15px 10px; }
.check-progress .bar { height: 8px; background: var(--bg); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.check-progress .bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--cyan), var(--violet)); transition: width 0.4s var(--ease); }
.check-progress p { font-size: 0.82rem; color: var(--ink-2); margin-top: 9px; }
.check-progress p b { color: var(--ink); }

/* ============================================================
   DELIVERY FLOW — process timeline
   ============================================================ */
.flow-wrap { position: relative; }
.flow-banner { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 44px; position: relative; }
.flow-banner img { width: 100%; height: 230px; object-fit: cover; }
.flow-banner .overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,14,20,0.85), rgba(12,14,20,0.2)); display: flex; align-items: center; padding: 0 40px; }
.flow-banner .overlay p { max-width: 380px; font-size: 1.05rem; color: var(--ink); }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.timeline::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--cyan), var(--violet)); }
.tl-step { position: relative; padding: 0 16px; text-align: center; }
.tl-node {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 16px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line); font-weight: 700; font-size: 1.1rem; color: var(--accent-2);
  position: relative; z-index: 1; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.tl-step:hover .tl-node { transform: translateY(-5px) rotate(-4deg); border-color: var(--accent); }
.tl-step h4 { font-size: 1rem; margin-bottom: 7px; }
.tl-step p { font-size: 0.86rem; color: var(--ink-2); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.faq-side img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; object-fit: cover; aspect-ratio: 3/4; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: var(--accent); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); padding: 18px 20px; font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line); display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.3s; position: relative; }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: var(--accent-2); border-radius: 2px; }
.faq-q .icon::before { width: 12px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }
.faq-item.open .icon { background: var(--accent); }
.faq-item.open .icon::before, .faq-item.open .icon::after { background: #1a1208; }
.faq-item.open .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 20px 20px; color: var(--ink-2); font-size: 0.92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info > img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; height: 200px; object-fit: cover; }
.info-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.info-card h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-3); margin-bottom: 8px; }
.info-card p { font-size: 0.96rem; color: var(--ink); }
.info-card a { color: var(--cyan); }
.info-list { display: grid; gap: 6px; }
.info-list .li { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 4px 0; border-bottom: 1px solid var(--line-soft); }
.info-list .li:last-child { border-bottom: none; }
.info-list .li span { color: var(--ink-3); }
.info-list .li b { color: var(--ink); font-weight: 600; }

.form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; color: var(--ink-2); margin-bottom: 7px; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--ink); font-family: inherit; font-size: 0.92rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--ink-3); margin: 6px 0 18px; }
.form-consent input { margin-top: 3px; }
.form-note { font-size: 0.8rem; color: var(--ink-3); margin-top: 14px; text-align: center; }
.form-msg { display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(60, 224, 210, 0.1); border: 1px solid var(--cyan); color: var(--cyan); font-size: 0.88rem; }
.form-msg.show { display: block; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(140%);
  z-index: 150; display: flex; align-items: center; gap: 18px;
  background: rgba(22, 26, 38, 0.94); backdrop-filter: blur(14px); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 12px 10px 22px; box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease); max-width: calc(100vw - 32px);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta p { font-size: 0.88rem; color: var(--ink-2); }
.sticky-cta p b { color: var(--ink); }
.sticky-cta .btn { padding: 10px 20px; font-size: 0.86rem; }
.sticky-close { background: none; border: none; color: var(--ink-3); font-size: 1.2rem; padding: 0 6px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { color: var(--ink-3); font-size: 0.9rem; margin-top: 16px; max-width: 320px; }
.footer-col h5 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-3); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--ink-2); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-2); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.footer-legal p { font-size: 0.8rem; color: var(--ink-3); }
.footer-legal .fl-ids { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal .fl-ids span { font-size: 0.78rem; color: var(--ink-3); }
.footer-legal .fl-ids b { color: var(--ink-2); font-weight: 600; }

/* ---------- Legal pages ---------- */
.legal-hero { padding: 60px 0 36px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 16px 0 10px; letter-spacing: -0.6px; }
.legal-hero p { color: var(--ink-2); }
.legal-body { padding: 50px 0 80px; }
.legal-body .wrap { max-width: 820px; }
.legal-body h2 { font-size: 1.3rem; margin: 38px 0 14px; padding-top: 8px; }
.legal-body h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--ink); }
.legal-body p, .legal-body li { color: var(--ink-2); font-size: 0.96rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--cyan); }
.legal-toc { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 40px; }
.legal-toc h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-3); margin-bottom: 12px; }
.legal-toc ol { padding-left: 20px; }
.legal-toc li { margin-bottom: 7px; }
.legal-update { font-size: 0.84rem; color: var(--ink-3); font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid, .checklist-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checklist-visual { order: 2; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta p { display: none; }
  .flow-banner .overlay { padding: 0 22px; }
}
