/* =========================================
   StudioVendora — Portfolio
   ========================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --green: #00C853;
  --green-dark: #009E3F;
  --green-soft: #E8F8EE;

  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --text: #2A2A2A;
  --muted: #6B7280;
  --line: #E5E7EB;
  --bg: #FFFFFF;
  --bg-alt: #F7F8F9;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.04);
  --shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.08);

  --container: 1200px;
  --pad-y: 96px;
  --pad-y-mobile: 64px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
p { margin: 0; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 200, 83, 0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--bg-alt);
}
.btn--small { padding: 10px 16px; font-size: 14px; }
.btn--large { padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav__logo img { height: 52px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links .btn { margin-left: 8px; }
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover { color: #fff; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: all 0.25s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 16px 20px 32px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__links .btn { margin: 16px 0 0; text-align: center; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero__title .accent {
  position: relative;
  white-space: nowrap;
}
.hero__title .accent::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4px;
  height: 14px;
  background: var(--green);
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.hero__subtitle {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 56px; }
  .hero__trust { gap: 16px; }
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--muted);
}

/* ---------- SERVIZI ---------- */
.services { padding: var(--pad-y) 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card__lead {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
}
.service-card__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--green);
}

/* ---------- PROGETTI ---------- */
.projects {
  padding: var(--pad-y) 0;
  background: var(--bg-alt);
}
.projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .projects__grid { gap: 32px; }
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}

/* Scroll orizzontale interno — schermate grandi, focus visivo */
.project-card__screens {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 32px;
  padding: 32px;
  background: linear-gradient(180deg, #fafafa 0%, #efefef 100%);
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.project-card__screens::-webkit-scrollbar { height: 8px; }
.project-card__screens::-webkit-scrollbar-track { background: transparent; }
.project-card__screens::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.project-card__screens::-webkit-scrollbar-thumb:hover { background: var(--muted); }
@media (max-width: 640px) {
  .project-card__screens { padding: 16px; gap: 12px; scroll-padding-left: 16px; }
}

.project-screen {
  flex: 0 0 65%;
  min-width: 65%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  scroll-snap-align: start;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 900px) {
  .project-screen { flex: 0 0 80%; min-width: 80%; }
}
@media (max-width: 640px) {
  .project-screen { flex: 0 0 90%; min-width: 90%; }
}

/* Per le card con immagine reale (img) all'interno di .project-screen */
.project-screen img.project-screen__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  z-index: 0;
}

/* Browser chrome decorativo (i 3 pallini) — solo su placeholder, non su img reali */
.project-screen--placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.project-screen--placeholder::after {
  content: '';
  position: absolute;
  top: 8px; left: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  box-shadow: 14px 0 0 rgba(0,0,0,0.15), 28px 0 0 rgba(0,0,0,0.15);
}

.project-screen__label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.project-card__body { padding: 36px 40px; }
@media (max-width: 640px) {
  .project-card__body { padding: 24px; }
}
.project-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.project-card__head h3 {
  font-size: 28px;
}
@media (max-width: 640px) {
  .project-card__head h3 { font-size: 24px; }
}
.project-card__head-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* badge stato progetto: live vs concept */
.project-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
}
.project-status--live {
  background: var(--green-soft);
  color: var(--green-dark);
  border-color: rgba(0, 200, 83, 0.25);
}
.project-status--live .project-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulseLive 1.8s ease-in-out infinite;
}
@keyframes pulseLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.project-status--concept {
  background: var(--bg-alt);
  color: var(--muted);
  border-color: var(--line);
}
.project-card__sector {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 999px;
}
.project-card__body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.project-card__tags li {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 6px;
}
.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.project-card__link:hover { gap: 12px; }
.project-card__link--demo {
  color: var(--muted);
  border-bottom-color: var(--line);
  cursor: default;
}

/* ---------- APPROCCI / TIPI DI SITO ---------- */
.approcci { padding: var(--pad-y) 0; background: #fff; }
.approcci__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .approcci__grid { grid-template-columns: 1fr; gap: 20px; }
}

.approccio-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.approccio-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.approccio-card--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.approccio-card--dark:hover {
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(0, 200, 83, 0.18);
}
.approccio-card--dark h3 { color: #fff; }

.approccio-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 22px;
}
.approccio-card--dark .approccio-card__icon {
  background: rgba(0, 200, 83, 0.14);
  color: var(--green);
}
.approccio-card__icon svg { width: 28px; height: 28px; }

.approccio-card__tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.approccio-card--dark .approccio-card__tag { color: var(--green); }

.approccio-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.approccio-card__lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.approccio-card--dark .approccio-card__lead { color: rgba(255, 255, 255, 0.72); }

.approccio-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.approccio-card__features li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.approccio-card--dark .approccio-card__features li { color: rgba(255, 255, 255, 0.9); }
.approccio-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
}
.approccio-card--dark .approccio-card__features li::before {
  background: rgba(0, 200, 83, 0.18);
}
.approccio-card__features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(-45deg);
}
.approccio-card--dark .approccio-card__features li::after {
  border-color: var(--green);
}

.approccio-card__ideal {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.approccio-card--dark .approccio-card__ideal {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}
.approccio-card__ideal strong {
  color: var(--ink);
  font-weight: 600;
}
.approccio-card--dark .approccio-card__ideal strong { color: #fff; }

.approcci__footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--muted);
}
.approcci__footnote a {
  color: var(--green-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.approcci__footnote a:hover { color: var(--ink); }

/* ---------- PREZZI ---------- */
.prezzi { padding: var(--pad-y) 0; background: var(--bg-alt); }
.prezzi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .prezzi__grid { grid-template-columns: 1fr; gap: 16px; }
}

.prezzo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.prezzo-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.prezzo-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(1.02);
}
.prezzo-card--featured:hover {
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(0, 200, 83, 0.18);
  transform: scale(1.02) translateY(-4px);
}
.prezzo-card--featured h3 { color: #fff; }

.prezzo-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.prezzo-card__tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.prezzo-card--featured .prezzo-card__tag { color: var(--green); }

.prezzo-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.prezzo-card__lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.prezzo-card--featured .prezzo-card__lead { color: rgba(255,255,255,0.65); }

.prezzo-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.prezzo-card--featured .prezzo-card__price { border-bottom-color: rgba(255,255,255,0.12); }
.prezzo-card__from {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.prezzo-card--featured .prezzo-card__from { color: rgba(255,255,255,0.5); }
.prezzo-card__amount {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.prezzo-card--featured .prezzo-card__amount { color: #fff; }

.prezzo-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prezzo-card__includes li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.45;
}
.prezzo-card--featured .prezzo-card__includes li { color: rgba(255,255,255,0.88); }
.prezzo-card__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-soft);
}
.prezzo-card--featured .prezzo-card__includes li::before {
  background: rgba(0, 200, 83, 0.18);
}
.prezzo-card__includes li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(-45deg);
}
.prezzo-card--featured .prezzo-card__includes li::after { border-color: var(--green); }

.prezzo-card__time {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prezzo-card--featured .prezzo-card__time {
  color: rgba(255,255,255,0.6);
  border-top-color: rgba(255,255,255,0.12);
}
.prezzo-card__time strong { color: var(--ink); font-weight: 600; }
.prezzo-card--featured .prezzo-card__time strong { color: #fff; }

.prezzi__extra {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .prezzi__extra { grid-template-columns: 1fr; }
}
.prezzi__extra-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.prezzi__extra-item strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}
.prezzi__extra-item span {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.prezzi__extra-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.prezzi__footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--muted);
}
.prezzi__footnote a {
  color: var(--green-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.prezzi__footnote a:hover { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { padding: var(--pad-y) 0; background: #fff; }
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  transition: background 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--bg-alt); }
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.2s ease;
  line-height: 1;
}
.faq__item[open] .faq__icon {
  background: var(--green);
  color: #fff;
  transform: rotate(45deg);
}
.faq__item p {
  padding: 0 24px 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- PROCESSO ---------- */
.process { padding: var(--pad-y) 0; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process__steps { grid-template-columns: 1fr; }
}

.process__step {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}
.process__step:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.process__number {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.process__step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.process__step p {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- STUDIO ---------- */
.studio {
  padding: var(--pad-y) 0;
  background: var(--bg-alt);
}
.studio__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .studio__inner { grid-template-columns: 1fr; gap: 40px; }
}
.studio__copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 24px;
}
.studio__copy p {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.studio__founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.studio__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--green) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.studio__founder-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}
.studio__founder-role {
  color: var(--muted);
  font-size: 14px;
}

.studio__values {
  display: grid;
  gap: 20px;
}
.studio__values li {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.studio__values li:hover {
  border-color: var(--green);
  transform: translateX(4px);
}
.value-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}
.studio__values h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.studio__values p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.cta {
  padding: var(--pad-y) 0;
  background: var(--ink);
  color: #fff;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
}
.cta__copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
}
.cta__copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.cta__form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.cta__alt {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.cta__alt a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--green);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0A0A0A;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}
.footer__tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col ul li { margin-bottom: 10px; font-size: 14px; }
.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--green); }
.footer__col p { font-size: 14px; margin-bottom: 6px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a:hover { color: var(--green); }

/* ---------- UTILS ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
