/* ============================================================
   PALETTE & TOKENS
   ============================================================ */
:root {
  --navy: #1F3A5F;
  --navy-dark: #15263F;
  --gold: #E89B2D;
  --gold-soft: #FBE9CB;
  --teal: #1F8472;
  --teal-dark: #176A5C;
  --bg: #FFFFFF;
  --bg-soft: #F4F4F4;
  --bg-card: #FAFAFA;
  --text: #1A1A1A;
  --text-muted: #5C5C5C;
  --border: #E5E5E5;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 28px rgba(31, 58, 95, 0.08);

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER (brand bar)
   ============================================================ */
.brandbar {
  padding: 18px 0 8px;
  background: var(--bg);
  text-align: center;
}
.brandbar img {
  height: 48px;
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(31, 132, 114, 0.25);
}
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   S01 — HERO ATF
   ============================================================ */
.hero {
  padding: 56px 0 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(30px, 2.9vw, 36px);
  line-height: 1.14;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 22px;
}
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 60%, var(--gold-soft) 60%);
  padding: 0 4px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.hero-bullets li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.5;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.hero-bullets li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 17px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero-microreass {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.hero-image {
  position: relative;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ============================================================
   S02 — AUTORITÀ IMMEDIATA
   ============================================================ */
.authority {
  background: var(--bg);
}
.authority-logos {
  padding: 48px 0 56px;
}
.authority-stats {
  padding: 60px 0 64px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.authority-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 0 8px;
}
.stat-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num .plus {
  color: var(--gold);
}
.stat-lbl {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.authority-headline {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.authority-media-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.logo-slider {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.logo-slider::-webkit-scrollbar { display: none; }
.logo-track {
  display: flex;
  width: max-content;
  gap: 56px;
  align-items: center;
  padding: 12px 0;
}
.logo-track img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 96px 0;
}
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section-title .hl {
  background: linear-gradient(180deg, transparent 60%, var(--gold-soft) 60%);
  padding: 0 6px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.section-lead {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* ============================================================
   S03 — 3 CARD VANTAGGI
   ============================================================ */
.benefits {
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
}
.benefit-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.benefit-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   S04 — PAIN POINTS STRUTTURALI
   ============================================================ */
.pains {
  background: var(--bg-soft);
}
.pains-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.pains-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 42px;
}
.pain-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.pain-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.pain-text {
  font-size: 17px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}
.pain-text strong { font-weight: 800; color: var(--navy); }

.pain-row.is-critical {
  background: var(--navy);
  border-color: var(--navy);
}
.pain-row.is-critical .pain-num {
  background: var(--gold);
  color: var(--navy);
}
.pain-row.is-critical .pain-text {
  color: #fff;
}
.pain-row.is-critical .pain-text strong {
  color: var(--gold);
}

.pains-bridge {
  text-align: center;
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 18px;
  font-style: italic;
}
.pains-bridge::before {
  content: '↓';
  display: block;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  font-style: normal;
}

/* ============================================================
   S05 — PRIMA / DOPO
   ============================================================ */
.contrast {
  background: var(--bg);
}
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.contrast-col {
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  border: 1px solid var(--border);
}
.contrast-col.before {
  background: #FDF4F3;
  border-color: #F4D5D0;
}
.contrast-col.after {
  background: #FDF7EB;
  border-color: #F1DDB0;
}
.contrast-col h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid;
}
.contrast-col.before h3 {
  color: #C44A38;
  border-color: #F4D5D0;
}
.contrast-col.after h3 {
  color: var(--gold);
  border-color: #F1DDB0;
}
.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contrast-list li {
  position: relative;
  padding-left: 36px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
}
.contrast-col.before li {
  color: #6B3A33;
}
.contrast-col.after li {
  color: #5B4426;
  font-weight: 500;
}
.contrast-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contrast-col.before .contrast-list li::before {
  background: #E97362;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.contrast-col.after .contrast-list li::before {
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

/* ============================================================
   S06 — METODO IN 3 FASI
   ============================================================ */
.method {
  background: var(--bg-soft);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.phase-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  border-top: 4px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.phase-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 14px;
  font-family: var(--font-sans);
}
.phase-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.phase-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.phase-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.phase-output {
  padding: 14px 16px;
  background: var(--gold-soft);
  border-radius: 10px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.45;
}
.phase-output strong { font-weight: 800; }

/* ============================================================
   S07 — PROMESSA CENTRALE
   ============================================================ */
.promise {
  background: var(--bg);
  padding: 110px 0;
  position: relative;
}
.promise-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.promise-quote {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.promise-text {
  font-family: var(--font-sans);
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -1px;
  position: relative;
}
.promise-text .hl {
  background: linear-gradient(180deg, transparent 60%, var(--gold-soft) 60%);
  padding: 0 6px;
}
.promise-text::before,
.promise-text::after {
  font-family: Georgia, serif;
  font-size: 90px;
  color: var(--gold);
  line-height: 0;
  position: relative;
  vertical-align: -0.4em;
  opacity: 0.4;
}
.promise-text::before { content: '\201C'; margin-right: 10px; }
.promise-text::after  { content: '\201D'; margin-left: 6px; }

.promise-sig {
  margin-top: 38px;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.promise-sig span { color: var(--navy); font-weight: 800; }

/* ============================================================
   S08 — TESTIMONIANZE
   ============================================================ */
.testimonials {
  background: var(--bg-soft);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 16px;
}
.testimonial-quote {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.6;
  flex-grow: 1;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testimonial-author small {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 2px;
  font-size: 12.5px;
}
/* ============================================================
   S09 — PER CHI È / NON È
   ============================================================ */
.fit {
  background: var(--bg);
}
.fit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.fit-col {
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.fit-col.is-for {
  background: var(--gold-soft);
  border: 2px solid var(--gold);
}
.fit-col.is-not {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.fit-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.fit-col.is-not h3 {
  color: var(--text-muted);
}
.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fit-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.55;
}
.fit-col.is-for li {
  color: var(--text);
  font-weight: 500;
}
.fit-col.is-not li {
  color: var(--text-muted);
}
.fit-col.is-for li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.45;
}
.fit-col.is-not li::before {
  content: '×';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
}

/* ============================================================
   S10 — SPACCHETTAMENTO OFFERTA
   ============================================================ */
.offer {
  background: var(--bg-soft);
}
.section.offer { padding-bottom: 32px; }
.section.offer + .price { padding-top: 24px; }
.offer-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
}
.offer-list {
  list-style: none;
}
.offer-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.offer-list .offer-row:last-child { border-bottom: none; }
.offer-row:first-child { padding-top: 4px; }
.offer-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer-content h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.offer-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.offer-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.offer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 28px;
  margin-top: 8px;
}
.offer-total-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.offer-total-label small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-top: 4px;
}
.offer-total-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

/* ============================================================
   S12 — GARANZIA
   ============================================================ */
.guarantee {
  background: var(--bg-soft);
  padding: 24px 0 80px;
}
.guarantee-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.guarantee-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(31, 58, 95, 0.25);
}
.guarantee-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: -0.4px;
  line-height: 1.25;
}
.guarantee-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}
.guarantee-card p:last-child { margin-bottom: 0; }

/* ============================================================
   S13 — PREZZO + PRE-FORM
   ============================================================ */
.price {
  background: var(--bg-soft);
  padding: 80px 0 32px;
}
.price-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 14px 48px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.price-card-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 18px 60px rgba(232, 155, 45, 0.18);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.4;
}
.price-new {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.price-new sup {
  font-size: 22px;
  vertical-align: 24px;
  margin-right: 4px;
  color: var(--gold);
  font-weight: 700;
}
.price-vat {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.price-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.45;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E89B2D' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.price-cta {
  display: block;
  width: 100%;
  padding: 16px 22px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid var(--teal);
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 8px 22px rgba(31, 132, 114, 0.25);
  margin-top: auto;
}
.price-cta:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 132, 114, 0.35);
}
.price-cta-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}
.price-cta-secondary:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 22px rgba(31, 58, 95, 0.25);
}

/* ============================================================
   S15 — FAQ
   ============================================================ */
.faq {
  background: var(--bg-soft);
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}
.faq-body {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-body strong { color: var(--navy); font-weight: 700; }

/* ============================================================
   S19 — BIO ALESSANDRA
   ============================================================ */
.bio {
  background: var(--bg);
  padding: 100px 0;
}
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
.bio-photo {
  position: relative;
}
.bio-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
  aspect-ratio: 4/5;
}
.bio-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bio-decor {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-lg);
  background: var(--gold-soft);
  z-index: -1;
}
.bio-content .section-eyebrow {
  text-align: left;
}
.bio-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.bio-content h2 .hl {
  background: linear-gradient(180deg, transparent 60%, var(--gold-soft) 60%);
  padding: 0 6px;
}
.bio-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
}
.bio-content p:last-of-type {
  margin-bottom: 26px;
}
.bio-content strong { color: var(--navy); font-weight: 700; }
.bio-signature {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin: 20px 0 26px;
  letter-spacing: -0.3px;
}
.bio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.bio-link:hover { color: var(--teal-dark); border-color: var(--teal-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 36px 0;
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.3px;
}
.footer a { color: var(--gold); }

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (min-width: 901px) and (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE & TABLET (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }

  /* Brand bar */
  .brandbar { padding: 18px 0 14px; }
  .brandbar img { height: 42px; }

  /* Hero */
  .hero { padding: 20px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero h1 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .hero h1 .h1-br { display: none; }
  .eyebrow { font-size: 11px; letter-spacing: 1.6px; margin-bottom: 12px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 18px; line-height: 1.5; }
  .hero-bullets { margin-bottom: 22px; }
  .hero-bullets li { font-size: 14.5px; padding: 6px 0 6px 28px; }
  .hero-bullets li::before { top: 12px; }
  .hero-bullets li::after { top: 17px; }

  .hero-image { max-width: 480px; margin: 24px auto 0; }
  .hero-image-frame { aspect-ratio: 16 / 10; }
  .hero-badge {
    left: 50%;
    right: auto;
    bottom: -14px;
    transform: translateX(-50%);
    padding: 8px 14px;
    gap: 10px;
  }
  .hero-badge .num { font-size: 20px; }
  .hero-badge .lbl { font-size: 10.5px; line-height: 1.2; }

  .hero-cta-row { width: 100%; gap: 14px; align-items: center; }
  .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 17px 24px;
    font-size: 15.5px;
  }
  .hero-microreass { text-align: center; font-size: 13.5px; }

  /* Authority */
  .authority-logos { padding: 36px 0 40px; }
  .authority-stats { padding: 44px 0 48px; }
  .authority-eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .authority-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat { padding: 0 4px; }
  .stat-num { font-size: 38px; letter-spacing: -1.2px; margin-bottom: 6px; }
  .stat-lbl { font-size: 11.5px; letter-spacing: 0.6px; line-height: 1.3; }
  .authority-headline { font-size: 22px; margin-bottom: 22px; }
  .authority-media-label { margin-bottom: 18px; font-size: 10.5px; }
  .logo-track { gap: 32px; padding: 8px 0; }
  .logo-track img { height: 38px; max-width: 120px; }

  /* Section commons */
  .section { padding: 56px 0; }
  .section-eyebrow { font-size: 11px; letter-spacing: 2px; margin-bottom: 14px; }
  .section-title {
    font-size: 28px;
    letter-spacing: -0.4px;
    line-height: 1.18;
    margin-bottom: 14px;
  }
  .section-lead { font-size: 15.5px; margin-bottom: 36px; line-height: 1.55; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card { padding: 26px 22px; border-radius: var(--radius-md); }
  .benefit-card h3 { font-size: 19px; margin-bottom: 10px; }
  .benefit-card p { font-size: 15px; }
  .benefit-icon { width: 46px; height: 46px; margin-bottom: 16px; }

  /* Pains */
  .pain-row { padding: 16px 16px; gap: 14px; border-radius: var(--radius-sm); }
  .pain-num { width: 36px; height: 36px; font-size: 12.5px; }
  .pain-text { font-size: 15px; line-height: 1.45; }
  .pains-list { gap: 10px; margin-bottom: 14px; }
  .pains-bridge { font-size: 16px; line-height: 1.4; padding-top: 0; }
  .pains-bridge::before { font-size: 18px; margin-bottom: 6px; }

  /* Contrast */
  .contrast-grid { grid-template-columns: 1fr; gap: 14px; }
  .contrast-col { padding: 24px 22px; }
  .contrast-col h3 { font-size: 12px; margin-bottom: 18px; padding-bottom: 14px; }
  .contrast-list { gap: 14px; }
  .contrast-list li { font-size: 15px; padding-left: 32px; }
  .contrast-list li::before { width: 20px; height: 20px; }

  /* Method */
  .method-grid { grid-template-columns: 1fr; gap: 14px; }
  .phase-card { padding: 26px 22px; }
  .phase-num { font-size: 40px; margin-bottom: 10px; }
  .phase-label { font-size: 10.5px; margin-bottom: 10px; }
  .phase-card h3 { font-size: 19px; margin-bottom: 10px; }
  .phase-card p { font-size: 15px; margin-bottom: 12px; }
  .phase-output { font-size: 13.5px; padding: 12px 14px; }

  /* Promise */
  .promise { padding: 60px 0; }
  .promise-quote { margin-bottom: 22px; font-size: 11px; letter-spacing: 2px; }
  .promise-text { font-size: 24px; letter-spacing: -0.4px; line-height: 1.25; }
  .promise-text::before,
  .promise-text::after { font-size: 48px; }
  .promise-text::before { margin-right: 4px; }
  .promise-text::after { margin-left: 2px; }
  .promise-sig { margin-top: 26px; font-size: 12px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial { padding: 22px 20px; gap: 12px; }
  .testimonial-quote { font-size: 15px; }

  /* Fit */
  .fit-grid { grid-template-columns: 1fr; gap: 14px; }
  .fit-col { padding: 26px 22px; }
  .fit-col h3 { font-size: 16px; margin-bottom: 18px; }
  .fit-list { gap: 14px; }
  .fit-list li { font-size: 15px; padding-left: 26px; }

  /* Offer */
  .section.offer { padding-bottom: 24px; }
  .offer-wrap { padding: 24px 18px; border-radius: var(--radius-md); }
  .offer-row {
    grid-template-columns: 28px 1fr;
    column-gap: 14px;
    padding: 16px 0;
  }
  .offer-check { width: 26px; height: 26px; }
  .offer-content h4 { font-size: 15.5px; }
  .offer-content p { font-size: 13.5px; line-height: 1.45; }

  /* Guarantee */
  .guarantee { padding: 20px 0 56px; }
  .guarantee-card { padding: 32px 22px; }
  .guarantee-icon { width: 54px; height: 54px; margin-bottom: 16px; }
  .guarantee-card h3 { font-size: 20px; margin-bottom: 14px; }
  .guarantee-card p { font-size: 14.5px; line-height: 1.55; margin-bottom: 14px; }

  /* Price */
  .price { padding: 50px 0 24px; }
  .section.offer + .price { padding-top: 20px; }
  .price-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-card { padding: 30px 22px 26px; border-radius: var(--radius-md); }
  .price-label { font-size: 12px; letter-spacing: 1.6px; }
  .price-tag { font-size: 12.5px; margin-bottom: 18px; }
  .price-new { font-size: 46px; letter-spacing: -1.5px; }
  .price-new sup { font-size: 19px; vertical-align: 20px; }
  .price-vat { font-size: 12px; margin-bottom: 20px; }
  .price-features { gap: 10px; margin-bottom: 22px; }
  .price-features li { font-size: 14px; }
  .price-cta { padding: 16px 20px; font-size: 14.5px; letter-spacing: 0.4px; }
  .price-badge { font-size: 10px; padding: 5px 12px; top: -12px; }

  /* FAQ */
  .faq-wrap { gap: 10px; }
  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
    gap: 12px;
    line-height: 1.4;
  }
  .faq-toggle { width: 26px; height: 26px; font-size: 18px; }
  .faq-body { padding: 0 20px 20px; font-size: 14.5px; line-height: 1.6; }

  /* Bio */
  .bio { padding: 56px 0; }
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-photo { max-width: 300px; margin: 0 auto; }
  .bio-decor { display: none; }
  .bio-content .section-eyebrow { text-align: left; }
  .bio-content h2 { font-size: 26px; letter-spacing: -0.4px; margin-bottom: 18px; }
  .bio-content p { font-size: 15.5px; line-height: 1.6; }
  .bio-signature { font-size: 22px; margin: 16px 0 22px; }

  /* Section CTA */
  .section-cta { margin-top: 40px; }

  /* Footer */
  .footer { padding: 28px 0; font-size: 12.5px; line-height: 1.5; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Brand bar */
  .brandbar { padding: 14px 0 12px; }
  .brandbar img { height: 36px; }

  /* Hero */
  .hero { padding: 16px 0 36px; }
  .hero-grid { gap: 16px; }
  .hero h1 { font-size: 25px; letter-spacing: -0.3px; margin-bottom: 12px; line-height: 1.15; }
  .eyebrow { margin-bottom: 10px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 16px; line-height: 1.5; }
  .hero-bullets { margin-bottom: 20px; }
  .hero-bullets li { font-size: 13.5px; padding: 5px 0 5px 26px; }
  .hero-image { max-width: 100%; margin-top: 20px; }
  .hero-image-frame { aspect-ratio: 16 / 10; }
  .hero-badge { padding: 7px 12px; bottom: -12px; gap: 8px; }
  .hero-badge .num { font-size: 17px; }
  .hero-badge .lbl { font-size: 9.5px; line-height: 1.15; }
  .btn { padding: 15px 22px; font-size: 14.5px; }
  .hero-microreass { font-size: 12.5px; }

  /* Authority */
  .authority { padding: 40px 0; }
  .authority-grid { gap: 8px; }
  .stat-num { font-size: 30px; letter-spacing: -0.8px; }
  .stat-lbl { font-size: 10px; letter-spacing: 0.4px; }
  .logo-track { gap: 24px; padding: 6px 0; }
  .logo-track img { height: 32px; max-width: 100px; }

  /* Section commons */
  .section { padding: 48px 0; }
  .section-title { font-size: 24px; line-height: 1.2; }
  .section-lead { font-size: 14.5px; margin-bottom: 30px; }

  /* Benefits */
  .benefit-card { padding: 22px 18px; }
  .benefit-card h3 { font-size: 17.5px; }
  .benefit-card p { font-size: 14.5px; }

  /* Pains */
  .pain-row { padding: 14px 14px; gap: 12px; }
  .pain-num { width: 32px; height: 32px; font-size: 12px; }
  .pain-text { font-size: 14px; }
  .pains-bridge { font-size: 14.5px; }

  /* Contrast */
  .contrast-col { padding: 22px 18px; }
  .contrast-list li { font-size: 14px; padding-left: 30px; }

  /* Method */
  .phase-card { padding: 22px 18px; }
  .phase-num { font-size: 34px; }
  .phase-card h3 { font-size: 17.5px; }
  .phase-card p { font-size: 14.5px; }
  .phase-output { font-size: 13px; }

  /* Promise */
  .promise { padding: 52px 0; }
  .promise-text { font-size: 20px; line-height: 1.3; }
  .promise-text::before,
  .promise-text::after { font-size: 36px; }

  /* Testimonials */
  .testimonial { padding: 20px 18px; }
  .testimonial-quote { font-size: 14.5px; }

  /* Fit */
  .fit-col { padding: 22px 18px; }
  .fit-list li { font-size: 14.5px; }

  /* Offer */
  .section.offer { padding-bottom: 20px; }
  .offer-wrap { padding: 22px 16px; }
  .offer-row { column-gap: 12px; padding: 14px 0; }
  .offer-content h4 { font-size: 14.5px; }
  .offer-content p { font-size: 13px; }

  /* Guarantee */
  .guarantee { padding: 16px 0 48px; }
  .guarantee-card { padding: 28px 18px; }
  .guarantee-card h3 { font-size: 18px; line-height: 1.3; }
  .guarantee-card p { font-size: 14px; }

  /* Price */
  .price { padding: 44px 0 20px; }
  .section.offer + .price { padding-top: 16px; }
  .price-card { padding: 28px 18px 24px; }
  .price-new { font-size: 42px; letter-spacing: -1.4px; }
  .price-new sup { font-size: 17px; vertical-align: 17px; }
  .price-features li { font-size: 13.5px; }
  .price-cta { padding: 16px 18px; font-size: 14px; }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .faq-body { padding: 0 18px 18px; font-size: 14px; }

  /* Bio */
  .bio { padding: 48px 0; }
  .bio-photo { max-width: 260px; }
  .bio-content h2 { font-size: 22px; }
  .bio-content p { font-size: 15px; }
  .bio-signature { font-size: 20px; }
}

/* ============================================================
   RESPONSIVE — SMALL MODERN PHONES (≤390px)
   iPhone 13/14/15 mini, iPhone SE 2/3, Pixel compact
   ============================================================ */
@media (max-width: 390px) {
  .container { padding: 0 15px; }

  /* Hero */
  .hero h1 { font-size: 23.5px; line-height: 1.18; }
  .hero-sub { font-size: 14px; }
  .hero-bullets li { font-size: 13px; padding-left: 24px; }
  .hero-bullets li::before { width: 14px; height: 14px; top: 14px; }
  .hero-bullets li::after { left: 3.5px; top: 17px; }
  .hero-image { max-width: 100%; }
  .hero-badge { padding: 6px 11px; gap: 7px; bottom: -11px; }
  .hero-badge .num { font-size: 16px; }
  .hero-badge .lbl { font-size: 9px; letter-spacing: 0.2px; }
  .hero-microreass { font-size: 12px; line-height: 1.45; }

  /* Authority stats */
  .authority-stats { padding: 36px 0 40px; }
  .authority-grid { gap: 6px; }
  .stat { padding: 0 2px; }
  .stat-num { font-size: 26px; letter-spacing: -0.6px; margin-bottom: 4px; }
  .stat-lbl { font-size: 9.5px; letter-spacing: 0.2px; line-height: 1.25; }
  .authority-media-label { font-size: 9.5px; letter-spacing: 1.6px; margin-bottom: 16px; }
  .logo-track { gap: 20px; }
  .logo-track img { height: 28px; max-width: 92px; }

  /* Section commons */
  .section { padding: 44px 0; }
  .section-eyebrow { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 12px; }
  .section-title { font-size: 22px; letter-spacing: -0.2px; line-height: 1.22; }
  .section-title .hl { padding: 0 4px; }
  .section-lead { font-size: 14px; margin-bottom: 26px; line-height: 1.5; }

  /* Buttons */
  .btn { padding: 14px 18px; font-size: 14px; gap: 8px; }

  /* Benefits */
  .benefit-card { padding: 20px 16px; }
  .benefit-card h3 { font-size: 16.5px; margin-bottom: 8px; }
  .benefit-card p { font-size: 14px; line-height: 1.5; }
  .benefit-icon { width: 42px; height: 42px; margin-bottom: 14px; }

  /* Pains */
  .pain-row { padding: 13px 12px; gap: 10px; }
  .pain-num { width: 28px; height: 28px; font-size: 11px; flex-shrink: 0; }
  .pain-text { font-size: 13.5px; line-height: 1.45; }
  .pains-bridge { font-size: 13.5px; line-height: 1.45; }
  .pains-bridge::before { font-size: 16px; }

  /* Contrast */
  .contrast-col { padding: 20px 16px; }
  .contrast-col h3 { font-size: 11.5px; margin-bottom: 14px; padding-bottom: 12px; }
  .contrast-list { gap: 12px; }
  .contrast-list li { font-size: 13.5px; padding-left: 28px; line-height: 1.5; }
  .contrast-list li::before { width: 18px; height: 18px; }

  /* Method */
  .phase-card { padding: 20px 16px; }
  .phase-num { font-size: 30px; margin-bottom: 8px; }
  .phase-label { font-size: 9.5px; letter-spacing: 1.2px; margin-bottom: 8px; }
  .phase-card h3 { font-size: 16.5px; margin-bottom: 8px; }
  .phase-card p { font-size: 13.5px; line-height: 1.5; margin-bottom: 10px; }
  .phase-output { font-size: 12px; padding: 10px 12px; line-height: 1.45; }

  /* Promise */
  .promise { padding: 44px 0; }
  .promise-quote { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 18px; }
  .promise-text { font-size: 18px; line-height: 1.32; }
  .promise-text::before,
  .promise-text::after { font-size: 32px; }
  .promise-sig { font-size: 11px; margin-top: 20px; }

  /* Testimonials */
  .testimonial { padding: 18px 16px; gap: 10px; }
  .testimonial-quote { font-size: 13.5px; line-height: 1.55; }
  .testimonial-stars { font-size: 12px; letter-spacing: 1px; }
  .testimonial-author { font-size: 12.5px; }
  .testimonial-author small { font-size: 11px; }

  /* Fit */
  .fit-col { padding: 20px 16px; }
  .fit-col h3 { font-size: 14.5px; margin-bottom: 14px; }
  .fit-list { gap: 12px; }
  .fit-list li { font-size: 13.5px; padding-left: 24px; line-height: 1.5; }

  /* Offer */
  .offer-wrap { padding: 18px 14px; }
  .offer-row { grid-template-columns: 24px 1fr; column-gap: 10px; padding: 12px 0; }
  .offer-check { width: 22px; height: 22px; }
  .offer-check svg { width: 13px; height: 13px; }
  .offer-content h4 { font-size: 13.5px; line-height: 1.35; margin-bottom: 4px; }
  .offer-content p { font-size: 12.5px; line-height: 1.5; }

  /* Guarantee */
  .guarantee-card { padding: 24px 16px; }
  .guarantee-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .guarantee-card h3 { font-size: 16.5px; line-height: 1.28; margin-bottom: 12px; }
  .guarantee-card p { font-size: 13.5px; line-height: 1.55; }

  /* Price */
  .price-card { padding: 24px 16px 22px; }
  .price-label { font-size: 11px; letter-spacing: 1.4px; }
  .price-tag { font-size: 11.5px; margin-bottom: 14px; }
  .price-new { font-size: 38px; letter-spacing: -1.2px; }
  .price-new sup { font-size: 15px; vertical-align: 14px; }
  .price-vat { font-size: 11px; margin-bottom: 16px; }
  .price-features li { font-size: 12.5px; line-height: 1.45; padding-left: 22px; }
  .price-features li::before { width: 14px; height: 14px; }
  .price-cta { padding: 14px 16px; font-size: 13px; letter-spacing: 0.3px; }
  .price-badge { font-size: 9.5px; padding: 4px 10px; top: -11px; }

  /* FAQ */
  .faq-item summary {
    padding: 14px 16px;
    font-size: 13.5px;
    gap: 10px;
    line-height: 1.4;
  }
  .faq-toggle { width: 22px; height: 22px; font-size: 16px; flex-shrink: 0; }
  .faq-body { padding: 0 16px 16px; font-size: 13px; line-height: 1.6; }

  /* Bio */
  .bio-photo { max-width: 220px; }
  .bio-content h2 { font-size: 20px; letter-spacing: -0.2px; }
  .bio-content p { font-size: 14px; line-height: 1.6; }
  .bio-signature { font-size: 18px; margin: 14px 0 18px; }

  /* Footer */
  .footer { padding: 22px 0; font-size: 11.5px; }
}

/* ============================================================
   RESPONSIVE — COMPACT PHONES (≤360px)
   Galaxy S compact, older Androids
   ============================================================ */
@media (max-width: 360px) {
  .container { padding: 0 14px; }

  /* Brand bar */
  .brandbar img { height: 32px; }

  /* Hero */
  .hero { padding: 12px 0 32px; }
  .hero h1 { font-size: 22px; letter-spacing: -0.1px; }
  .hero-sub { font-size: 13.5px; }
  .hero-bullets li { font-size: 12.5px; }
  .hero-image { max-width: 100%; }

  /* Authority stats — più compatte */
  .stat-num { font-size: 24px; }
  .stat-lbl { font-size: 9px; }

  /* Section titles */
  .section-title { font-size: 20.5px; }

  /* Phase output box */
  .phase-output { font-size: 11.5px; padding: 9px 11px; }

  /* Modules titles */
  .offer-content h4 { font-size: 13px; }
  .offer-content p { font-size: 12px; }

  /* Price */
  .price-new { font-size: 36px; }
  .price-new sup { font-size: 14px; vertical-align: 13px; }
  .price-vat { font-size: 10.5px; letter-spacing: 0; }
  .price-features li { font-size: 12px; }
  .price-cta { padding: 13px 14px; font-size: 12.5px; }
}

/* ============================================================
   RESPONSIVE — ULTRA SMALL (≤340px)
   iPhone 5/SE 1st gen (320px)
   ============================================================ */
@media (max-width: 340px) {
  .container { padding: 0 12px; }

  /* Hero */
  .hero h1 { font-size: 20.5px; line-height: 1.2; }
  .hero-sub { font-size: 13px; }
  .hero-image { max-width: 100%; }
  .hero-badge { padding: 5px 10px; gap: 6px; }
  .hero-badge .num { font-size: 14.5px; }
  .hero-badge .lbl { font-size: 8.5px; }

  /* Stats */
  .authority-grid { gap: 4px; }
  .stat { padding: 0 1px; }
  .stat-num { font-size: 21px; letter-spacing: -0.4px; }
  .stat-lbl { font-size: 8.5px; line-height: 1.2; }

  /* Section commons */
  .section-title { font-size: 19px; }
  .section-lead { font-size: 13px; }

  /* Buttons */
  .btn { padding: 13px 14px; font-size: 13px; }

  /* Price */
  .price-new { font-size: 32px; }
  .price-new sup { font-size: 13px; vertical-align: 11px; }
}
