:root {
  --bg-dark: #050608;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 113, 227, 0.4);
  --text-main: #f5f5f7;
  --text-muted: #86868b;
  --text-sub: #a1a1a6;
  --primary-accent: #0071e3;
  --primary-glow: #2997ff;
  --gradient-accent: linear-gradient(135deg, #0071e3 0%, #7000ff 100%);
  --gradient-alert: linear-gradient(135deg, #ff453a 0%, #ff9f0a 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography & Utilities */
.gradient-text {
  background: linear-gradient(135deg, #2997ff 0%, #a259ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-glow);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-sub);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.section-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo {
  font-size: 1.5rem;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand-name .highlight {
  color: var(--primary-glow);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-secondary {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.45);
}

/* Hero Section */
.hero {
  padding: 9rem 1.5rem 5rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  background: rgba(0, 113, 227, 0.12);
  border: 1px solid rgba(0, 113, 227, 0.3);
  color: var(--primary-glow);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-glow);
  box-shadow: 0 0 10px var(--primary-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(41, 151, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(41, 151, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(41, 151, 255, 0); }
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-sub);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 113, 227, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 113, 227, 0.55);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Mockup Container */
.hero-mockup-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.mockup-glass-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 113, 227, 0.15);
  overflow: hidden;
  text-align: left;
}

.mockup-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-content {
  padding: 1.5rem;
}

.alert-box-urgent {
  background: linear-gradient(135deg, rgba(255, 69, 58, 0.15) 0%, rgba(255, 159, 10, 0.15) 100%);
  border: 1px solid rgba(255, 69, 58, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.alert-icon {
  font-size: 1.75rem;
}

.alert-info {
  flex: 1;
}

.alert-info strong {
  display: block;
  font-size: 0.95rem;
  color: #ff453a;
}

.alert-info span {
  font-size: 0.85rem;
  color: var(--text-sub);
}

.alert-action {
  background: #ff453a;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  transition: opacity 0.2s;
}

.alert-action:hover {
  opacity: 0.9;
}

.customer-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.customer-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s, background 0.2s;
}

.customer-card:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.04);
}

.customer-card.warning { border-left: 4px solid #ff9f0a; }
.customer-card.danger { border-left: 4px solid #ff453a; }
.customer-card.info { border-left: 4px solid var(--primary-glow); }

.customer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.customer-details {
  flex: 1;
}

.customer-name {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-sub);
  font-weight: 600;
}
.badge-tag.urgente { background: rgba(255, 69, 58, 0.2); color: #ff453a; }
.badge-tag.novo { background: rgba(41, 151, 255, 0.2); color: var(--primary-glow); }

.customer-msg {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-top: 0.15rem;
}

.customer-time {
  font-size: 0.75rem;
  color: #ffbd2e;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Manifesto Section */
.manifesto {
  padding: 6rem 1.5rem;
  background: radial-gradient(circle at center, rgba(0, 113, 227, 0.08) 0%, rgba(5, 6, 8, 0) 70%);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.manifesto-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.manifesto-text {
  font-size: 1.15rem;
  color: var(--text-sub);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Spotlight */
.features-spotlight {
  padding: 7rem 1.5rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.spotlight-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.spotlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.spotlight-card p {
  color: var(--text-sub);
  font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
  padding: 7rem 1.5rem;
  background: radial-gradient(circle at center, rgba(0, 113, 227, 0.05) 0%, rgba(5, 6, 8, 0) 70%);
  border-top: 1px solid var(--border-card);
}

.benefits-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.benefit-column {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.benefit-column.sellers {
  border-color: rgba(41, 151, 255, 0.25);
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.06) 0%, rgba(5, 6, 8, 0.5) 100%);
}

.benefit-column.managers {
  border-color: rgba(112, 0, 255, 0.25);
  background: linear-gradient(180deg, rgba(112, 0, 255, 0.06) 0%, rgba(5, 6, 8, 0.5) 100%);
}

.column-header {
  margin-bottom: 2rem;
}

.column-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.seller-badge {
  color: var(--primary-glow);
  background: rgba(41, 151, 255, 0.15);
}

.manager-badge {
  color: #a259ff;
  background: rgba(162, 89, 255, 0.15);
}

.column-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.benefit-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s, background 0.2s;
}

.benefit-card:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.04);
}

.benefit-card .b-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Comparison Section */
.comparison {
  padding: 6rem 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-card);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: left;
}

.comparison-card.new {
  border-color: rgba(41, 151, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.08) 0%, rgba(5, 6, 8, 0.4) 100%);
}

.card-header-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ff5f56;
  background: rgba(255, 95, 86, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.card-header-badge.success {
  color: var(--primary-glow);
  background: rgba(41, 151, 255, 0.15);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.flow-step {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-sub);
}

.flow-arrow {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.flow-steps-horizontal {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.flow-step-hero {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}

.flow-step-hero .icon {
  font-size: 2rem;
}

.flow-arrow-right {
  font-size: 1.5rem;
  color: var(--primary-glow);
}

.comparison-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
}

/* Target Audience */
.target-audience {
  padding: 7rem 1.5rem;
}

.audience-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
}

.aud-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* All Features */
.features-all {
  padding: 6rem 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-card);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
}

.f-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* Pricing Section */
.pricing {
  padding: 7rem 1.5rem;
}

.pricing-card-wrapper {
  max-width: 480px;
  margin: 3rem auto 0 auto;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.12) 0%, rgba(5, 6, 8, 0.8) 100%);
  border: 1px solid var(--primary-glow);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 113, 227, 0.25);
  position: relative;
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 99px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.price-box .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-sub);
}

.price-box .amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.price-box .cents {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.price-box .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.trial-highlight {
  background: rgba(41, 151, 255, 0.15);
  border: 1px solid rgba(41, 151, 255, 0.3);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--primary-glow);
  margin-bottom: 1.75rem;
}

.plan-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.btn-pricing {
  display: block;
  width: 100%;
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: 99px;
  box-shadow: 0 8px 25px rgba(0, 113, 227, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 113, 227, 0.55);
}

.no-credit {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Final CTA */
.final-cta {
  padding: 7rem 1.5rem;
  background: radial-gradient(circle at center, rgba(112, 0, 255, 0.12) 0%, rgba(5, 6, 8, 0) 70%);
  border-top: 1px solid var(--border-card);
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--text-sub);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid var(--border-card);
  padding: 4rem 1.5rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 300px;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.link-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.link-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.link-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.swipe-hint {
  display: none;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-glow);
    background: rgba(0, 113, 227, 0.1);
    border: 1px dashed rgba(0, 113, 227, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    margin: 0 auto 1.5rem auto;
    width: fit-content;
  }

  .benefits-dual-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    margin-top: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-glow) transparent;
  }

  .benefits-dual-grid::-webkit-scrollbar {
    height: 6px;
  }
  .benefits-dual-grid::-webkit-scrollbar-thumb {
    background: var(--primary-glow);
    border-radius: 99px;
  }

  .benefit-column {
    flex: 0 0 88%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-width: 280px;
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .flow-steps-horizontal {
    flex-direction: column;
  }
  .flow-arrow-right {
    transform: rotate(90deg);
  }
}
