/* ============================================================
   HOSTCLIP — design system
   Palette: navy/midnight primary, white secondary. No orange.
   Sections alternate dark (navy) and light (white).
   ============================================================ */
:root {
  --navy:        #0a1628;
  --navy-900:    #0a1628;
  --navy-800:    #0e1d35;
  --navy-700:    #16294a;
  --navy-600:    #1f3866;
  --ink:         #0a1628;   /* text on light */
  --ink-soft:    #45556e;   /* muted text on light */
  --line-d:      rgba(255,255,255,.10);  /* hairline on dark */
  --line-l:      rgba(10,22,40,.10);     /* hairline on light */
  --white:       #ffffff;
  --muted:       #9fb0c9;   /* muted text on dark */
  --muted-2:     #6b7d99;
  --paper:       #f4f6fa;   /* light section bg */
  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1340px;
  --ease:        cubic-bezier(.16,.84,.44,1);
  font-synthesis: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== SECTION THEMES ===== */
.section { padding: 104px 0; }
.section--dark  { background: var(--navy);  color: var(--white); }
.section--darker{ background: var(--navy-900); color: var(--white); }
.section--light { background: var(--paper); color: var(--ink); }
.section--white { background: var(--white); color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.section--light .eyebrow, .section--white .eyebrow { color: #8492a8; }

.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }

.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.08; }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; }

.lead { font-size: 1.18rem; color: var(--muted); margin-top: 18px; }
.section--light .lead, .section--white .lead { color: var(--ink-soft); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--white); color: var(--navy); }
.btn--primary:hover { background: #e7edf6; }
.btn--dark { background: rgba(10,22,40,.55); color: var(--white); border-color: rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.btn--dark:hover { background: rgba(10,22,40,.8); }
.btn--ink { background: var(--navy); color: var(--white); }
.btn--ink:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line-d); }
.btn--ghost:hover { border-color: rgba(255,255,255,.45); }
.btn--ghost-ink { background: transparent; color: var(--ink); border-color: var(--line-l); }
.btn--ghost-ink:hover { border-color: rgba(10,22,40,.35); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== ANNOUNCE BAR ===== */
.announce {
  background: var(--navy-900);
  border-bottom: 1px solid var(--line-d);
  font-size: .88rem;
  color: var(--muted);
}
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 8px; height: 40px; text-align: center; }
.announce a { color: var(--white); font-weight: 600; }
.announce__dot { width: 7px; height: 7px; border-radius: 50%; background: #57d9a3; box-shadow: 0 0 0 4px rgba(87,217,163,.18); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-d);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.nav__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 26px; width: auto; display: block; }
.nav__links { display: flex; gap: 30px; font-size: .95rem; color: var(--muted); margin-left: auto; }
.nav__links a { transition: color .15s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--white); }
.nav__right { flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .25s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 80px 0 40px; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,22,40,.35) 0%, rgba(10,22,40,.55) 55%, rgba(10,22,40,.96) 100%),
    radial-gradient(80% 60% at 50% 40%, rgba(10,22,40,.15), rgba(10,22,40,.5));
}
.hero__content { position: relative; z-index: 2; text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.hero__title { font-size: clamp(2.8rem, 7.5vw, 5.6rem); font-weight: 900; letter-spacing: -.04em; line-height: .98; max-width: 16ch; }
.hero__subtitle { margin-top: 22px; font-size: clamp(1.1rem, 2.2vw, 1.5rem); color: #d4dcea; max-width: 44ch; font-weight: 400; }
.hero__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__trust { position: relative; z-index: 2; text-align: center; margin-top: 48px; }
.hero__trust-label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 44px; opacity: .8; }
.trust-logos span { font-weight: 700; font-size: 1.05rem; color: #c2cde0; letter-spacing: .02em; }

/* ===== USE-CASE CARDS (device mockups) ===== */
.usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.usecase {
  background: var(--navy-800); border: 1px solid var(--line-d);
  border-radius: var(--radius); padding: 32px 28px 0; overflow: hidden;
  display: flex; flex-direction: column; min-height: 560px;
  transition: transform .25s var(--ease), border-color .25s;
}
.usecase:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.28); }
.usecase__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.usecase__sub { font-size: .98rem; color: var(--muted); margin-bottom: 22px; }
.usecase__visual { margin-top: auto; }
.mk-video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--navy-700); }
.mk-grid__video { position: relative; aspect-ratio: 4/5; margin: 6px; border-radius: 8px; overflow: hidden; }
.usecase .play-btn { transition: opacity .25s; }
.usecase:hover .play-btn { opacity: 0; }

/* -- mockup: browser window -- */
.mk-browser { border-radius: 12px 12px 0 0; overflow: hidden; border: 1px solid var(--line-d); border-bottom: none; background: #fff; box-shadow: 0 -10px 40px -20px rgba(0,0,0,.5); }
.mk-browser__bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #e9edf3; }
.mk-browser__bar i { width: 9px; height: 9px; border-radius: 50%; background: #c2cad6; }
.mk-browser__bar .mk-url { margin-left: 10px; font-size: .68rem; color: #7a8699; background: #fff; border-radius: 6px; padding: 3px 10px; flex: 1; }
.mk-browser__shot { position: relative; aspect-ratio: 4/4.4; overflow: hidden; }
.mk-browser__shot img { width: 100%; height: 100%; object-fit: cover; }
.mk-browser__play { position: absolute; inset: 0; display: grid; place-items: center; }
.mk-booking { position: absolute; left: 10px; right: 10px; bottom: 10px; display: flex; gap: 6px; }
.mk-booking span { flex: 1; background: rgba(255,255,255,.94); border-radius: 7px; padding: 6px 8px; font-size: .58rem; color: #8492a8; display: flex; flex-direction: column; gap: 1px; }
.mk-booking span b { color: #0a1628; font-size: .68rem; font-weight: 700; }
.mk-booking .mk-booking__cta { flex: 0 0 auto; background: var(--navy); color: #fff; align-items: center; justify-content: center; font-size: .62rem; font-weight: 700; padding: 6px 10px; }

/* -- mockup: OTA listing card -- */
.mk-ota { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-l); box-shadow: 0 -10px 40px -20px rgba(0,0,0,.5); color: var(--ink); margin: 0 6px; }
.mk-ota__img { position: relative; aspect-ratio: 4/3.6; }
.mk-ota__img img { width: 100%; height: 100%; object-fit: cover; }
.mk-ota__heart { position: absolute; top: 8px; left: 8px; width: 24px; height: 24px; background: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; }
.mk-ota__body { padding: 10px 12px; }
.mk-ota__row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mk-ota__name { font-size: .82rem; font-weight: 700; }
.mk-ota__score { font-size: .66rem; font-weight: 700; color: #fff; background: #1f8a5b; border-radius: 5px; padding: 2px 6px; }
.mk-ota__price { font-size: .95rem; font-weight: 800; }
.mk-ota__meta { font-size: .66rem; color: #8492a8; }

/* -- mockup: phone reel -- */
.mk-phone { position: relative; width: 170px; margin: 0 auto; border-radius: 26px 26px 0 0; border: 7px solid #1b2840; border-bottom: none; background: #000; overflow: hidden; box-shadow: 0 -10px 40px -20px rgba(0,0,0,.6); }
.mk-phone__notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 52px; height: 15px; background: #000; border-radius: 999px; z-index: 4; }
.mk-phone__screen { position: relative; aspect-ratio: 9/16; }
.mk-phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.mk-phone__ui { position: absolute; right: 8px; bottom: 14px; display: flex; flex-direction: column; gap: 12px; color: #fff; font-size: .62rem; align-items: center; }
.mk-phone__ui i { font-style: normal; display: grid; gap: 2px; justify-items: center; }
.mk-phone__label { position: absolute; left: 8px; bottom: 14px; color: #fff; font-size: .62rem; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.6); }

/* -- mockup: MICE grid -- */
.mk-grid { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-l); box-shadow: 0 -10px 40px -20px rgba(0,0,0,.5); margin: 0 6px; }
.mk-grid__head { font-size: .68rem; color: var(--ink); padding: 8px 10px; border-bottom: 1px solid var(--line-l); font-weight: 600; }
.mk-grid__cells { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 6px; }
.mk-grid__cells span { position: relative; aspect-ratio: 4/5; border-radius: 6px; background-size: cover; background-position: center; }
.mk-grid__cells span::after { content: ""; position: absolute; right: 5px; bottom: 5px; width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,.85); }
.mk-grid__cells span::before { content: ""; position: absolute; right: 10px; bottom: 9px; z-index: 1; border-left: 6px solid var(--navy); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }

.play-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; }
.play-btn::after { content: ""; border-left: 11px solid var(--navy); border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.play-btn--sm { width: 28px; height: 28px; }
.play-btn--sm::after { border-left-width: 8px; border-top-width: 5px; border-bottom-width: 5px; }

/* ===== BEFORE / AFTER SLIDER ===== */
.ba { max-width: 880px; margin: 0 auto; }
.ba__frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(10,22,40,.45); user-select: none; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__tag { position: absolute; bottom: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(10,22,40,.6); padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px); }
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }
.ba__divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.ba__handle { position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%,-50%); background: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 4px 16px rgba(10,22,40,.3); pointer-events: none; }
.ba__handle::before { content: "\2039\203A"; letter-spacing: 2px; color: var(--navy); font-weight: 800; font-size: 1rem; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* ===== BENEFIT CARDS (mini illustrations) ===== */
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit {
  background: var(--white); border: 1px solid var(--line-l); border-radius: var(--radius);
  padding: 18px; display: flex; flex-direction: column;
}
.benefit__art {
  height: 130px; border-radius: var(--radius-sm); background: var(--paper);
  border: 1px solid var(--line-l); margin-bottom: 18px;
  display: grid; place-items: center; padding: 16px; overflow: hidden;
}
.benefit__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.benefit__text { font-size: .93rem; color: var(--ink-soft); }

/* checklist art */
.art-checklist { width: 100%; font-size: .74rem; color: #9aa6b8; display: grid; gap: 6px; }
.art-checklist span { display: flex; align-items: center; gap: 7px; text-decoration: line-through; }
.art-checklist span::before { content: "\2717"; color: #d06a6a; font-size: .7rem; text-decoration: none; }
/* thumbs art */
.art-thumbs { display: flex; gap: 8px; width: 100%; }
.art-thumbs span { flex: 1; aspect-ratio: 1/1; border-radius: 8px; background-size: cover; background-position: center; position: relative; }
.art-thumbs span::after { content: attr(data-l); position: absolute; bottom: 5px; left: 5px; font-size: .56rem; color: #fff; background: rgba(0,0,0,.5); padding: 1px 5px; border-radius: 4px; }
/* approved art */
.art-approved { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line-l); border-radius: 999px; padding: 8px 14px; font-size: .82rem; font-weight: 600; color: var(--ink); }
.art-approved__avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,#1f3866,#57d9a3); }
.art-approved__check { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; background: #1f8a5b; color: #fff; display: grid; place-items: center; font-size: .62rem; }
/* models art */
.art-models { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.art-models span { font-size: .68rem; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line-l); border-radius: 999px; padding: 4px 10px; }

/* ===== STEPS (come funziona) ===== */
.steps { display: grid; gap: 20px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start;
  background: var(--navy-800); border: 1px solid var(--line-d); border-radius: var(--radius); padding: 30px;
}
.section--light .step, .section--white .step { background: var(--white); border-color: var(--line-l); }
.step__num { width: 56px; height: 56px; border-radius: 16px; background: var(--white); color: var(--navy); font-weight: 800; font-size: 1.5rem; display: grid; place-items: center; }
.section--dark .step__num { background: var(--white); color: var(--navy); }
.step__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.step__text { color: var(--muted); }
.section--light .step__text, .section--white .step__text { color: var(--ink-soft); }

/* ===== FORMAT / VIDEO GALLERY ===== */
.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.format { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-d); background: var(--navy-800); }
.section--light .format, .section--white .format { border-color: var(--line-l); background: var(--white); }
.format__media { position: relative; background: var(--navy-700); display: grid; place-items: center; overflow: hidden; }
.format__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.format__media--landscape { aspect-ratio: 16/9; }
.format__media--portrait { aspect-ratio: 9/16; max-height: 420px; }
.format__media .play-btn { position: relative; z-index: 2; }
.format__body { padding: 20px 22px; }
.format__ratio { font-size: .76rem; font-weight: 600; color: var(--muted); }
.section--light .format__ratio, .section--white .format__ratio { color: #8492a8; }
.format__name { font-size: 1.25rem; font-weight: 700; margin: 6px 0 8px; }
.format__text { font-size: .95rem; color: var(--muted); }
.section--light .format__text, .section--white .format__text { color: var(--ink-soft); }

/* ===== URL PREVIEW FORM ===== */
.prova__form { display: flex; gap: 12px; max-width: 620px; }
.section--center .prova__form { margin-inline: auto; }
.prova__form input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid var(--line-d); border-radius: 999px; padding: 15px 22px; color: var(--white); font-size: 1rem; font-family: inherit; }
.section--light .prova__form input, .section--white .prova__form input { background: #fff; border-color: var(--line-l); color: var(--ink); }
.prova__form input:focus { outline: none; border-color: rgba(255,255,255,.5); }
.section--light .prova__form input:focus, .section--white .prova__form input:focus { border-color: var(--navy); }
.prova__form input::placeholder { color: var(--muted-2); }
.prova__result { margin-top: 30px; max-width: 720px; }
.section--center .prova__result { margin-inline: auto; }
.preview-card { display: flex; gap: 20px; background: var(--navy-800); border: 1px solid var(--line-d); border-radius: var(--radius); padding: 20px; align-items: center; text-align: left; }
.section--light .preview-card, .section--white .preview-card { background: #fff; border-color: var(--line-l); color: var(--ink); }
.preview-card img { width: 180px; height: 120px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; background: var(--navy-700); }
.preview-card__body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.preview-card__body p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.section--light .preview-card__body p, .section--white .preview-card__body p { color: var(--ink-soft); }
.preview-card__url { color: var(--muted-2); font-size: .82rem; margin-top: 10px; }
.preview-loading, .preview-error { color: var(--muted); padding: 16px 0; }
.section--light .preview-loading, .section--white .preview-loading { color: var(--ink-soft); }
.preview-error { color: #e06a6a; }

/* ===== PRICING ===== */
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.price-card { position: relative; background: var(--white); border: 1px solid var(--line-l); border-radius: var(--radius); padding: 32px 26px; color: var(--ink); }
.price-card--featured { border-color: var(--navy); box-shadow: 0 24px 60px -24px rgba(10,22,40,.4); }
.price-card__badge { position: absolute; top: -12px; left: 26px; background: var(--navy); color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.price-card__name { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.price-card__desc { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; min-height: 38px; }
.price-card__price { font-size: 2.5rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 22px; }
.price-card__price span { font-size: 1rem; font-weight: 500; color: var(--ink-soft); }
.price-card__list { list-style: none; margin-bottom: 26px; display: grid; gap: 11px; }
.price-card__list li { color: var(--ink-soft); font-size: .94rem; padding-left: 26px; position: relative; }
.price-card__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--navy); font-weight: 800; }

/* ===== FAQ ===== */
.faq__list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--white); border: 1px solid var(--line-l); border-radius: var(--radius-sm); padding: 4px 24px; }
.section--dark .faq__item { background: var(--navy-800); border-color: var(--line-d); }
.faq__item summary { cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--ink-soft); flex-shrink: 0; }
.section--dark .faq__item summary::after { color: var(--muted); }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { color: var(--ink-soft); padding-bottom: 22px; }
.section--dark .faq__item p { color: var(--muted); }

/* ===== CTA FINAL ===== */
.cta-final__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
.cta-final p { color: var(--muted); margin: 16px 0 30px; font-size: 1.1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-900); padding: 70px 0 34px; border-top: 1px solid var(--line-d); }
.footer__inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; }
.footer__brand { max-width: 320px; }
.footer__logo { display: block; height: 26px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--muted); font-size: .95rem; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col { display: grid; gap: 11px; align-content: start; }
.footer__col h4 { font-size: .82rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: .95rem; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--line-d); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .9rem; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-hero { padding: 80px 0 56px; background: var(--navy); border-bottom: 1px solid var(--line-d); }
.page-hero .h-lg { max-width: 18ch; }

/* ===== CASE STUDIES / TESTIMONIALS ===== */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.case {
  background: var(--navy-800); border: 1px solid var(--line-d); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.case__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.case__metric { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; color: var(--white); line-height: 1; }
.case__metric small { display: block; font-size: .82rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: 6px; }
.case__client { font-size: .9rem; font-weight: 700; color: #c2cde0; }
.case__quote { font-size: 1.15rem; line-height: 1.5; color: #e3e9f2; }
.case__author { font-size: .9rem; color: var(--muted-2); margin-top: auto; }
.case__tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

/* ===== BRANDED FORMATS SHOWCASE (tabs) ===== */
.showcase__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.showcase__tab {
  font-family: inherit; font-size: .95rem; font-weight: 600; cursor: pointer;
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line-l);
  background: transparent; color: var(--ink-soft); transition: .2s;
}
.showcase__tab:hover { border-color: rgba(10,22,40,.35); }
.showcase__tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.showcase__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.showcase__item { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line-l); background: #fff; }
.showcase__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.showcase__media .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.showcase__badge { position: absolute; top: 8px; right: 8px; font-size: .66rem; font-weight: 700; color: #fff; background: rgba(10,22,40,.6); padding: 3px 8px; border-radius: 999px; backdrop-filter: blur(4px); }
.showcase__cap { padding: 12px 14px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.showcase__cap small { display: block; font-weight: 500; color: #8492a8; font-size: .78rem; margin-top: 2px; }

/* ===== BLOG / POSTS ===== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-l); background: var(--white); transition: transform .25s var(--ease); }
.post:hover { transform: translateY(-4px); }
.post__media { aspect-ratio: 16/9; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; }
.post__body { padding: 22px; }
.post__tag { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8492a8; }
.post__title { font-size: 1.2rem; font-weight: 700; margin: 8px 0; color: var(--ink); }
.post__text { font-size: .93rem; color: var(--ink-soft); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .cases, .posts { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .usecases__grid, .benefits__grid, .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .formats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__right { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy-900); border-bottom: 1px solid var(--line-d);
    padding: 16px 24px; margin: 0;
  }
  .nav.is-open .nav__right { display: block; position: absolute; top: 70px; right: 24px; transform: translateY(160px); }
  .usecases__grid, .benefits__grid, .formats, .pricing__grid, .showcase__grid, .posts { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .prova__form { flex-direction: column; }
  .prova__form input, .prova__form .btn { width: 100%; }
  .preview-card { flex-direction: column; align-items: flex-start; }
  .preview-card img { width: 100%; height: 190px; }
  .footer__inner { flex-direction: column; gap: 32px; }
}
