/* ── CONSULENZA LANDING — stili specifici ── */

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 5%;
  align-items: start;
  padding: 5.5rem 5% 5rem;
  max-width: 1260px; margin: 0 auto;
}

.hero-eyebrow { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.8rem; }
.eyebrow-line { width: 28px; height: 3px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.eyebrow-text { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -.03em; color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--orange); }

.hero-sub {
  font-size: 1.06rem; line-height: 1.75;
  color: var(--slate); max-width: 500px;
  margin-bottom: 2rem; font-weight: 400;
}
.hero-sub strong { color: var(--ink-soft); font-weight: 600; }

/* trust pills */
.trust-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 0; }
.pill {
  display: flex; align-items: center; gap: .38rem;
  font-size: .77rem; font-weight: 500; color: var(--ink-soft);
  background: var(--white); border: 1.5px solid var(--border-md);
  border-radius: 999px; padding: .38em .9em;
  transition: border-color .18s, background .18s;
}
.pill:hover { border-color: var(--orange); background: var(--orange-lt); }
.pill-icon { font-size: .9rem; }

/* ── ROI BLOCK ── */
.roi-block {
  background: var(--ink);
  border-radius: calc(var(--r)*1.3);
  padding: 1.6rem 1.8rem;
  margin: 2.4rem 0;
  position: relative; overflow: hidden;
}
.roi-block::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(232,97,42,.35) 0%, transparent 55%);
  pointer-events: none;
}
.roi-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: rgba(250,250,247,.55);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
  letter-spacing: -.01em;
}
.roi-items { display: flex; flex-direction: column; gap: .7rem; position: relative; z-index: 1; }
.roi-item { display: flex; align-items: flex-start; gap: .8rem; }
.roi-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900;
  color: var(--orange); line-height: 1;
  flex-shrink: 0; min-width: 80px;
}
.roi-desc { font-size: .82rem; line-height: 1.55; color: rgba(250,250,247,.6); padding-top: .1rem; }
.roi-desc strong { color: rgba(250,250,247,.9); font-weight: 600; }
.roi-divider { height: 1px; background: rgba(255,255,255,.07); margin: .2rem 0; }

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border: 2px solid var(--border-md);
  border-radius: calc(var(--r)*1.6);
  padding: 2.1rem 1.9rem;
  position: sticky; top: 90px;
  box-shadow: 0 2px 4px rgba(232,97,42,.04), 0 8px 24px rgba(232,97,42,.08), 0 24px 64px rgba(0,0,0,.07);
}

.form-card-header { margin-bottom: 1.4rem; }
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--ink); margin: .5rem 0 .3rem; line-height: 1.2;
}
.form-card-sub { font-size: .81rem; color: var(--muted); line-height: 1.55; }

/* spots bar */
.spots-bar {
  display: flex; align-items: center; gap: .6rem;
  background: var(--orange-lt);
  border: 1.5px solid var(--border-str);
  border-radius: 8px; padding: .55rem .85rem;
  margin-bottom: 1.4rem;
}
.spots-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
.spots-text { font-size: .77rem; font-weight: 600; color: var(--orange-deep); }
.spots-count { font-weight: 800; }

/* form fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .78rem; }
.field { display: flex; flex-direction: column; gap: .28rem; }
.field.full { grid-column: 1 / -1; }

label { font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--slate); }

input, textarea, select {
  background: var(--orange-lt);
  border: 1.5px solid rgba(232,97,42,.12);
  border-radius: 8px; color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .875rem; padding: .7rem .9rem;
  outline: none; width: 100%;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
input::placeholder, textarea::placeholder { color: rgba(26,26,24,.25); }
input:focus, textarea:focus, select:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3.5px rgba(232,97,42,.12);
}
textarea { resize: vertical; min-height: 100px; }
select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.2rem;
}
select option { background: #fff; color: var(--ink); }

/* privacy checkbox */
.checkbox-field {
  display: flex; align-items: flex-start; gap: .6rem;
  grid-column: 1 / -1; margin-top: .2rem;
}
.checkbox-field input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: .15rem; padding: 0;
  accent-color: var(--orange);
  background: var(--orange-lt);
  border-radius: 4px;
}
.checkbox-label { font-size: .75rem; line-height: 1.5; color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.checkbox-label a { color: var(--orange); text-decoration: none; }
.checkbox-label a:hover { text-decoration: underline; }

/* submit */
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--orange); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700;
  border: none; border-radius: 10px; padding: .95rem 1.4rem;
  cursor: pointer; margin-top: 1.2rem;
  transition: background .17s, transform .12s, box-shadow .17s;
  box-shadow: 0 4px 16px rgba(232,97,42,.28);
  position: relative; overflow: hidden;
}
.btn-submit::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.12) 0%,transparent 60%); pointer-events:none; }
.btn-submit:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,97,42,.38); }
.btn-submit:active { transform: translateY(0); }

.form-note { font-size: .71rem; color: var(--muted); text-align: center; margin-top: .9rem; line-height: 1.5; }

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--ink); padding: 3.5rem 5%;
  position: relative; overflow: hidden;
}
.proof-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(232,97,42,.2) 0%, transparent 55%), radial-gradient(ellipse at 90% 50%, rgba(232,97,42,.12) 0%, transparent 50%);
  pointer-events: none;
}
.proof-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.proof-item { text-align: center; }
.proof-number { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900; color: var(--white); letter-spacing: -.04em; display: block; line-height: 1; margin-bottom: .35rem; }
.proof-number span { color: var(--orange); font-size: 2rem; }
.proof-label { font-size: .8rem; color: rgba(250,250,247,.45); font-weight: 500; }

/* ── ABOUT ── */
.about-strip { background: var(--warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5.5rem 5%; }
.about-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7%; align-items: center; }
.about-photo-wrap {
  border-radius: calc(var(--r)*1.6); overflow: hidden; aspect-ratio: 4/3;
  background: var(--orange-lt); border: 2px solid var(--border-str);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: var(--muted); text-align: center; padding: 1.2rem;
  box-shadow: 0 16px 48px rgba(232,97,42,.1), 0 4px 12px rgba(0,0,0,.06);
}
.about-photo { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.about-photo-placeholder strong { display:block; font-size:1rem; color:var(--orange); margin-bottom:.4rem; }
.about-photo-placeholder code { display:block; margin-top:.6rem; font-size:.68rem; background:var(--white); border-radius:6px; padding:.3em .6em; color:var(--slate); font-family:monospace; }
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900; line-height: 1.1; color: var(--ink);
  margin: .65rem 0 1.1rem; letter-spacing: -.025em;
}
.about-title em { font-style: italic; color: var(--orange); }
.about-body { font-size: .9rem; line-height: 1.78; color: var(--slate); }

/* ── HOW IT WORKS ── */
.how-section { padding: 6rem 5%; max-width: 1260px; margin: 0 auto; }
.section-head { margin-bottom: 3rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900; line-height: 1.1; color: var(--ink);
  margin-top: .65rem; letter-spacing: -.025em;
}
.section-sub { font-size: .94rem; color: var(--slate); margin-top: .8rem; max-width: 520px; line-height: 1.68; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: calc(25% - 0.825rem - 20px);
  height: 1px;
  background: var(--border-md);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,97,42,.3);
  position: relative;
  z-index: 2;
}
.step-title { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.step-desc { font-size: .82rem; line-height: 1.62; color: var(--slate); }

/* ── WHAT ── */
.what-section { padding: 6rem 5%; background: var(--warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.what-inner { max-width: 1260px; margin: 0 auto; }
.what-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.what-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 1.65rem;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .2s;
  position: relative; overflow: hidden;
}
.what-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.what-card:hover { box-shadow: 0 12px 36px rgba(232,97,42,.1); transform: translateY(-4px); border-color: var(--border-md); }
.what-card:hover::before { transform: scaleX(1); }
.what-icon { font-size: 1.55rem; margin-bottom: .85rem; display: block; }
.what-title { font-family: 'Playfair Display', serif; font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.what-desc { font-size: .83rem; line-height: 1.65; color: var(--slate); }

/* ── TESTIMONIALS ── */
.testi-section { padding: 5.5rem 5%; }
.testi-inner { max-width: 1260px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.6rem; }
.testi-card {
  background: var(--white); border: 1.5px solid var(--border-md);
  border-radius: var(--r); padding: 1.6rem;
  position: relative; overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.testi-card:hover { box-shadow: 0 8px 28px rgba(232,97,42,.1); transform: translateY(-2px); }
.testi-card::before { content:'\201C'; font-family:'Playfair Display',serif; font-size:6rem; line-height:1; color:var(--orange); opacity:.1; position:absolute; top:.2rem; left:.9rem; pointer-events:none; }
.stars { color: var(--orange); font-size: .86rem; margin-bottom: .7rem; letter-spacing: .06em; }
.testi-quote { font-size: .875rem; line-height: 1.7; color: var(--slate); margin-bottom: 1rem; font-style: italic; }
.testi-author { font-size: .75rem; font-weight: 700; color: var(--orange-deep); }

/* ── FAQ ── */
.faq-section { padding: 5.5rem 5%; max-width: 860px; margin: 0 auto; }
.faq-list { margin-top: 2.4rem; display: flex; flex-direction: column; gap: .6rem; }
.faq-item { border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--border-str); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.05rem 1.2rem;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600; color: var(--ink);
  gap: 1rem; transition: background .15s;
}
.faq-q:hover { background: var(--orange-lt); }
.faq-item.open .faq-q { background: var(--orange-lt); color: var(--orange-deep); }
.faq-arrow { flex-shrink:0; width:22px; height:22px; background:var(--orange-lt); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; color:var(--orange); transition:transform .25s var(--ease), background .15s; }
.faq-item.open .faq-arrow { transform:rotate(180deg); background:var(--orange); color:var(--white); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s var(--ease), padding .3s; font-size:.86rem; line-height:1.72; color:var(--slate); padding:0 1.2rem; }
.faq-item.open .faq-a { max-height:300px; padding:0 1.2rem 1.1rem; }

/* ── BOTTOM CTA ── */
.bottom-cta { background: var(--ink); padding: 6rem 5%; text-align: center; position: relative; overflow: hidden; }
.bottom-cta::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% -10%,rgba(232,97,42,.32) 0%,transparent 65%); pointer-events:none; }
.bottom-cta::after { content:''; position:absolute; width:600px; height:600px; border-radius:50%; border:1px solid rgba(232,97,42,.07); top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
.bottom-cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.bottom-cta-title { font-family:'Playfair Display',serif; font-size:clamp(2.2rem,4.2vw,3.3rem); font-weight:900; line-height:1.08; color:var(--white); margin-bottom:1.1rem; letter-spacing:-.03em; }
.bottom-cta-title em { font-style:italic; color:var(--orange); }
.bottom-cta-sub { font-size:.96rem; color:rgba(250,250,247,.55); margin-bottom:2.4rem; line-height:1.65; }
.btn-cta-large {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  padding: 1rem 2.4rem; border-radius: 999px;
  transition: background .17s, transform .15s, box-shadow .17s;
  box-shadow: 0 6px 28px rgba(232,97,42,.4);
  position: relative; overflow: hidden;
}
.btn-cta-large::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.14) 0%,transparent 55%); pointer-events:none; }
.btn-cta-large:hover { background:var(--orange-deep); transform:translateY(-3px); box-shadow:0 12px 40px rgba(232,97,42,.5); }
.cta-note { margin-top: 1.2rem; font-size: .74rem; color: rgba(250,250,247,.3); }

/* ── RESPONSIVE ── */
@media (max-width:980px) {
  .hero { grid-template-columns:1fr; padding:3.5rem 5%; }
  .form-card { position:static; }
  .about-inner { grid-template-columns:1fr; }
  .about-photo-wrap { max-height:300px; }
  .steps { grid-template-columns:1fr 1fr; }
  .steps::before { display:none; }
}
@media (max-width:720px) {
  .what-grid { grid-template-columns:1fr 1fr; }
  .proof-inner { grid-template-columns:1fr; gap:1.6rem; }
  .testi-grid { grid-template-columns:1fr; }
}
@media (max-width:540px) {
  .form-grid { grid-template-columns:1fr; }
  .what-grid { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr; }
  .hero-title { font-size:2.1rem; }
}

/* ── FREE CALL LINK ── */
.free-call-link {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: .6rem;
  line-height: 1.5;
}
.free-call-link a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.free-call-link a:hover { text-decoration: underline; }

/* ── PRICING BLOCK ── */
.pricing-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: var(--white);
  border: 2px solid var(--border-str);
  border-radius: calc(var(--r)*1.4);
  padding: 1.8rem;
  margin: 2rem 0 3rem;
  box-shadow: 0 4px 24px rgba(232,97,42,.08);
}
.pricing-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: .4rem;
}
.pricing-original {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--muted);
  text-decoration: line-through;
}
.pricing-current {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.pricing-detail {
  font-size: .82rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: .6rem;
}
.pricing-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--orange-lt);
  border: 1.5px solid var(--border-str);
  border-radius: 999px;
  padding: .3em 1em;
}
.pricing-includes {
  border-left: 2px solid var(--border-md);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-includes-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .7rem;
}
.pricing-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pricing-includes ul li {
  font-size: .84rem;
  color: var(--slate);
  line-height: 1.4;
  padding-left: 1.2rem;
  position: relative;
}
.pricing-includes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

@media (max-width: 640px) {
  .pricing-block {
    grid-template-columns: 1fr;
  }
  .pricing-includes {
    border-left: none;
    border-top: 2px solid var(--border-md);
    padding-left: 0;
    padding-top: 1.2rem;
  }
}

/* -- MOBILE CTA STICKY -- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: rgba(250,250,247,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.07);
}
.mobile-cta-btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: .85rem 1.4rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(232,97,42,.3);
  transition: background .17s, transform .12s;
}
.mobile-cta-btn:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* -- VALUE BLOCK -- */
.value-block {
  background: var(--ink);
  border-radius: calc(var(--r)*1.3);
  padding: 1.6rem 1.8rem;
  margin: 2.4rem 0;
  position: relative;
  overflow: hidden;
}
.value-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%,
    rgba(232,97,42,.35) 0%, transparent 55%);
  pointer-events: none;
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(250,250,247,.55);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: -.01em;
}
.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  z-index: 1;
  margin-bottom: 1.4rem;
}
.value-list li {
  font-size: .84rem;
  line-height: 1.55;
  color: rgba(250,250,247,.75);
  padding-left: 1.1rem;
  position: relative;
}
.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.value-price {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.value-price-original {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(250,250,247,.3);
  text-decoration: line-through;
}
.value-price-current {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.value-price-note {
  font-size: .72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .04em;
  align-self: center;
}
