/* ============================================================
   COMPONENTS
   Photo Bands · Buttons · Hero elements · Cards · Timeline ·
   Pricing · AI · Value · Benefits · Community · Referral · CTA
============================================================ */

/* ── Photo Bands ─────────────────────────────────────────── */
.photo-band {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Band 1 — Wind turbines · orange + dark */
.pb-1 {
  background-image: url('../img/band-turbine.jpg');
  background-color: #1A0800;
}
.pb-1::before { background: linear-gradient(135deg, rgba(255,107,0,.78) 0%, rgba(20,5,0,.88) 100%); }

/* Band 2 — Solar panels aerial · deep navy + gold */
.pb-2 {
  background-image: url('../img/band-solar.jpg');
  background-color: #050F1A;
  background-position: center 40%;
}
.pb-2::before { background: linear-gradient(135deg, rgba(10,20,40,.82) 0%, rgba(255,107,0,.55) 100%); }

/* Band 3 — City lights at night · dark blue + orange glow */
.pb-3 {
  background-image: url('../img/band-city.jpg');
  background-color: #060810;
  background-position: center 60%;
}
.pb-3::before { background: linear-gradient(135deg, rgba(5,8,20,.85) 0%, rgba(255,107,0,.45) 100%); }

/* Band 4 — People community · strong orange */
.pb-4 {
  background-image: url('../img/band-people.jpg');
  background-color: #1F0500;
}
.pb-4::before { background: linear-gradient(135deg, rgba(255,107,0,.82) 0%, rgba(180,40,0,.88) 100%); }

/* Shared inner */
.pb-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 5rem 2rem;
}
.pb-quote {
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.pb-quote em {
  font-style: normal;
  background: linear-gradient(135deg, #FFD700, #FFAA00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pb-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.pb-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--orange);
  padding: .88rem 2.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 6px 28px rgba(0,0,0,.25);
}
.pb-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-prim {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad); color: #fff;
  padding: .95rem 2.4rem; border-radius: 50px;
  font-weight: 700; font-size: .97rem; text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-orange);
}
.btn-prim:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,107,0,.55); }

.btn-sec {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--text);
  padding: .95rem 2.4rem; border-radius: 50px;
  font-weight: 600; font-size: .97rem; text-decoration: none;
  border: 1.5px solid var(--border); transition: all .3s;
}
.btn-sec:hover { border-color: var(--orange); background: var(--orange-pale); color: var(--orange); }

/* ── Hero ────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange-pale); border: 1px solid rgba(255,107,0,.22);
  border-radius: 50px; padding: .42rem 1.2rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 2rem;
  animation: heroBadge 1s ease .3s both;
}

.hero-h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.7rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 1.4rem;
  color: var(--text);
  animation: aFadeUp 1s ease .5s both;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  color: var(--text-muted); font-weight: 400; line-height: 1.75;
  max-width: 580px; margin: 0 auto 2.5rem;
  animation: aFadeUp 1s ease .7s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: aFadeUp 1s ease .9s both;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: aFadeUp 1s ease 1.1s both;
}
.hero-scroll span { font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── Stat cards ──────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.stat-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card.accent {
  background: linear-gradient(135deg, var(--orange-pale), rgba(255,179,0,.1));
  border-color: var(--border-accent);
}
.stat-num {
  font-size: 2rem; font-weight: 900; display: block; line-height: 1; margin-bottom: .45rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: .78rem; color: var(--text-muted); font-weight: 500; line-height: 1.4; }

/* Section text helpers */
.sec-text h2  { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.4rem; color: var(--text); }
.sec-text p   { color: var(--text-2); font-size: 1.03rem; line-height: 1.8; margin-bottom: .9rem; }

/* ── Chaos tags (confusion) ──────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin: 2.8rem 0; }
.tag {
  padding: .55rem 1.3rem; border-radius: 50px; font-size: .83rem; font-weight: 600; border: 1px solid;
  animation: tPulse 3.5s ease infinite;
}
.tag:nth-child(odd)  { border-color: var(--border-accent); color: var(--orange); background: var(--orange-pale); }
.tag:nth-child(even) { border-color: var(--border); color: var(--text-2); background: var(--bg-alt); animation-delay: .5s; }

.conf-center { text-align: center; max-width: 820px; margin: 0 auto; }
.conf-center h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.2rem; color: var(--text); }
.conf-end { font-size: 1.18rem; color: var(--text-muted); font-style: italic; }
.conf-end strong { color: var(--text); }

/* ── Money/consequences ──────────────────────────────────── */
.money-vis { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.money-big {
  font-size: 4.8rem; font-weight: 900; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.money-lbl { font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

.bars { display: flex; flex-direction: column; gap: .8rem; width: 100%; max-width: 300px; }
.bar-row { display: flex; align-items: center; gap: .9rem; }
.bar-key { width: 55px; font-size: .73rem; color: var(--text-muted); }
.bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--grad); border-radius: 3px; width: 0; transition: width 2.2s cubic-bezier(.4,0,.2,1); }
.bar-val { font-size: .78rem; font-weight: 700; color: var(--orange); width: 55px; text-align: right; }

.conseq-text h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.4rem; color: var(--text); }
.conseq-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.conseq-list li { display: flex; gap: .9rem; align-items: flex-start; }
.conseq-list li::before { content: '✕'; color: var(--orange); font-weight: 900; font-size: 1.15rem; line-height: 1.4; flex-shrink: 0; }
.conseq-list li p { color: var(--text-2); font-size: .97rem; line-height: 1.65; }

/* Breaking point inner */
.break-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.break-inner h2 { font-size: clamp(2.2rem,5vw,4.2rem); font-weight: 900; line-height: 1.12; margin-bottom: 1.4rem; }

/* ── Solution ────────────────────────────────────────────── */
.sol-head { text-align: center; margin-bottom: 4.5rem; }
.sol-head h2 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 900; line-height: 1.12; margin-bottom: 1rem; color: var(--text); }
.sol-head p  { font-size: 1.15rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }

.sol-banner {
  display: flex; align-items: flex-start; gap: 1.2rem;
  background: var(--orange-pale); border: 1px solid var(--border-accent); border-radius: 16px;
  padding: 1.6rem 2.2rem; max-width: 820px; margin: 0 auto 4rem;
  font-size: 1.03rem; color: var(--text-2); line-height: 1.75; box-shadow: var(--shadow-sm);
}
.sol-banner strong { color: var(--orange); }

/* Pricing */
.pricing-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3.5rem; }

.p-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 22px;
  padding: 2.4rem 1.8rem; text-align: center; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .4s, border-color .4s, box-shadow .4s;
}
.p-card:hover { transform: translateY(-8px); border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.p-card.feat {
  border-color: var(--orange); transform: scale(1.03);
  background: linear-gradient(135deg, var(--orange-pale), rgba(255,179,0,.07));
  box-shadow: 0 12px 45px rgba(255,107,0,.15);
}
.p-card.feat:hover { transform: scale(1.03) translateY(-8px); }

.p-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: .67rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; padding: .28rem 1rem; border-radius: 50px; white-space: nowrap;
}
.p-icon { font-size: 2.4rem; margin-bottom: .9rem; display: block; }
.p-type { font-size: .76rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: .4rem; }
.p-name { font-size: 1.22rem; font-weight: 800; margin-bottom: 1.4rem; color: var(--text); }
.p-price {
  font-size: 3.4rem; font-weight: 900; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .2rem;
}
.p-price sup { font-size: 1.4rem; vertical-align: super; }
.p-note { font-size: .77rem; color: var(--text-muted); margin-bottom: 1.8rem; line-height: 1.5; }
.p-feats { list-style: none; text-align: left; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.8rem; }
.p-feats li { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--text-2); }
.p-feats li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; }

.p-btn {
  display: block; width: 100%; padding: .82rem; border-radius: 50px;
  font-weight: 700; font-size: .88rem; text-decoration: none; text-align: center; transition: all .3s;
}
.p-btn-ol { border: 1.5px solid var(--border-accent); color: var(--orange); background: transparent; }
.p-btn-ol:hover { background: var(--orange-pale); border-color: var(--orange); }
.p-btn-fi { background: var(--grad); color: #fff; border: none; box-shadow: var(--shadow-orange); }
.p-btn-fi:hover { box-shadow: 0 10px 34px rgba(255,107,0,.55); transform: translateY(-2px); }

/* Cashback strip */
.cb-strip {
  background: var(--orange-pale); border: 1px solid var(--border-accent); border-radius: 18px;
  padding: 2.2rem; display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; box-shadow: var(--shadow-sm);
}
.cb-item { display: flex; align-items: center; gap: 1rem; }
.cb-ico  { font-size: 1.9rem; }
.cb-txt h4 { font-size: 1rem; font-weight: 800; color: var(--orange); }
.cb-txt p  { font-size: .82rem; color: var(--text-muted); }
.cb-div    { width: 1px; height: 44px; background: var(--border); }

/* ── Timeline ────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; max-width: 780px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 2.15rem; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255,107,0,.1));
}
.t-item { display: flex; gap: 2rem; position: relative; padding-bottom: 3rem; }
.t-item:last-child { padding-bottom: 0; }
.t-num {
  width: 4.3rem; height: 4.3rem; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900; color: #fff; flex-shrink: 0;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 6px rgba(255,107,0,.1), 0 0 0 12px rgba(255,107,0,.04);
}
.t-body { padding-top: .7rem; }
.t-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .45rem; color: var(--text); }
.t-body p  { color: var(--text-2); font-size: .94rem; line-height: 1.7; }

/* ── AI section ──────────────────────────────────────────── */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ai-vis  { display: flex; align-items: center; justify-content: center; }
.ai-orbit {
  width: 270px; height: 270px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.08) 0%, transparent 70%);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: aiGlow 4s ease infinite;
}
.ai-orbit::before, .ai-orbit::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,107,0,.1); animation: aiRing 4s ease infinite;
}
.ai-orbit::before { inset: -28px; animation-delay: .6s; }
.ai-orbit::after  { inset: -56px; animation-delay: 1.2s; }
.ai-core { text-align: center; }
.ai-core .ai-em  { font-size: 3.5rem; display: block; margin-bottom: .4rem; }
.ai-core .ai-tag { font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }

.ai-body h2 { font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.4rem; color: var(--text); }
.ai-body p  { color: var(--text-2); font-size: .97rem; line-height: 1.8; margin-bottom: 2rem; }
.ai-feats  { display: flex; flex-direction: column; gap: .9rem; }
.ai-feat {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 11px;
  padding: .95rem 1.2rem; box-shadow: var(--shadow-xs);
  transition: border-color .3s, box-shadow .3s;
}
.ai-feat:hover { border-color: var(--border-accent); box-shadow: var(--shadow-sm); }
.ai-feat .fi { font-size: 1.45rem; flex-shrink: 0; }
.ai-feat .ft { font-size: .88rem; color: var(--text-2); font-weight: 500; }

/* ── Value equation ──────────────────────────────────────── */
.eq-row { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; margin: 3rem 0; }
.v-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem 2.5rem; text-align: center; min-width: 160px;
  box-shadow: var(--shadow-sm);
}
.v-box .va { font-size: 2.5rem; font-weight: 900; line-height: 1; display: block; margin-bottom: .45rem; color: var(--text-2); }
.v-box .vl { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.v-box.cb  { border-color: var(--orange); background: var(--orange-pale); box-shadow: 0 8px 30px rgba(255,107,0,.12); }
.v-box.cb .va { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.v-op { font-size: 3rem; font-weight: 900; color: var(--orange); }

.mami-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  background: linear-gradient(135deg, rgba(255,215,0,.1), rgba(255,107,0,.1));
  border: 1px solid rgba(212,149,10,.3); border-radius: 50px;
  padding: .8rem 1.6rem; margin-top: 2.2rem;
}
.mami-badge .mi { font-size: 1.5rem; }
.mami-badge .mt { font-size: .88rem; color: var(--gold); font-weight: 600; }

/* ── Benefits grid ───────────────────────────────────────── */
.ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ben-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px;
  padding: 2rem; box-shadow: var(--shadow-xs);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.ben-card:hover { border-color: var(--border-accent); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ben-ico   { font-size: 2.2rem; margin-bottom: .9rem; display: block; }
.ben-title { font-size: 1.08rem; font-weight: 700; margin-bottom: .65rem; color: var(--text); }
.ben-desc  { font-size: .88rem; color: var(--text-muted); line-height: 1.72; }

/* ── Community ───────────────────────────────────────────── */
.comm-text h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.4rem; color: var(--text); }
.comm-text > p { color: var(--text-2); font-size: 1.03rem; line-height: 1.8; margin-bottom: 2rem; }
.comm-feats { display: flex; flex-direction: column; gap: 1rem; }
.c-feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.15rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-xs); transition: border-color .3s, box-shadow .3s;
}
.c-feat:hover { border-color: var(--border-accent); box-shadow: var(--shadow-sm); }
.c-feat .ci { font-size: 1.45rem; flex-shrink: 0; }
.c-feat h4  { font-size: .93rem; font-weight: 700; margin-bottom: .25rem; color: var(--text); }
.c-feat p   { font-size: .83rem; color: var(--text-muted); line-height: 1.55; }

.comm-vis { display: flex; align-items: center; justify-content: center; }
.rings    { position: relative; width: 290px; height: 290px; }
.ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--border-accent);
  top: 50%; left: 50%; transform: translate(-50%,-50%); animation: rPulse 3s ease infinite;
}
.ring1 { width: 70px;  height: 70px;  background: rgba(255,107,0,.1); }
.ring2 { width: 135px; height: 135px; animation-delay: .5s; }
.ring3 { width: 210px; height: 210px; animation-delay: 1s;  }
.ring4 { width: 285px; height: 285px; animation-delay: 1.5s; }
.ring-mid { position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 2rem; z-index:5; }

/* ── Referral / opportunity ──────────────────────────────── */
.opp-center { text-align: center; max-width: 820px; margin: 0 auto; }
.opp-center h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.4rem; color: var(--text); }
.opp-center > p { color: var(--text-2); font-size: 1.08rem; line-height: 1.8; margin-bottom: 3rem; }
.opp-note   { color: var(--text-muted); font-size: .93rem; }
.opp-note strong { color: var(--orange); }

.ref-visual { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ref-icon { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.ref-icon .ri {
  width: 46px; height: 46px;
  background: var(--orange-pale); border: 2px solid var(--border-accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.ref-icon span { font-size: .65rem; color: var(--text-muted); }
.ref-arr    { font-size: 1.4rem; color: var(--orange); }
.ref-result {
  background: var(--grad); border-radius: 14px; padding: 1.3rem 1.8rem;
  display: inline-flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-orange);
}
.ref-result .rri { font-size: 1.8rem; }
.ref-result h4   { font-size: .97rem; font-weight: 800; color: #fff; }
.ref-result p    { font-size: .78rem; color: rgba(255,255,255,.8); }

/* ── Vision / terzo settore ──────────────────────────────── */
.vis-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.vis-inner h2    { font-size: clamp(2rem,4vw,3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.4rem; color: var(--text); }
.vis-inner > p   { font-size: 1.08rem; color: var(--text-2); line-height: 1.8; margin-bottom: 2rem; }

.ts-badge {
  display: inline-flex; align-items: center; gap: .9rem;
  background: var(--orange-pale); border: 1px solid var(--border-accent); border-radius: 14px;
  padding: 1.2rem 2rem; margin: 1.4rem 0; font-size: .97rem; font-weight: 600; color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.ts-badge strong { display: block; margin-bottom: .1rem; color: var(--text); }
.ts-badge small  { font-size: .82rem; color: var(--text-muted); font-weight: 400; }

/* ── CTA section components ──────────────────────────────── */
.cta-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2.5rem,5.5vw,4.5rem); font-weight: 900; line-height: 1.08; margin-bottom: 1.4rem; color: #fff; }
.cta-inner p  { font-size: 1.18rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 3rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.cta-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--grad); color: #fff;
  padding: 1.25rem 3.5rem; border-radius: 50px;
  font-weight: 800; font-size: 1.1rem; text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 10px 38px rgba(255,107,0,.5); letter-spacing: .4px; margin-bottom: 1.2rem;
}
.cta-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 55px rgba(255,107,0,.68); }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: .45rem; font-size: .82rem; color: rgba(255,255,255,.45); }

.cta-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 4.5rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.07); }
.cs-item { text-align: center; }
.cs-num  { font-size: 2rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cs-lbl  { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 2px; margin-top: .25rem; }
.cs-div  { width: 1px; background: rgba(255,255,255,.07); }
