:root {
  --black: #080B10;
  --graphite: #11161E;
  --white: #F5F7FA;
  --light-bg: #F1F3F6;
  --gray: #A7B0BE;
  --gray-dark: #5B6472;
  --text-dark: #16212E;
  --border-light: #E2E6EC;
  --accent: #397BFF;
  --accent-light: #65A0FF;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

img { display: block; max-width: 100%; }

/* ---------- SCROLL REVEAL ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.section--light { background: var(--light-bg); }
.section--white { background: #FFFFFF; border-top: 1px solid var(--border-light); }
.section--dark { background: linear-gradient(180deg, #11161E 0%, #080B10 100%); padding-top: 44px; padding-bottom: 56px; }

.section-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  max-width: 400px;
}

.section-sub {
  margin: -8px 0 4px;
  max-width: 380px;
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* ---------- TOP NAV ---------- */

.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  box-sizing: border-box;
  background: rgba(8,11,16,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247,245,240,0.08);
}

.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  display: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--white);
}

.topnav-links {
  display: none;
}

.topnav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn--nav {
  display: none;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--black);
  padding: 32px 20px 36px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 78% 20%, rgba(57,123,255,0.12) 0%, rgba(8,11,16,0) 45%), linear-gradient(180deg, rgba(8,11,16,0.18) 0%, rgba(8,11,16,0.5) 72%, #080B10 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: min(94vw, 620px);
}

.kicker {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 8vw, 50px);
  line-height: 1.05;
  color: var(--white);
  white-space: nowrap;
}

.accent-text { color: var(--accent); }

.hero-role {
  margin: -6px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-headline {
  margin: 0;
  max-width: 400px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.hero-sub {
  margin: 0;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray);
}

.hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(57,123,255,0.10);
  border: 1px solid rgba(57,123,255,0.3);
  text-align: left;
}

.hero-highlight-icon { font-size: 16px; line-height: 1.4; flex-shrink: 0; }

.hero-highlight-text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-top: 6px;
}

.response-note {
  margin: 0;
  font-size: 13px;
  color: var(--gray);
}

.link-muted {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 600;
}

.link-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--accent-light);
  white-space: nowrap;
  transition: color .15s ease, transform .15s ease;
}

.link-secondary:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.hero-photo-circle {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(57,123,255,0.10), 0 20px 50px rgba(0,0,0,0.5);
}

.hero-photo-round {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

/* ---------- LANG TOGGLE (nav) ---------- */

.lang-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(247,245,240,0.08);
  border: 1px solid rgba(247,245,240,0.18);
}

.lang-pill {
  cursor: pointer;
  border: none;
  font-family: 'Manrope', sans-serif;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
  color: var(--white);
}

.lang-pill.active {
  background: var(--accent);
  color: #FFFFFF;
}

/* ---------- STAT BAR ---------- */

.stat-bar {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 760px;
  margin: 44px auto 0;
  border-top: 1px solid rgba(247,245,240,0.12);
  padding-top: 26px;
}

.stat-bar-item {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(247,245,240,0.12);
}

.stat-bar-item:last-child { border-right: none; }

.stat-bar-item .stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 27px;
  color: var(--white);
}

.stat-bar-item--highlight .stat-number { color: var(--accent); }

.stat-bar-item .stat-label {
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.35;
}

.cta-micro {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-top: 6px;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 360px;
  padding: 18px 28px;
  border-radius: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-align: center;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 22px rgba(57,123,255,0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 16px 32px rgba(57,123,255,0.4);
  filter: brightness(1.04);
}

/* ---------- EMPRESAS ---------- */

.companies-card {
  width: 100%;
  max-width: 420px;
  padding: 18px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.companies-label {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.logo-chip {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
}

.logo-chip img { width: 100%; height: 100%; object-fit: contain; }

/* Tighten the gap between the companies logos and the next section */
#empresas { padding-bottom: 16px; }
#metodo { padding-top: 4px; }

@media (min-width: 768px) {
  #empresas { padding-bottom: 28px; }
  #metodo { padding-top: 12px; }
}

@media (min-width: 1024px) {
  #empresas { padding-bottom: 34px; }
  #metodo { padding-top: 16px; }
}

/* ---------- METODO ---------- */

.steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
}

.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.step-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-dark);
  margin-top: 3px;
}

.step-arrow {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  padding: 4px 0;
}

.step-arrow-glyph {
  display: inline-block;
  animation: stepFlow 1.6s ease-in-out infinite;
}

@keyframes stepFlow {
  0%, 100% { opacity: 0.45; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.25) translateY(2px); }
}

@media (prefers-reduced-motion: reduce) {
  .step-arrow-glyph { animation: none; }
}

/* ---------- FLOW EXAMPLE ---------- */

.flow-row {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.flow-step {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 18px;
  border-radius: 14px;
  background: var(--light-bg);
  border: 1.5px solid var(--border-light);
  text-align: center;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.flow-step-icon-wrap {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.flow-step-icon { font-size: 20px; line-height: 1; }

.flow-step-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.flow-step-desc {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--gray-dark);
  margin-top: 5px;
}

.flow-step.is-active {
  background: rgba(57,123,255,0.08);
  border-color: var(--accent);
  box-shadow: 0 10px 26px rgba(57,123,255,0.18);
  transform: translateY(-2px);
}

.flow-step.is-active .flow-step-icon-wrap {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

.flow-step.is-active .flow-step-label { color: var(--accent); }

.flow-arrow {
  font-size: 18px;
  color: var(--gray);
  transform: rotate(90deg);
  transition: color .35s ease;
}

.flow-arrow.is-active { color: var(--accent); }

.flow-note {
  margin: 18px 0 0;
  max-width: 380px;
  font-size: 13.5px;
  color: var(--gray-dark);
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .flow-step, .flow-step-icon-wrap, .flow-arrow { transition: none; }
}

/* ---------- OFFER CARDS ---------- */

.offer-card {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.offer-card--dark {
  background: var(--graphite);
  border: none;
  scroll-margin-top: 20px;
}

.offer-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.offer-kicker {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-kicker--accent { color: var(--accent); }

.offer-badge {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-badge--accent { background: var(--accent); }

/* Mentoria: full-width main card, single column on mobile, two on desktop */
.offer-main {
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  padding: 26px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  margin-top: 8px;
}

.offer-main-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-main-col--results {
  padding-top: 4px;
  border-top: 1px solid rgba(247,245,240,0.12);
}

/* Para empresas: subsection heading */
.offers-companies-head {
  width: 100%;
  max-width: 640px;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offers-companies-tag {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.offers-companies-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.offers-companies-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-dark);
}

.offers-grid--companies {
  margin-top: 18px;
  align-items: stretch;
}

.offers-grid--companies .offer-card {
  height: auto;
}

.offer-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.offer-title--light { color: var(--white); }

.offer-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-dark);
}

.offer-desc--light { color: var(--gray); }

.offer-link {
  margin-top: 4px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  transition: transform .15s ease;
}

.offer-link:hover { transform: translateY(-1px); }

.offer-link--btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 360px;
  padding: 16px 26px;
  border-radius: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.4px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 22px rgba(57,123,255,0.28);
  margin-top: 10px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.offer-link--btn:hover {
  transform: translateY(-2px);
}

.offer-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--gray-dark);
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--accent);
}

.offer-list--light li { color: var(--gray); }
.offer-list--light li::before { color: var(--accent-light); }

.offer-note {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--gray-dark);
  font-style: italic;
}

.offer-note--light { color: var(--gray); }

/* ---------- LEAD MAGNET ---------- */

.lead-card {
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  padding: 26px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--black) 100%);
  border: 1px solid rgba(57,123,255,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.lead-kicker {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

.lead-title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.lead-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray);
}

/* ---------- SOBRE ---------- */

.about-text {
  margin: 0;
  max-width: 420px;
  font-size: 17px;
  line-height: 1.6;
  color: #3A4250;
}

.about-highlight {
  margin: 0;
  max-width: 380px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent);
}

/* ---------- CTA FINAL ---------- */

.final-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: var(--white);
  max-width: 340px;
}

.final-text {
  margin: 0;
  max-width: 340px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.55;
}

.final-note {
  margin: 12px 0 0;
  max-width: 340px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.link-accent {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- FAQ ---------- */

.faq-list {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.faq-item {
  width: 100%;
  box-sizing: border-box;
  padding: 4px 18px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 26px 14px 0;
  position: relative;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-dark);
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .whatsapp-float { right: 28px; bottom: 28px; width: 60px; height: 60px; }
}

/* ---------- FOOTER ---------- */

.footer {
  width: 100%;
  box-sizing: border-box;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--black);
}

.footer-handle {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

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

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--gray);
  background: rgba(247,245,240,0.05);
  border: 1px solid rgba(247,245,240,0.12);
  transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
}

.footer-icon:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
  background: rgba(101,160,255,0.08);
  transform: translateY(-2px);
}

/* ---------- OFFERS GRID WRAPPER ---------- */

.offers-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ============================================================
   RESPONSIVE — tablet and desktop
   Mobile-first rules above stay as the base; every rule below
   only widens containers and switches stacked lists to rows.
   ============================================================ */

/* ----- Tablet (≥640px): breathing room + bigger type ----- */
@media (min-width: 640px) {
  .section-title { font-size: 25px; }
  .final-title { font-size: 26px; }
  .btn, .offer-link--btn { width: auto; }
  .hero-ctas { flex-direction: row; align-items: center; max-width: none; justify-content: center; gap: 22px; }
}

/* ----- Small desktop / large tablet (≥768px) ----- */
@media (min-width: 768px) {
  .section { padding: 64px 40px 68px; }

  .hero { padding: 32px 40px 56px; }
  .hero-grid { gap: 24px; }
  .hero-photo-circle { width: 260px; height: 260px; }
  .hero-headline { max-width: 520px; font-size: 22px; }
  .hero-sub { max-width: 500px; font-size: 17px; }
  .stat-bar { max-width: 700px; padding-top: 30px; }
  .stat-bar-item .stat-number { font-size: 34px; }
  .stat-bar-item .stat-label { font-size: 12px; }

  .section-title { font-size: 30px; max-width: 640px; }
  .section-sub { font-size: 17px; max-width: 560px; }

  .companies-card { max-width: 820px; padding: 30px 34px; }
  .companies-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .companies-label { font-size: 13px; }

  .steps { max-width: 640px; }
  .step-title { font-size: 15px; }
  .step-desc { font-size: 15px; }

  .flow-row {
    max-width: 900px;
    flex-direction: row;
    align-items: stretch;
    gap: 6px;
  }
  .flow-step { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; padding: 16px 12px; }
  .flow-step-label { font-size: 11.5px; }
  .flow-step-desc { font-size: 12px; }
  .flow-arrow { transform: rotate(0deg); flex-shrink: 0; align-self: center; }

  .offers-grid { max-width: 760px; }
  .offer-card { max-width: 760px; padding: 28px 32px; }
  .offer-title { font-size: 21px; }
  .offer-desc { font-size: 17px; }
  .offer-kicker { font-size: 13px; }

  .offer-main { max-width: 820px; padding: 34px 38px; }
  .offers-companies-head { max-width: 760px; }
  .offers-companies-title { font-size: 23px; }

  .lead-card { max-width: 660px; padding: 40px 44px; }
  .lead-title { font-size: 23px; }
  .lead-desc { font-size: 17px; }

  .about-text { max-width: 660px; font-size: 19px; }
  .about-highlight { max-width: 620px; font-size: 19px; }

  .final-title { font-size: 32px; max-width: 600px; }
  .final-text { max-width: 580px; font-size: 18px; }
  .final-note { max-width: 480px; font-size: 14px; }

  .btn, .offer-link--btn { font-size: 15px; padding: 18px 30px; }
}

/* ----- Desktop (≥1024px): real multi-column layout ----- */
@media (min-width: 1024px) {
  .hero { padding: 56px 40px 72px; }
  .hero-photo-circle { width: 300px; height: 300px; }
  .hero-headline { max-width: 620px; font-size: 25px; }
  .hero-sub { max-width: 580px; font-size: 18px; }
  .stat-bar { max-width: 820px; padding-top: 34px; }
  .stat-bar-item .stat-number { font-size: 40px; }
  .stat-bar-item .stat-label { font-size: 12.5px; }

  .brand-name { display: block; }
  .topnav-links { display: flex; align-items: center; gap: 24px; }
  .topnav-links a {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gray);
  }
  .topnav-links a:hover { color: var(--white); }
  .btn--nav { display: inline-flex; }

  .companies-card { max-width: 1080px; padding: 36px 44px; }
  .companies-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  .companies-label { font-size: 14px; }
  .logo-chip { padding: 18px; }

  .section-title { font-size: 34px; }
  .section-sub { font-size: 18px; }

  .flow-row { max-width: 1140px; }
  .flow-step-label { font-size: 12.5px; }
  .flow-step-desc { font-size: 12.5px; }
  .flow-step-icon-wrap { width: 50px; height: 50px; }

  /* Method steps become a horizontal flow with connecting arrows */
  .steps {
    max-width: 1140px;
    flex-direction: row;
    align-items: stretch;
    gap: 6px;
  }
  .step-item { flex-direction: row; flex: 1; align-items: center; }
  .step-card {
    flex-direction: column;
    text-align: left;
    gap: 10px;
    padding: 22px 18px;
    height: 100%;
  }
  .step-title { font-size: 15px; }
  .step-desc { font-size: 15px; }
  .step-arrow {
    transform: rotate(-90deg);
    flex-shrink: 0;
    padding: 0 2px;
  }

  .offer-title { font-size: 22px; }
  .offer-desc { font-size: 17px; }
  .offer-card { padding: 32px 34px; }

  .btn, .offer-link--btn { font-size: 15.5px; padding: 19px 32px; }

  .offer-main {
    max-width: 1080px;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 44px;
  }
  .offer-main-col { flex: 1.15; }
  .offer-main-col--results {
    flex: 1;
    padding-top: 0;
    padding-left: 32px;
    border-top: none;
    border-left: 1px solid rgba(247,245,240,0.14);
    justify-content: center;
  }

  .offers-companies-head { max-width: 820px; }

  .offers-grid {
    max-width: 1080px;
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
  }
  .offer-card {
    max-width: none;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .offer-link { margin-top: auto; padding-top: 8px; }

  .about-text { max-width: 680px; }
  .about-highlight { max-width: 640px; }
}

/* ----- Large desktop (≥1280px) ----- */
@media (min-width: 1280px) {
  .companies-card { max-width: 1180px; padding: 40px 50px; }
  .logo-chip { padding: 22px; }
  .offer-main { max-width: 1180px; }
  .offers-companies-head { max-width: 900px; }
  .steps { max-width: 1200px; }
  .offers-grid { max-width: 1200px; }

  .hero-headline { font-size: 27px; }
  .hero-sub { font-size: 19px; }
  .section-title { font-size: 36px; }
  .section-sub { font-size: 19px; }
  .offer-title { font-size: 23px; }
  .about-text { font-size: 20px; }
  .final-title { font-size: 34px; }
}
