/* ================================
   RESET & TOKENS
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF5C1A;
  --orange-2: #FF7A3D;
  --orange-glow: rgba(255,92,26,0.35);
  --yellow: #FFD438;
  --black: #080808;
  --dark: #0F0F0F;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --dark-4: #272727;
  --white: #FFFFFF;
  --gray: #777;
  --gray-2: #aaa;
  --green: #22C55E;

  --ff-head: 'Syne', sans-serif;
  --ff-body: 'Nunito', sans-serif;

  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --trans: 0.28s cubic-bezier(.4,0,.2,1);
  --sh-fire: 0 0 40px rgba(255,92,26,0.4), 0 4px 20px rgba(255,92,26,0.3);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--black); color: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
strong { font-weight: 700; }
em { font-style: italic; color: var(--orange-2); }
s { opacity: 0.5; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ================================
   URGENCY BAR
================================ */
.urgency-bar {
  background: linear-gradient(90deg, #1a0800, #2d1100, #1a0800);
  border-bottom: 1px solid rgba(255,92,26,0.3);
  padding: 10px 0;
}
.urgency-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13px; font-weight: 700; color: var(--orange-2); letter-spacing: 0.3px;
  flex-wrap: wrap; text-align: center; padding: 0 16px;
}
.urgency-dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}
.urgency-timer { color: var(--yellow); font-size: 14px; }
.urgency-timer strong { font-size: 16px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ================================
   NAV
================================ */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; position: relative; z-index: 10;
}
.nav__logo { display: flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 600; }
.nav__logo strong { color: var(--orange-2); }

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: var(--ff-body);
  font-weight: 800; font-size: 15px; cursor: pointer; transition: var(--trans);
  border: none; white-space: nowrap; letter-spacing: 0.3px;
}
.btn--fire {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 50%, #CC3A00 100%);
  color: var(--black);
  box-shadow: var(--sh-fire);
  animation: fire-pulse 2.5s ease-in-out infinite;
}
.btn--fire:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.08); }
.btn--fire:active { transform: scale(0.98); }
@keyframes fire-pulse {
  0%,100%{ box-shadow: 0 0 30px rgba(255,92,26,0.4), 0 4px 20px rgba(255,92,26,0.3); }
  50%{ box-shadow: 0 0 60px rgba(255,92,26,0.7), 0 8px 35px rgba(255,92,26,0.5); }
}
.btn--nav {
  background: transparent; border: 1.5px solid rgba(255,92,26,0.5);
  color: var(--orange-2); padding: 10px 22px; font-size: 14px;
}
.btn--nav:hover { background: rgba(255,92,26,0.1); border-color: var(--orange); }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--xxl { padding: 22px 48px; font-size: 18px; width: 100%; justify-content: center; border-radius: var(--r-lg); }

/* ================================
   HERO
================================ */
.hero {
  position: relative; overflow: hidden; background: var(--black);
  display: flex; flex-direction: column; min-height: 100vh;
}
.hero__glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.hero__glow--1 {
  width: 600px; height: 600px; top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(255,92,26,0.12), transparent 70%);
}
.hero__glow--2 {
  width: 500px; height: 500px; top: 100px; right: -100px;
  background: radial-gradient(circle, rgba(255,212,56,0.07), transparent 70%);
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: fly-up linear infinite;
}
@keyframes fly-up {
  0%{ transform: translateY(100vh); opacity: 0; }
  10%{ opacity: 0.7; }
  90%{ opacity: 0.2; }
  100%{ transform: translateY(-20px); opacity: 0; }
}

.hero__content {
  position: relative; z-index: 2; padding-top: 50px; padding-bottom: 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,92,26,0.1); border: 1px solid rgba(255,92,26,0.3);
  color: var(--orange-2); padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; margin-bottom: 28px; letter-spacing: 0.3px;
}
.badge-pulse {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.hero__title {
  font-family: var(--ff-head); font-size: clamp(38px, 6vw, 72px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 22px; max-width: 800px;
}
.highlight { color: var(--orange); }
.stroke-text {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  display: inline-block;
}

.hero__sub {
  font-size: 18px; color: var(--gray-2); max-width: 520px;
  margin-bottom: 38px; font-weight: 400; line-height: 1.7;
}
.hero__sub strong { color: var(--white); }

.hero__cta-group { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 28px; }

.hero__price-pill {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 20px; border-radius: 50px; font-size: 14px;
}
.old-price { color: var(--gray); font-weight: 600; }
.divider-x { color: var(--orange); }
.new-price { color: var(--yellow); font-weight: 800; font-size: 18px; }
.access-tag { background: rgba(34,197,94,0.15); color: var(--green); border-radius: 50px; padding: 2px 10px; font-size: 12px; font-weight: 700; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  font-size: 13px; color: var(--gray-2); margin-bottom: 50px; font-weight: 600;
}

/* ================================
   PHONE MOCKUP
================================ */
.phone-wrap {
  position: relative; display: flex; justify-content: center;
  animation: phone-float 5s ease-in-out infinite;
}
@keyframes phone-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.phone-glow-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,26,0.15), transparent 65%);
  animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.15)} }

.phone {
  width: 220px; background: var(--dark-2); border-radius: 36px;
  border: 2px solid rgba(255,92,26,0.25); position: relative; z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
.phone__notch {
  width: 80px; height: 22px; background: var(--black);
  border-radius: 0 0 14px 14px; margin: 0 auto;
}
.phone__screen { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.phone__header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700; color: var(--gray-2);
}
.ph-live { color: var(--orange); font-size: 10px; letter-spacing: 1px; }
.metric-label { font-size: 10px; color: var(--gray); margin-bottom: 4px; }
.metric-value { font-family: var(--ff-head); font-size: 24px; font-weight: 800; color: var(--green); }

.phone__chart {
  display: flex; align-items: flex-end; gap: 5px; height: 70px;
  padding: 6px; background: rgba(255,255,255,0.03); border-radius: var(--r);
}
.bar {
  flex: 1; height: var(--h); background: rgba(255,92,26,0.4);
  border-radius: 4px 4px 0 0; transition: height .5s ease;
}
.bar--hi { background: var(--orange); box-shadow: 0 0 10px var(--orange-glow); }

.phone__notifs { display: flex; flex-direction: column; gap: 6px; padding-bottom: 8px; }
.pnotif {
  font-size: 11px; font-weight: 700; padding: 7px 10px; border-radius: 8px;
}
.pnotif--green { background: rgba(34,197,94,0.15); color: var(--green); }
.pnotif--blue { background: rgba(59,130,246,0.15); color: #60a5fa; }

.float-badge {
  position: absolute; background: var(--dark-3); border: 1px solid rgba(255,92,26,0.25);
  border-radius: 50px; padding: 8px 14px; font-size: 12px; font-weight: 700;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.fb--1 { top: 10%; left: -30px; animation: badge-bob 4s ease-in-out infinite; }
.fb--2 { top: 45%; right: -20px; animation: badge-bob 4s ease-in-out infinite 1.3s; }
.fb--3 { bottom: 10%; left: -20px; animation: badge-bob 4s ease-in-out infinite 2.6s; }
@keyframes badge-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ================================
   STATS ROW
================================ */
.stats-row {
  background: rgba(255,92,26,0.06); border-top: 1px solid rgba(255,92,26,0.15);
  margin-top: auto; padding: 24px 0;
}
.stats-row__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.ss { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 0 36px; }
.ss strong { font-family: var(--ff-head); font-size: 26px; color: var(--orange-2); }
.ss span { font-size: 12px; color: var(--gray); }
.ss-sep { width: 1px; height: 36px; background: rgba(255,92,26,0.2); }

/* ================================
   SECTIONS
================================ */
.section { padding: 90px 0; }

.sec-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.sec-title {
  font-family: var(--ff-head); font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; line-height: 1.15; margin-bottom: 40px; max-width: 580px;
}
.sec-sub { color: var(--gray-2); font-size: 16px; margin-top: -28px; margin-bottom: 48px; }

/* ================================
   FOR WHO
================================ */
.for-who { background: var(--dark); }
.forwho-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.fw-item {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg); padding: 28px 22px; text-align: center;
  transition: var(--trans); position: relative; overflow: hidden;
}
.fw-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: var(--trans);
}
.fw-item:hover { transform: translateY(-5px); border-color: rgba(255,92,26,0.2); }
.fw-item:hover::before { opacity: 1; }
.fw-icon { font-size: 36px; margin-bottom: 14px; }
.fw-item h3 { font-family: var(--ff-head); font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.fw-item p { font-size: 13px; color: var(--gray-2); line-height: 1.65; }

/* ================================
   LEARN STEPS
================================ */
.learn-sec { background: var(--black); }
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg); padding: 28px; transition: var(--trans);
}
.step:hover { border-color: rgba(255,92,26,0.2); transform: translateX(6px); }
.step-num {
  font-family: var(--ff-head); font-size: 42px; font-weight: 800;
  color: var(--orange); opacity: 0.4; line-height: 1; min-width: 52px;
  transition: var(--trans);
}
.step:hover .step-num { opacity: 1; }
.step-body h3 { font-family: var(--ff-head); font-size: 20px; margin-bottom: 8px; }
.step-body p { font-size: 15px; color: var(--gray-2); line-height: 1.7; }

/* ================================
   CTA MID
================================ */
.cta-mid {
  background: linear-gradient(135deg, #1a0800 0%, #0d0400 50%, #1a0800 100%);
  border-top: 1px solid rgba(255,92,26,0.2); border-bottom: 1px solid rgba(255,92,26,0.2);
  padding: 60px 0;
}
.cta-mid__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-mid__inner h2 { font-family: var(--ff-head); font-size: 28px; font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.cta-mid__inner p { color: var(--gray-2); font-size: 15px; }
.cta-mid__right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cta-mid__right p { font-size: 13px; color: var(--gray); }

/* ================================
   BONUS
================================ */
.bonus-sec { background: var(--dark); }
.bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 32px; }
.bonus-card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg); padding: 32px 24px;
  position: relative; overflow: hidden; text-align: center; transition: var(--trans);
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(255,92,26,0.2); }
.bonus-card--feat {
  background: linear-gradient(135deg, #1a0800, #0d0400);
  border-color: rgba(255,92,26,0.35);
  box-shadow: 0 0 30px rgba(255,92,26,0.08);
}
.bonus-ribbon {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--black); font-size: 10px; font-weight: 800;
  padding: 4px 14px; border-radius: 0 0 8px 8px; letter-spacing: 1px;
}
.bonus-ribbon--gold { background: var(--yellow); }
.bonus-icon { font-size: 40px; margin: 24px 0 14px; }
.bonus-card h3 { font-family: var(--ff-head); font-size: 18px; margin-bottom: 12px; line-height: 1.3; }
.bonus-card p { font-size: 13px; color: var(--gray-2); line-height: 1.7; margin-bottom: 16px; }
.bonus-val { font-size: 13px; color: var(--gray-2); }
.bonus-val strong { color: var(--green); font-size: 15px; }

.bonus-total {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: rgba(255,92,26,0.06); border: 1px dashed rgba(255,92,26,0.3);
  border-radius: var(--r-lg); padding: 20px 32px; font-size: 15px;
}
.bonus-total strong { color: var(--gray); font-size: 18px; }
.bonus-price { font-family: var(--ff-head); font-size: 28px; color: var(--yellow); font-weight: 800; }

/* ================================
   DEPOIMENTOS
================================ */
.testi-sec { background: var(--black); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg); padding: 26px; position: relative; transition: var(--trans);
}
.testi:hover { transform: translateY(-3px); border-color: rgba(255,92,26,0.15); }
.testi--star {
  background: linear-gradient(135deg, #1a0800, #0d0400);
  border-color: rgba(255,92,26,0.3);
}
.testi-badge {
  position: absolute; top: -12px; left: 18px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--black); font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 50px;
}
.testi-stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi p { font-size: 14px; color: var(--gray-2); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testi--star p { color: var(--white); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.tav {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 800;
  font-size: 13px; color: var(--black); flex-shrink: 0;
}
.tav--1{background:linear-gradient(135deg,#FFD438,#FF7A3D)}
.tav--2{background:linear-gradient(135deg,#60a5fa,#3b82f6);color:#fff}
.tav--3{background:linear-gradient(135deg,#4ade80,#22c55e)}
.tav--4{background:linear-gradient(135deg,#f472b6,#ec4899);color:#fff}
.tav--5{background:linear-gradient(135deg,#fb923c,#f97316)}
.tav--6{background:linear-gradient(135deg,#a78bfa,#8b5cf6);color:#fff}
.testi-author strong { display: block; font-size: 14px; margin-bottom: 2px; }
.testi-author span { font-size: 12px; color: var(--gray); }

/* ================================
   GARANTIA
================================ */
.guar-sec { background: var(--dark); }
.guar-wrap { display: flex; align-items: center; gap: 60px; }
.guar-seal { flex-shrink: 0; }
.seal-ring {
  width: 180px; height: 180px; border-radius: 50%; border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(255,92,26,0.08), transparent);
  animation: spin-slow 20s linear infinite;
  box-shadow: 0 0 30px rgba(255,92,26,0.2);
}
@keyframes spin-slow { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.seal-core {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  animation: spin-slow-rev 20s linear infinite;
}
@keyframes spin-slow-rev { from{transform:rotate(0)} to{transform:rotate(-360deg)} }
.seal-core span { font-size: 30px; }
.seal-core strong { font-family: var(--ff-head); font-size: 24px; color: var(--orange-2); }
.seal-core small { font-size: 11px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; }
.guar-text h2 { font-family: var(--ff-head); font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.guar-text p { color: var(--gray-2); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.guar-text strong { color: var(--white); }

/* ================================
   FINAL SECTION
================================ */
.final-sec { background: var(--black); position: relative; }
.final-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-title { font-family: var(--ff-head); font-size: clamp(28px,4vw,48px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.final-sub { color: var(--gray-2); font-size: 17px; max-width: 540px; margin-bottom: 48px; line-height: 1.7; }
.final-sub strong { color: var(--white); }

.choice-row { display: flex; align-items: center; gap: 32px; margin-bottom: 60px; flex-wrap: wrap; justify-content: center; }
.choice {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg); padding: 28px; width: 240px; text-align: left;
}
.choice--good { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.04); }
.choice-icon { font-size: 32px; margin-bottom: 12px; }
.choice h4 { font-family: var(--ff-head); font-size: 18px; margin-bottom: 14px; }
.choice ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.choice ul li { font-size: 14px; color: var(--gray-2); }
.choice--good ul li { color: var(--gray-2); }
.choice-vs {
  font-family: var(--ff-head); font-size: 28px; font-weight: 800;
  color: var(--orange); opacity: 0.6; flex-shrink: 0;
}

/* ================================
   OFFER BOX
================================ */
.offer-box {
  background: var(--dark-2); border: 2px solid rgba(255,92,26,0.35);
  border-radius: var(--r-xl); overflow: hidden; max-width: 500px; width: 100%;
  box-shadow: 0 0 60px rgba(255,92,26,0.15);
  margin-bottom: 32px;
}
.offer-top {
  background: linear-gradient(135deg, var(--orange), #CC3A00);
  color: var(--black); font-size: 13px; font-weight: 800;
  letter-spacing: 1px; padding: 12px; text-align: center;
}
.offer-body { padding: 36px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.offer-body h3 { font-family: var(--ff-head); font-size: 22px; font-weight: 800; text-align: center; line-height: 1.3; }
.offer-body h3 small { font-size: 13px; color: var(--gray); font-weight: 400; display: block; margin-top: 4px; }

.offer-price-block { text-align: center; }
.op-old { font-size: 15px; color: var(--gray); margin-bottom: 4px; }
.op-new { display: flex; align-items: flex-start; justify-content: center; gap: 4px; line-height: 1; }
.op-new span { font-size: 20px; font-weight: 700; color: var(--yellow); margin-top: 6px; }
.op-new strong { font-family: var(--ff-head); font-size: 72px; font-weight: 800; color: var(--white); }
.op-note { font-size: 13px; color: var(--gray); margin-top: 6px; }

.offer-trust-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  font-size: 12px; color: var(--gray-2);
}

.final-urgency { font-size: 15px; color: var(--gray-2); }
.final-urgency strong { color: var(--orange-2); }

/* ================================
   FOOTER
================================ */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-logo { font-size: 18px; font-weight: 600; }
.footer-logo strong { color: var(--orange-2); }
.footer p { font-size: 13px; color: var(--gray); }
.footer-disc { font-size: 11px; color: rgba(255,255,255,0.2); max-width: 480px; line-height: 1.6; }

/* ================================
   SCROLL REVEAL
================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================================
   RESPONSIVE
================================ */
@media(max-width:900px){
  .forwho-grid{ grid-template-columns:repeat(2,1fr); }
  .testi-grid{ grid-template-columns:repeat(2,1fr); }
  .bonus-grid{ grid-template-columns:1fr; }
  .cta-mid__inner{ flex-direction:column; text-align:center; }
  .cta-mid__right{ align-items:center; }
  .guar-wrap{ flex-direction:column; text-align:center; }
  .guar-text{ display:flex; flex-direction:column; align-items:center; }
}
@media(max-width:640px){
  .nav{ padding:16px 20px; }
  .forwho-grid{ grid-template-columns:1fr; }
  .testi-grid{ grid-template-columns:1fr; }
  .choice-row{ flex-direction:column; align-items:center; }
  .choice{ width:100%; max-width:320px; }
  .section{ padding:70px 0; }
  .ss{ padding:0 16px; }
  .ss-sep{ display:none; }
  .fb--1,.fb--2,.fb--3{ display:none; }
  .phone-wrap{ margin-bottom:20px; }
  .hero__title{ font-size: clamp(32px,9vw,56px); }
}