@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --nr-red:            #c0392b;
  --nr-red-dark:       #a93226;
  --nr-black:          #111111;
  --nr-dark:           #1a1a1a;
  --nr-text:           #555555;
  --nr-text-strong:    #222222;
  --nr-muted:          #999999;
  --nr-surface:        #ffffff;
  --nr-whatsapp:       #25d366;

  --nr-font-heading:   'Oswald', 'Impact', 'Arial Narrow Bold', sans-serif;
  --nr-font-body:      'Open Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--nr-font-body);
  color: var(--nr-text-strong);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1440px; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--nr-font-heading);
  font-size: 13px; font-weight: 600; letter-spacing: 1.2px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
}
.btn__arrow { font-family: var(--nr-font-body); font-weight: 400; font-size: 15px; transition: transform .25s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--red { background: var(--nr-red); color: #fff; border-color: var(--nr-red); }
.btn--red:hover { background: var(--nr-red-dark); border-color: var(--nr-red-dark); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn--sm { padding: 11px 20px; font-size: 12px; }
.btn--lg { padding: 18px 34px; font-size: 14px; }

/* ==================== EYEBROW / TITLES ==================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--nr-red); font-weight: 700;
  font-family: var(--nr-font-heading);
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--nr-red); }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: #fff; }

.section-title {
  font-family: var(--nr-font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.05;
  color: var(--nr-dark);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.section-title--light { color: #fff; }
.section-title em { font-style: normal; color: var(--nr-red); }

.section-lead {
  font-size: 16px; line-height: 1.7;
  color: var(--nr-text); max-width: 560px;
}
.section-lead--light { color: rgba(255,255,255,.65); }

/* ==================== TOP BAR ==================== */
.topbar {
  background: #0a0a0a; color: #999; font-size: 11px;
  padding: 10px 0;
  letter-spacing: .5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar__left { display: flex; align-items: center; gap: 20px; }
.topbar__dot { width: 6px; height: 6px; border-radius: 50%; background: #25d366; display: inline-block; margin-right: 8px; vertical-align: middle; box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: dot-pulse 2s infinite; }
.topbar__dot--offline { background: var(--nr-red); animation: dot-pulse-red 2s infinite; box-shadow: 0 0 0 0 rgba(192,57,43,.6); }
@keyframes dot-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); } 50% { box-shadow: 0 0 0 6px rgba(37,211,102,0); } }
@keyframes dot-pulse-red { 0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.6); } 50% { box-shadow: 0 0 0 6px rgba(192,57,43,0); } }
.topbar__right { display: flex; gap: 24px; align-items: center; }
.topbar__right a { color: #bbb; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar__right a:hover { color: var(--nr-red); }
.topbar__right a.topbar__wa { color: #25d366; }

/* ==================== HEADER ==================== */
.header {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: 0; z-index: 100;
}
.header__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; }
.logo svg { height: 44px; width: auto; display: block; }

.nav__list { display: flex; gap: 6px; justify-content: center; }
.nav__link {
  font-family: var(--nr-font-heading);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.7); padding: 10px 16px;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; cursor: pointer;
  transition: color .2s;
  display: inline-block;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1.5px; background: var(--nr-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 14px; }

/* ==================== HERO ==================== */
.hero {
  position: relative; min-height: 720px;
  display: flex; align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__media { position: absolute; inset: 0; z-index: 0; left: 50%; clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 45%, rgba(10,10,10,.7) 55%, rgba(10,10,10,0) 75%);
}

.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 100px 32px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
}
.hero__main { max-width: 860px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 11px; color: rgba(255,255,255,.85);
  font-family: var(--nr-font-heading); letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 32px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero__badge-dot { width: 6px; height: 6px; background: var(--nr-red); border-radius: 50%; }

.hero__title {
  font-family: var(--nr-font-heading);
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 700; color: #fff;
  line-height: .98; letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero__title em { font-style: normal; color: var(--nr-red); }
.hero__title .hero__line2 { display: block; font-weight: 400; color: rgba(255,255,255,.88); font-size: .88em; }

.hero__sub {
  color: rgba(255,255,255,.78);
  font-size: 17px; line-height: 1.6;
  max-width: 540px; margin-bottom: 40px;
  font-weight: 300;
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==================== TRUST / BRANDS ==================== */
.trust {
  background: #fff;
  padding: 32px 0;
  border-bottom: 1px solid #eee;
}
.trust__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.trust__label {
  font-family: var(--nr-font-heading);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--nr-muted); font-weight: 500;
  white-space: nowrap;
}
.trust__brands {
  display: flex; align-items: center; gap: 48px;
  flex: 1; justify-content: flex-end; flex-wrap: wrap;
}
.trust__brand {
  font-family: var(--nr-font-heading);
  font-size: 20px; font-weight: 700;
  color: #111; letter-spacing: 1px;
  opacity: .55; transition: opacity .25s;
}
.trust__brand:hover { opacity: 1; }

/* ==================== SECTIONS ==================== */
.section { padding: 120px 0; position: relative; }
.section--dark { background: #0a0a0a; color: #fff; }
.section--gray { background: #f6f6f6; }
.section--tight { padding: 80px 0; }

.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 70px;
}
.section-head--center { grid-template-columns: 1fr; text-align: center; justify-items: center; margin-bottom: 60px; }
.section-head--stacked { grid-template-columns: 1fr; gap: 20px; }
.section-head__title-group { display: flex; flex-direction: column; gap: 16px; }
.section-head--center .section-head__title-group { align-items: center; }
.section-head--center .section-lead { text-align: center; }

/* ==================== STATS ==================== */
.stats {
  background: #0a0a0a; color: #fff;
  padding: 90px 0; position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--nr-red);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}
.stat {
  background: #0a0a0a;
  padding: 32px 28px;
  position: relative;
}
.stat__num {
  font-family: var(--nr-font-heading);
  font-size: clamp(48px, 6vw, 80px); font-weight: 700;
  color: #fff; line-height: 1; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 10px;
}
.stat__num-suffix { color: var(--nr-red); font-size: .65em; font-weight: 600; }
.stat__label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-family: var(--nr-font-heading);
  font-weight: 500;
}
.stat__desc {
  font-size: 13px; color: rgba(255,255,255,.75);
  margin-top: 10px; line-height: 1.6;
}

/* ==================== VALUES ==================== */
.values__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #eee;
  border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.value {
  background: #fff; padding: 48px 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: background .3s;
  position: relative;
}
.value:hover { background: #fafafa; }
.value__num {
  font-family: var(--nr-font-heading);
  font-size: 12px; letter-spacing: 2px;
  color: var(--nr-red); font-weight: 700;
}
.value__icon {
  width: 56px; height: 56px;
  border: 1.5px solid #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  color: var(--nr-red);
  transition: all .3s;
}
.value:hover .value__icon { border-color: var(--nr-red); background: var(--nr-red); color: #fff; }
.value__title {
  font-family: var(--nr-font-heading);
  font-size: 22px; font-weight: 600;
  color: var(--nr-dark); letter-spacing: -0.005em;
}
.value__desc {
  font-size: 14px; color: var(--nr-text);
  line-height: 1.7;
}

/* ==================== TIMELINE ==================== */
.timeline { position: relative; padding: 40px 0; }
.timeline__track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.timeline__track::before {
  content: ''; position: absolute; top: 56px; left: 10%; right: 10%;
  height: 1px; background: rgba(255,255,255,.12);
}
.timeline__track::after {
  content: ''; position: absolute; top: 56px; left: 10%;
  height: 1px; background: var(--nr-red);
  width: 0; transition: width 2s ease;
}
.timeline.in-view .timeline__track::after { width: 80%; }

.tl-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
  position: relative;
}
.tl-step__num {
  font-family: var(--nr-font-heading);
  font-size: 14px; color: rgba(255,255,255,.4);
  letter-spacing: 2px; margin-bottom: 20px;
  font-weight: 500;
}
.tl-step__dot {
  width: 20px; height: 20px; background: #0a0a0a;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  position: relative; z-index: 2;
  transition: all .3s;
}
.tl-step__dot::after {
  content: ''; position: absolute; inset: 4px;
  background: var(--nr-red); border-radius: 50%;
  transform: scale(0); transition: transform .4s;
}
.timeline.in-view .tl-step .tl-step__dot { border-color: var(--nr-red); }
.timeline.in-view .tl-step .tl-step__dot::after { transform: scale(1); }

.tl-step__day {
  font-family: var(--nr-font-heading);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--nr-red); font-weight: 700;
  margin: 24px 0 10px;
}
.tl-step__title {
  font-family: var(--nr-font-heading);
  font-size: 19px; font-weight: 600; color: #fff;
  margin-bottom: 10px; letter-spacing: -0.005em;
}
.tl-step__desc {
  font-size: 13px; color: rgba(255,255,255,.6);
  line-height: 1.65; max-width: 200px;
}

/* ==================== CATEGORIES ==================== */
.categories__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid #eee;
}
.cat {
  padding: 40px 32px;
  border-right: 1px solid #eee;
  display: flex; flex-direction: column; gap: 18px;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.cat:last-child { border-right: none; }
.cat:hover { background: #0a0a0a; color: #fff; }
.cat__index {
  font-family: var(--nr-font-heading);
  font-size: 11px; letter-spacing: 2px;
  color: var(--nr-muted); font-weight: 500;
}
.cat:hover .cat__index { color: rgba(255,255,255,.4); }
.cat__title {
  font-family: var(--nr-font-heading);
  font-size: 22px; font-weight: 600; color: var(--nr-dark);
  letter-spacing: -0.005em;
  transition: color .3s;
}
.cat:hover .cat__title { color: #fff; }
.cat__list {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--nr-text); line-height: 1.5;
}
.cat:hover .cat__list { color: rgba(255,255,255,.65); }
.cat__arrow {
  align-self: flex-start;
  font-family: var(--nr-font-heading);
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  color: var(--nr-red); text-transform: uppercase;
  margin-top: auto; padding-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
}
.cat__arrow-line { width: 0; height: 1px; background: var(--nr-red); transition: width .3s; }
.cat:hover .cat__arrow-line { width: 32px; }

/* ==================== ORIGINS ==================== */
.origins {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: start;
}
.origins__list { display: flex; flex-direction: column; }
.origin {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
  transition: background .25s, padding .25s;
  cursor: pointer;
}
.origin:hover { padding-left: 16px; background: #fafafa; }
.origin__flag { font-size: 32px; line-height: 1; }
.origin__body h4 {
  font-family: var(--nr-font-heading);
  font-size: 20px; font-weight: 600;
  color: var(--nr-dark); margin-bottom: 4px;
}
.origin__body p { font-size: 13px; color: var(--nr-text); line-height: 1.5; }
.origin__count {
  font-family: var(--nr-font-heading);
  font-size: 12px; letter-spacing: 1.5px;
  color: var(--nr-red); font-weight: 700;
}
.origins__side {
  position: sticky; top: 120px;
  background: #0a0a0a; color: #fff;
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.origins__side h3 {
  font-family: var(--nr-font-heading);
  font-size: 32px; font-weight: 700;
  line-height: 1.1; color: #fff;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.origins__side p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ==================== FAQ ==================== */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-item__q {
  width: 100%; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: var(--nr-font-heading);
  font-size: 19px; font-weight: 500;
  color: var(--nr-dark); gap: 20px;
  letter-spacing: -0.005em;
  transition: color .2s;
}
.faq-item__q:hover { color: var(--nr-red); }
.faq-item__icon {
  width: 36px; height: 36px;
  border: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  color: var(--nr-red); font-size: 18px; line-height: 1;
  transition: all .3s;
  flex-shrink: 0;
}
.faq-item__q[aria-expanded="true"] .faq-item__icon {
  background: var(--nr-red); color: #fff; border-color: var(--nr-red);
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 15px; color: var(--nr-text); line-height: 1.7;
  padding-right: 60px;
}
.faq-item__a.open { max-height: 400px; padding: 0 60px 32px 0; }

.timeline__cta { text-align: center; margin-top: 60px; }
.section-head--stacked--mb { margin-bottom: 40px; }

/* ==================== CTA FINAL ==================== */
.cta-final {
  background: #0a0a0a; color: #fff;
  padding: 130px 0;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: url('slide2.jpg') center/cover no-repeat;
  filter: brightness(.22) saturate(.6);
  z-index: 0;
}
.cta-final__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: end;
}
.cta-final__title {
  font-family: var(--nr-font-heading);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 700; color: #fff;
  line-height: .98; letter-spacing: -0.02em;
  text-wrap: balance;
}
.cta-final__title em { font-style: normal; color: var(--nr-red); }
.cta-final__actions { display: flex; flex-direction: column; gap: 18px; }
.cta-final__actions p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; }
.cta-final__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==================== FOOTER ==================== */
.footer {
  background: #050505; color: rgba(255,255,255,.55);
  padding: 48px 0 24px;
  font-size: 12px;
  border-top: 2px solid var(--nr-red);
}
.footer__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px;
}
.footer__cta { display: inline-flex; gap: 12px; margin-left: auto; padding-right: 8px; }
.footer__icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  transition: all .2s;
}
.footer__icon-btn:hover {
  border-color: var(--nr-red);
  color: var(--nr-red);
  background: rgba(192,57,43,.08);
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--nr-font-heading);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.footer__bottom-left, .footer__bottom-right {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer__sep { opacity: .4; }
.footer__contact-item { color: rgba(255,255,255,.7); transition: color .2s; }
a.footer__contact-item:hover { color: var(--nr-red); }
@media (max-width: 720px) {
  .footer__top { justify-content: flex-start; }
  .footer__bottom { justify-content: flex-start; }
  .footer__cta { margin-left: 0; }
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; background: #25d366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}
.whatsapp-float__pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25d366;
  animation: nrpulse 2s ease-out infinite; z-index: -1;
}
@keyframes nrpulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .header__inner { grid-template-columns: auto auto; gap: 20px; }
  .header nav { display: none; }
  .hero { min-height: auto; }
  .hero__media { left: 0; clip-path: none; opacity: .22; }
  .hero__overlay { background: linear-gradient(180deg, rgba(10,10,10,.8) 0%, rgba(10,10,10,.95) 100%); }
  .hero__inner { grid-template-columns: 1fr; padding: 80px 32px 72px; gap: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: 1fr; }
  .value { padding: 40px 32px; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .cat { border-right: none; border-bottom: 1px solid #eee; padding: 32px 28px; }
  .cat:nth-last-child(-n+2) { border-bottom: none; }
  .origins { grid-template-columns: 1fr; gap: 40px; }
  .origins__side { position: static; }
  .timeline__track { grid-template-columns: 1fr; gap: 30px; }
  .timeline__track::before, .timeline__track::after { display: none; }
  .tl-step__desc { max-width: none; }
  .cta-final { padding: 100px 0; }
  .cta-final__inner { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .section-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 56px; }
  .faq-item__a { padding-right: 20px; }
  .faq-item__a.open { padding: 0 20px 28px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .topbar { font-size: 10px; padding: 8px 0; }
  .topbar__left span { display: none; }
  .topbar__right { gap: 14px; justify-content: flex-end; width: 100%; flex-wrap: wrap; }

  .header__inner { padding: 14px 0; }
  .logo svg { height: 38px; }

  .hero { min-height: 560px; }
  .hero__inner { padding: 64px 20px 56px; }
  .hero__badge { font-size: 10px; letter-spacing: 2px; padding: 6px 12px 6px 9px; margin-bottom: 24px; }
  .hero__title { font-size: 44px; margin-bottom: 20px; line-height: 1; }
  .hero__title .hero__line2 { font-size: .82em; }
  .hero__sub { font-size: 15px; margin-bottom: 32px; max-width: none; }
  .hero__btns { gap: 10px; width: 100%; }
  .hero__btns .btn { width: 100%; justify-content: center; padding: 16px 20px; font-size: 13px; }

  .trust { padding: 24px 0; }
  .trust__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust__brands { gap: 20px 28px; justify-content: flex-start; }
  .trust__brand { font-size: 16px; }

  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
  .section-head { margin-bottom: 40px; gap: 20px; }

  .stats { padding: 64px 0; }
  .stats__grid { grid-template-columns: 1fr; gap: 1px; }
  .stat { padding: 24px 22px; }
  .stat__num { font-size: 52px; margin-bottom: 8px; }
  .stat__desc { font-size: 12px; }

  .value { padding: 32px 24px; gap: 16px; }
  .value__icon { width: 48px; height: 48px; }
  .value__title { font-size: 20px; }

  .timeline { padding: 16px 0; }
  .timeline__track { gap: 40px; }
  .tl-step { padding: 0; }
  .tl-step__num { margin-bottom: 12px; }
  .tl-step__day { margin: 16px 0 8px; }
  .tl-step__title { font-size: 18px; }

  .categories__grid { grid-template-columns: 1fr; }
  .cat { padding: 28px 22px; gap: 14px; }
  .cat:nth-last-child(-n+2) { border-bottom: 1px solid #eee; }
  .cat:last-child { border-bottom: none; }
  .cat__title { font-size: 20px; }

  .origins { gap: 32px; }
  .origin { grid-template-columns: 36px 1fr auto; gap: 14px; padding: 18px 0; }
  .origin:hover { padding-left: 0; background: transparent; }
  .origin__flag { font-size: 24px; }
  .origin__body h4 { font-size: 17px; }
  .origin__body p { font-size: 12px; line-height: 1.45; }
  .origin__count { font-size: 10px; letter-spacing: 1px; }
  .origins__side { padding: 36px 28px; gap: 20px; }
  .origins__side h3 { font-size: 24px; }

  .faq-item__q { font-size: 16px; padding: 22px 0; gap: 14px; }
  .faq-item__icon { width: 32px; height: 32px; font-size: 16px; }
  .faq-item__a { padding-right: 0; font-size: 14px; }
  .faq-item__a.open { padding: 0 0 24px 0; }

  .cta-final { padding: 80px 0; }
  .cta-final__title { font-size: 40px; }
  .cta-final__actions p { font-size: 14px; }
  .cta-final__btns .btn { width: 100%; justify-content: center; }

  .footer { padding: 40px 0 20px; }
  .footer__top { gap: 20px; padding-bottom: 24px; margin-bottom: 16px; }
  .footer__cta { margin-left: 0; gap: 10px; }
  .footer__icon-btn { width: 40px; height: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 10px; letter-spacing: 1.5px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
