﻿/* ================================================
   PROTEAUTO — Mobile-First Stylesheet v3.0
   Brand: #e23a3a | #454545
   Strategy: mobile base → min-width breakpoints
   ================================================ */

/* 1. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #454545;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: #1a1a1a; }
p { color: #5a5a5a; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* 2. TOKENS */
:root {
  --red:     #e23a3a;
  --red-dk:  #c42e2e;
  --red-lt:  #fbeaea;
  --dark:    #1a1a1a;
  --body:    #454545;
  --muted:   #767676;
  --border:  #e0e0e0;
  --surf:    #f5f5f5;
  --white:   #ffffff;
  --wpp:     #25D366;
  --wpp-dk:  #1ebe5d;
  --r:       4px;
  --r-md:    8px;
  --r-lg:    12px;
  --r-full:  9999px;
  --t:       .2s ease;
  --px:      1rem;
}
@media (min-width: 480px)  { :root { --px: 1.25rem; } }
@media (min-width: 768px)  { :root { --px: 1.75rem; } }
@media (min-width: 1024px) { :root { --px: 2.5rem;  } }

/* 3. LAYOUT */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--px);
}

/* 4. BUTTONS — touch-friendly (min 48px height) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.375rem;
  border-radius: var(--r);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  min-height: 48px;
  transition: all var(--t);
  -webkit-tap-highlight-color: transparent;
}
.btn-wpp     { background: var(--wpp);   color: #fff; border-color: var(--wpp); }
.btn-wpp:hover   { background: var(--wpp-dk); border-color: var(--wpp-dk); }
.btn-red     { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-red:hover   { background: var(--red-dk); border-color: var(--red-dk); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: #fff; }

/* full-width stack on small screens, inline from 480px */
.btn-group { display: flex; flex-direction: column; gap: .75rem; width: 100%; max-width: 420px; margin: 0 auto; justify-content: center; align-items: center; }
.btn-group .btn { width: 100%; justify-content: center; }
@media (min-width: 640px) {
  .btn-group { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; margin: 0; align-items: center; }
  .btn-group .btn { width: auto; }
}

/* 5. SECTION CHROME */
.sec { padding: 3rem 0; }
@media (min-width: 640px)  { .sec { padding: 4rem 0; } }
@media (min-width: 1024px) { .sec { padding: 5.5rem 0; } }

.sec-hd { margin-bottom: 2rem; }
@media (min-width: 768px) { .sec-hd { margin-bottom: 3rem; } }
.sec-hd--center { text-align: center; }
.sec-hd--center .t-lead { max-width: 520px; margin: .5rem auto 0; }

.t-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .625rem;
}
.t-h2 { font-size: 1.625rem; font-weight: 800; letter-spacing: -.025em; color: var(--dark); }
@media (min-width: 768px) { .t-h2 { font-size: 2rem; } }
.t-lead { font-size: .9375rem; color: var(--muted); line-height: 1.7; margin-top: .5rem; }
@media (min-width: 768px) { .t-lead { font-size: 1rem; } }

/* 6. HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.09); }
.header__row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; text-decoration: none; }
.logo__img {
  display: block;
  max-height: 40px;
  width: auto;
}

/* Desktop nav — hidden on mobile */
.nav { display: none; }
@media (min-width: 768px) {
  .nav { display: flex; align-items: center; gap: .125rem; }
  .nav a { padding: .5rem .75rem; border-radius: var(--r); font-size: .875rem; font-weight: 500; color: var(--body); transition: all var(--t); }
  .nav a:hover { color: var(--red); background: var(--red-lt); }
  .nav__cta { background: var(--wpp) !important; color: #fff !important; margin-left: .375rem; font-weight: 600 !important; padding: .5rem 1rem !important; border-radius: var(--r) !important; }
  .nav__cta:hover { background: var(--wpp-dk) !important; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  padding: .5rem;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--dark);
  border-radius: var(--r-full);
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile nav drawer */
.mnav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 190;
  padding: .375rem var(--px) 1.25rem;
}
.mnav.open { display: flex; flex-direction: column; }
@media (min-width: 768px) { .mnav { display: none !important; } }
.mnav a {
  display: block;
  padding: .875rem .25rem;
  font-size: 1rem; font-weight: 500;
  color: var(--body);
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--t);
  -webkit-tap-highlight-color: transparent;
}
.mnav a:hover { color: var(--red); }
.mnav a:last-of-type { border-bottom: none; }
.mnav__cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: .875rem;
  background: var(--wpp) !important;
  color: #fff !important;
  border-radius: var(--r) !important;
  font-weight: 600 !important;
  padding: .875rem 1rem !important;
  border-bottom: none !important;
  min-height: 48px;
  gap: .5rem;
  font-size: .9375rem;
  text-align: center;
}
.mnav__cta:hover { background: var(--wpp-dk) !important; color: #fff !important; }

/* 7. HERO */
.hero {
  background: var(--dark);
  padding-top: 60px;
  overflow: hidden;
}
.hero::after { content: ''; display: block; height: 3px; background: var(--red); }

.hero__body {
  padding: 2.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}
.hero__card-wrap { width: 100%; max-width: 420px; margin: 0 auto; }
.hero__pills { width: 100%; justify-content: center; }
@media (min-width: 1024px) {
  .hero__body { flex-direction: row; align-items: center; gap: 4rem; padding: 4.5rem 0 3.5rem; text-align: left; }
  .hero__copy { flex: 1; width: auto; align-items: flex-start; justify-content: flex-start; margin: 0; }
  .hero__card-wrap { flex: 0 0 380px; margin: 0; }
  .hero__pills { justify-content: flex-start; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3125rem .875rem;
  background: rgba(226,58,58,.1); border: 1px solid rgba(226,58,58,.25);
  color: #f87171; border-radius: var(--r-full);
  font-size: .6875rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1rem; width: fit-content;
}
.hero__eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero__title {
  font-size: 2rem; font-weight: 900; letter-spacing: -.03em;
  color: #fff; line-height: 1.1; margin-bottom: .875rem;
}
@media (min-width: 480px)  { .hero__title { font-size: 2.5rem; } }
@media (min-width: 768px)  { .hero__title { font-size: 2.875rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.25rem; } }
.hero__title em { font-style: normal; color: var(--red); }

.hero__sub {
  font-size: .9375rem; color: rgba(255,255,255,.58); line-height: 1.75;
  margin-bottom: 1.75rem; max-width: 460px;
}
@media (min-width: 768px) { .hero__sub { font-size: 1rem; } }

.hero__pills {
  display: flex; flex-direction: column; gap: .375rem; margin-top: 1.25rem;
  align-items: center;
}
@media (min-width: 640px) { .hero__pills { flex-direction: row; flex-wrap: wrap; gap: .5rem .875rem; justify-content: center; } }
.hero__pill {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .8rem; color: rgba(255,255,255,.42);
}
.hero__pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--red); opacity: .6; flex-shrink: 0; }

/* Info card */
.icard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg); overflow: hidden; }
.icard__head { background: var(--red); padding: .875rem 1.125rem; }
.icard__head h3 { color: #fff; font-size: .9375rem; font-weight: 700; margin-bottom: .125rem; }
.icard__head p  { color: rgba(255,255,255,.7); font-size: .8rem; }
.icard__body { padding: 0 1.125rem; }
.icard__row {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.icard__row:last-child { border-bottom: none; }
.icard__num {
  width: 22px; height: 22px; background: var(--red); color: #fff;
  border-radius: 50%; font-size: .6875rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.icard__row strong { display: block; font-size: .875rem; color: #fff; font-weight: 600; margin-bottom: .125rem; }
.icard__row span  { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.5; }

/* 8. BAND */
.band { background: var(--body); padding: 1.5rem 0; }
.band__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .75rem; text-align: center;
}
@media (min-width: 640px) {
  .band__grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .band__item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
}
.band__item { padding: .5rem; }
.band__val { font-size: 1.625rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: .25rem; letter-spacing: -.02em; }
@media (min-width: 640px) { .band__val { font-size: 1.875rem; } }
.band__lbl { font-size: .75rem; color: rgba(255,255,255,.42); letter-spacing: .02em; }

/* 9. HOW IT WORKS */
.how { background: #fff; }
.steps {
  display: grid; grid-template-columns: 1fr; gap: .875rem;
}
@media (min-width: 560px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.step {
  padding: 1.375rem 1.125rem;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: #fff;
}
.step__n {
  width: 2rem; height: 2rem; background: var(--red-lt);
  color: var(--red-dk); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: .9375rem; font-weight: 800; margin-bottom: .875rem;
}
.step__title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; }
.step__desc  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* 10. BENEFITS */
.benefits-sec { background: #f7f7f7; }
.bens {
  display: grid; grid-template-columns: 1fr; gap: .875rem;
}
@media (min-width: 560px)  { .bens { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bens { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.ben {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.375rem 1.125rem;
}
.ben__icon {
  width: 2.5rem; height: 2.5rem; background: var(--red-lt);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  margin-bottom: .875rem;
}
.ben__title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; }
.ben__desc  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* 11. APP */
.app-sec { background: var(--dark); }
.app-sec__row { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.app-sec__copy { text-align: center; }
.app-sec__visual { display: flex; justify-content: center; width: 100%; }
@media (min-width: 1024px) {
  .app-sec__row { flex-direction: row; align-items: center; gap: 4rem; }
  .app-sec__copy { flex: 1; text-align: left; }
  .app-sec__visual { flex: 0 0 220px; justify-content: center; width: auto; }
}
.app-sec .t-tag { color: #f87171; }
.app-sec .t-h2  { color: #fff; }
.app-sec .t-lead { color: rgba(255,255,255,.52); }

.app-list { display: flex; flex-direction: column; gap: .625rem; margin: 1.25rem 0 1.75rem; }
.app-list__item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .75rem .875rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
}
.app-list__icon {
  width: 30px; height: 30px; background: rgba(226,58,58,.12);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-list__txt strong { display: block; font-size: .875rem; font-weight: 600; color: #fff; margin-bottom: .125rem; }
.app-list__txt span   { font-size: .8rem; color: rgba(255,255,255,.38); }

/* Mockup */
.mockup {
  width: 190px; border-radius: 2rem;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  padding: .875rem .75rem;
  margin: 0 auto;
}
@media (min-width: 480px) { .mockup { width: 210px; } }
.mockup::before {
  content: ''; display: block; width: 2.5rem; height: .25rem;
  background: rgba(255,255,255,.1); border-radius: var(--r-full);
  margin: 0 auto .625rem;
}
.mockup__screen {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg); padding: 1rem .75rem; text-align: center;
}
.mockup__logo {
  width: 2.75rem; height: 2.75rem; background: var(--red);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.mockup__name { font-size: .9375rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.mockup__sub  { font-size: .6875rem; color: rgba(255,255,255,.32); line-height: 1.5; margin-bottom: .875rem; }
.mockup__tag  {
  display: inline-block; padding: .25rem .625rem;
  background: rgba(226,58,58,.15); color: #f87171;
  border: 1px solid rgba(226,58,58,.2); border-radius: var(--r-full);
  font-size: .6875rem; font-weight: 600;
}

/* 12. FAQ */
.faq-sec { background: #fff; }
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 0; background: none; border: none;
  font-size: .9375rem; font-weight: 600; color: var(--dark);
  text-align: left; transition: color var(--t);
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}
.faq__btn:hover, .faq__btn.open { color: var(--red); }
.faq__icon {
  width: 24px; height: 24px; border: 1.5px solid var(--border);
  border-radius: 50%; position: relative; flex-shrink: 0;
  transition: all var(--t);
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--muted);
  border-radius: var(--r-full); transition: all var(--t);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq__icon::before { width: 10px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 10px; }
.faq__btn.open .faq__icon { background: var(--red); border-color: var(--red); }
.faq__btn.open .faq__icon::before,
.faq__btn.open .faq__icon::after { background: #fff; }
.faq__btn.open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__answer.open { max-height: 400px; }
.faq__answer-inner { padding: 0 0 1rem; font-size: .9rem; color: var(--muted); line-height: 1.75; }
.faq__answer-inner a { color: var(--red); text-decoration: underline; }

/* 13. CTA STRIP */
.cta-strip { background: var(--red); padding: 2.75rem 0; }
.cta-strip__row {
  display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center;
}
@media (min-width: 640px) { .cta-strip__row { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; } }
.cta-strip__title {
  font-size: 1.375rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
  line-height: 1.25; width: 100%;
}
@media (min-width: 640px) { .cta-strip__title { width: auto; } }
@media (min-width: 640px) { .cta-strip__title { font-size: 1.625rem; } }
.cta-strip .btn-wpp { width: 100%; }
@media (min-width: 640px) { .cta-strip .btn-wpp { width: auto; flex-shrink: 0; } }

/* 14. FOOTER */
.footer { background: #111; padding: 2.75rem 0 1.25rem; }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.75rem; margin-bottom: 2rem;
}
@media (min-width: 560px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; } }
.footer__brand .logo__name { color: #fff; }
.footer__tagline { font-size: .875rem; color: rgba(255,255,255,.28); margin-top: .75rem; line-height: 1.65; max-width: 280px; }
.footer__ttl { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.22); margin-bottom: .875rem; }
.footer__links li { margin-bottom: .4375rem; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.36); transition: color var(--t); }
.footer__links a:hover { color: #fff; }
.footer__sep { border: none; border-top: 1px solid rgba(255,255,255,.06); margin-bottom: 1.25rem; }
.footer__btm { display: flex; flex-direction: column; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.22); }
@media (min-width: 560px) { .footer__btm { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__btm-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__btm-links a { color: rgba(255,255,255,.22); transition: color var(--t); }
.footer__btm-links a:hover { color: #fff; }

/* 15. COOKIE */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: #111; border-top: 2px solid var(--red);
  padding: 1rem var(--px);
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cookie.show { transform: translateY(0); }
.cookie__row {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; gap: .875rem; align-items: flex-start;
}
@media (min-width: 640px) { .cookie__row { flex-direction: row; align-items: center; } }
.cookie__text {
  font-size: .7rem;
  color: rgba(255,255,255,.52);
  line-height: 1.6;
  flex: 1;
}
.cookie__text a { color: #f87171; text-decoration: underline; }
.cookie__btns { display: flex; gap: .625rem; width: 100%; }
@media (min-width: 480px) { .cookie__btns { width: auto; flex-shrink: 0; } }
.cookie__ess {
  flex: 1;
  padding: .625rem 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.42);
  font-size: .7em;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all var(--t);
  min-height: 44px;
}
@media (min-width: 480px) { .cookie__ess { flex: none; } }
.cookie__ess:hover { border-color: rgba(255,255,255,.35); color: #fff; }
.cookie .btn-red {
  font-size: .8125rem;
  padding: .625rem 1rem;
  min-height: 44px;
  flex: 1;
  background: var(--red) !important;
  color: #fff !important;
  border-color: var(--red) !important;
  border-radius: 20px;
}
.cookie .btn-red:hover {
  background: var(--red-dk) !important;
  border-color: var(--red-dk) !important;
}
@media (min-width: 480px) { .cookie .btn-red { flex: none; } }

/* 16. SCROLL TOP */
.scroll-top {
  position: fixed; bottom: 1rem; right: 1rem; z-index: 50;
  width: 44px; height: 44px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: all .25s ease;
  box-shadow: 0 4px 16px rgba(226,58,58,.35);
  -webkit-tap-highlight-color: transparent;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dk); }

/* 17. ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* 18. TERMS PAGE */
.terms-page { padding-top: 60px; }
.terms-hero { background: var(--dark); border-bottom: 3px solid var(--red); padding: 3rem 0; text-align: center; }
.terms-hero__h { font-size: clamp(1.5rem,4vw,2.25rem); font-weight: 800; color: #fff; letter-spacing: -.025em; margin-bottom: .625rem; }
.terms-hero__sub { color: rgba(255,255,255,.48); font-size: .9375rem; }
.terms-hero__date { display: inline-block; margin-top: .75rem; padding: .25rem .75rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-full); font-size: .8rem; color: rgba(255,255,255,.28); }
.terms-body { padding: 2.5rem 0 4.5rem; }
.terms-wrap { max-width: 760px; margin: 0 auto; padding: 0 var(--px); }
.terms-toc { background: var(--surf); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--r-md); padding: 1.125rem 1.375rem; margin-bottom: 2.25rem; }
.terms-toc h3 { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .75rem; }
.terms-toc ol { padding-left: 1.125rem; }
@media (min-width: 560px) { .terms-toc ol { columns: 2; column-gap: 2rem; } }
.terms-toc li { margin-bottom: .4rem; }
.terms-toc a { font-size: .875rem; color: var(--body); transition: color var(--t); }
.terms-toc a:hover { color: var(--red); }
.terms-sec { margin-bottom: 2.25rem; padding-bottom: 2.25rem; border-bottom: 1px solid #f0f0f0; }
.terms-sec:last-child { border-bottom: none; }
.terms-sec h2 { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .625rem; }
.sec-num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: var(--red); color: #fff; border-radius: var(--r); font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.terms-sec p, .terms-sec li { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: .75rem; }
.terms-sec ul, .terms-sec ol { padding-left: 1.375rem; list-style: disc; margin-bottom: .875rem; }
.terms-sec ol { list-style: decimal; }
.terms-sec strong { color: var(--dark); }
.terms-sec a { color: var(--red); text-decoration: underline; }
.terms-sec h3 { font-size: .9375rem; font-weight: 700; color: var(--dark); margin: 1.25rem 0 .5rem; }
.terms-sec code { background: var(--surf); padding: .125rem .375rem; border-radius: var(--r); font-size: .875em; }

/* 19. UTILS */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ================================================
   20. SIMPLIFIED PAGE — hero, steps, support
   ================================================ */

/* Button size variants */
.btn--sm { padding: .5rem 1rem; font-size: .8125rem; min-height: 40px; }
.btn--lg { padding: 1.125rem 2rem; font-size: 1.0625rem; min-height: 56px; }

/* Hero simplified layout */
.hero--simple {
  position: relative;
  background: transparent;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  padding-top: 60px;
  overflow: hidden;
  color: #fff;
}
.hero--simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.67);
  pointer-events: none;
}
.hero--simple::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--red);
  position: relative;
  z-index: 1;
}
.btn-wpp.btn--lg {
  border-radius: 50px;
}
.btn.btn-wpp {
  border-radius: 50px;
}
.hero--simple__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 3rem 3rem;
  text-align: center;
}
.hero--simple .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero--simple .hero__eyebrow {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.hero--simple .hero__title {
  font-size: 2.25rem;
  color: #fff;
}
@media (min-width: 480px)  { .hero--simple .hero__title { font-size: 2.75rem; } }
@media (min-width: 768px)  { .hero--simple .hero__title { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero--simple .hero__title { font-size: 3.75rem; } }
.hero--simple .hero__sub {
  font-size: 1.0625rem;
  max-width: 600px;
  color: rgba(255,255,255,.85);
}
@media (min-width: 768px) { .hero--simple .hero__sub { font-size: 1.1875rem; } }
.hero--simple .btn-wpp { border-color: #fff; }
.hero--simple .btn-wpp:hover { background: #1ebe5d; }

/* How-to steps section */
.how-sec {
  padding: 3.5rem 0;
  background: #fff;
}
@media (min-width: 768px) { .how-sec { padding: 5rem 0; } }

.how-sec__h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.025em;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .how-sec__h2 { font-size: 1.875rem; } }

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .how-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  padding: 2rem 1.25rem;
  background: var(--surf);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.how-step__n {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}
.how-step__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.how-step p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Support CTA section */
.support-sec {
  background: var(--dark);
  padding: 3rem 0;
}
@media (min-width: 768px) { .support-sec { padding: 4rem 0; } }
.support-sec__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.support-sec__text {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  margin: 0;
}
@media (min-width: 768px) { .support-sec__text { font-size: 1.25rem; } }

/* Footer slim */
.footer--slim {
  background: #111;
  padding: 1.25rem 0;
  border-top: 1px solid #222;
}
.footer--slim .footer__btm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer--slim .footer__btm {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer--slim .footer__btm span { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer--slim .footer__btm-links { display: flex; gap: 1.25rem; }
.footer--slim .footer__btm-links a { font-size: .8125rem; color: rgba(255,255,255,.35); transition: color var(--t); }
.footer--slim .footer__btm-links a:hover { color: rgba(255,255,255,.7); }
