/* ===================================
   ROLLERGRAM INVEST — LIGHT THEME (IKEA YELLOW)
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --yellow: #FFCC00;
  /* Amarillo IKEA */
  --yellow-light: #FFD633;
  --yellow-dark: #E6B800;
  --brand-black: #111111;

  /* Backgrounds */
  --bg-main: #FAFAFC;
  --bg-card: #FFFFFF;
  --bg-alt: #F0F0F5;

  /* Text & Borders */
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #737380;
  --border: #E4E4EB;

  /* Utility */
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 32px rgba(255, 204, 0, 0.25);

  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 840px;
}

.text-center {
  text-align: center;
}

/* The brand color is yellow, so text highlighting should just use standard strong text or yellow background */
.gradient-text {
  color: var(--brand-black);
  background: var(--yellow);
  padding: 0 8px;
  border-radius: 4px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 252, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-roller {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-black);
  letter-spacing: -0.5px;
}

.logo-gram {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow-dark);
  letter-spacing: -0.5px;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--brand-black);
  background: var(--yellow);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-black);
  font-weight: 600;
}

.nav-cta {
  background: var(--brand-black);
  color: var(--yellow);
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: scale(1.04);
  background: var(--text-primary);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--brand-black);
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg-main);
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--brand-black);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1.1;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s ease 0.1s both;
  max-width: 900px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 24px 48px;
  border-radius: var(--radius);
  margin-top: 16px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1;
}

.stat-k {
  font-size: 1.4rem;
  color: var(--yellow-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
  background: var(--yellow);
  color: var(--brand-black);
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow-dark);
}

.btn-secondary {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--brand-black);
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--brand-black);
  background: var(--bg-main);
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--brand-black);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--yellow);
}

.ticker-track span {
  padding: 0 24px;
}

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

.section--dark {
  background: var(--white);
}

.section--invest {
  background: var(--bg-alt);
}

.section--form {
  background: var(--white);
}

.section-label {
  display: inline-block;
  color: var(--brand-black);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--yellow);
  border-radius: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ===== CARDS (Light Theme) ===== */
.problem-grid,
.features-grid,
.tiers-grid,
.returns-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

.problem-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

.problem-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-card--highlight {
  border: 2px solid var(--yellow);
  background: #FFFDF5;
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Market Numbers */
.market-numbers {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px;
  background: var(--brand-black);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
}

.market-num .num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
}

.market-num .num-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FEATURES */
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--white);
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--brand-black);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-status {
  font-size: 0.8rem;
  font-weight: 700;
  color: #008A00;
  background: #E5F5E5;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
}

.feature-status:contains('🔄') {
  color: #A67C00;
  background: #FFF2CC;
}

/* ADVANTAGES */
.advantage-list {
  display: flex;
  flex-direction: column;
}

.advantage-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition);
}

.advantage-item:hover {
  transform: translateX(8px);
}

.adv-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  min-width: 80px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.adv-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 8px;
}

.adv-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* INVESTMENT TIERS */
.invest-hero-nums {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  text-align: center;
}

.invest-big-num .big-amount {
  display: inline-block;
  padding: 0 12px;
  background: var(--yellow);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1.2;
}

.invest-big-num .big-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 12px;
  display: block;
  text-transform: uppercase;
}

.tiers-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow-dark);
}

.tier-card--featured {
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-hover);
  position: relative;
}

.tier-tag {
  display: inline-block;
  background: var(--brand-black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.tier-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-black);
  margin-bottom: 4px;
  line-height: 1;
}

.tier-shares {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.tier-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 40px;
  flex-grow: 1;
}

.tier-perks li {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  gap: 8px;
}

.tier-perks li::before {
  content: '✓';
  color: var(--brand-black);
  font-weight: 900;
  background: var(--yellow);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-btn {
  display: block;
  padding: 16px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  background: var(--bg-alt);
  color: var(--brand-black);
  transition: all var(--transition);
  border: 2px solid transparent;
  width: 100%;
}

.tier-btn:hover {
  background: var(--border);
}

.tier-btn--primary {
  background: var(--yellow);
  border-color: var(--yellow-dark);
}

.tier-btn--primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

/* RETURNS */
.returns-section {
  margin-top: 40px;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.returns-section h3 {
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
  color: var(--brand-black);
}

.returns-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 24px;
}

.return-card {
  padding: 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.return-card:last-child {
  border-right: none;
}

.return-scenario {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.return-timeline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 8px;
}

.return-users,
.return-val {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.return-mult {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-black);
  margin-top: 16px;
  display: inline-block;
  border-bottom: 4px solid var(--yellow);
  line-height: 0.8;
  padding-bottom: 4px;
}

.returns-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ===== FORM ===== */
.invest-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-black);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111111' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--brand-black);
  cursor: pointer;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.form-check label a {
  color: var(--brand-black);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--brand-black);
  color: var(--yellow);
  padding: 20px;
  border: none;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: #FFFDF5;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--brand-black);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  color: var(--brand-black);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-main);
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--brand-black);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] {
  background: var(--yellow);
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
}

.faq-answer p {
  padding: 0 32px 24px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 16px;
}

/* ===== CONTACT & FOOTER ===== */
#contacto {
  background: var(--brand-black);
  color: var(--white);
}

#contacto .section-label {
  color: var(--brand-black);
}

#contacto .section-title {
  color: var(--white);
}

#contacto .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#contacto .btn-primary {
  background: var(--yellow);
  border: none;
}

.footer {
  background: #000000;
  color: var(--white);
  padding: 60px 0 32px;
  border-top: 4px solid var(--yellow);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand .logo-roller {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-legal {
  font-size: 0.8rem !important;
  max-width: 800px;
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  .nav-mobile.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .return-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }

  .return-card:last-child {
    border-bottom: none;
  }

  .returns-section {
    padding: 32px 20px;
  }

  .adv-number {
    font-size: 2.5rem;
  }

  .advantage-item {
    flex-direction: column;
    gap: 16px;
  }
}