/* ============================================
   VERIO LANDING PAGE — Design System & Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary: #06080d;
  --bg-secondary: #0c1017;
  --bg-card: #111620;
  --bg-card-hover: #161d2a;
  --border-color: rgba(74, 222, 128, 0.08);
  --border-hover: rgba(74, 222, 128, 0.2);
  --text-primary: #f0f2f5;
  --text-secondary: #8892a4;
  --text-muted: #5a6478;
  --green-mint: #4ade80;
  --green-dark: #16a34a;
  --green-glow: rgba(74, 222, 128, 0.15);
  --green-glow-strong: rgba(74, 222, 128, 0.3);
  --red-accent: #f87171;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mint);
  margin-bottom: 20px;
  background: var(--green-glow);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-mint) 0%, #a7f3d0 50%, var(--green-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Animated Background Grid --- */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(74, 222, 128, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* --- HEADER / NAV --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(6, 8, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(6, 8, 13, 0.92);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 32px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
}

.header-nav a:hover {
  color: var(--text-primary);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-mint);
  transition: var(--transition);
}

.header-nav a:hover::after {
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--green-mint), #22c55e);
  color: #050a0e;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(74, 222, 128, 0.35), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--green-mint);
  border: 1.5px solid rgba(74, 222, 128, 0.3);
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background: var(--green-glow);
  border-color: var(--green-mint);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO SECTION (Centered, Text-Only) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-mint);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mint);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 44px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* --- PROBLEM SECTION --- */
.problem {
  background: var(--bg-secondary);
}

.problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thought-bubble {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  transition: var(--transition);
}

.thought-bubble:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
}

.thought-bubble .icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.solution-box {
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), rgba(74, 222, 128, 0.02));
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.solution-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-box h3 svg {
  color: var(--green-mint);
}

.solution-box p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* --- FEATURES SECTION --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-mint), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(74, 222, 128, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green-mint);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- INTERACTIVE SLIDER DEMO --- */
.slider-demo {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 600;
}

.slider-label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
}

.slider-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green-mint);
  font-weight: 600;
}

.slider-track-wrapper {
  position: relative;
  height: 12px;
  margin-bottom: 24px;
}

.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.slider-input::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 100px;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-mint);
  cursor: grab;
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.4), 0 0 0 4px rgba(74, 222, 128, 0.1);
  border: 3px solid #0a1018;
  transition: box-shadow 0.2s;
  margin-top: -7px;
}

.slider-input::-webkit-slider-thumb:hover {
  box-shadow: 0 0 24px rgba(74, 222, 128, 0.6), 0 0 0 6px rgba(74, 222, 128, 0.15);
}

.slider-input::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-mint);
  cursor: grab;
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.4), 0 0 0 4px rgba(74, 222, 128, 0.1);
  border: 3px solid #0a1018;
}

.slider-input::-moz-range-track {
  height: 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.result-label {
  width: 110px;
  color: var(--text-secondary);
  font-weight: 500;
  flex-shrink: 0;
}

.result-bar {
  flex: 1;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.result-bar-fill {
  display: block;
  height: 100%;
  border-radius: 100px;
  transition: width 0.2s ease;
}

.razao-fill {
  background: linear-gradient(90deg, var(--green-mint), #22c55e);
}

.desconto-fill {
  background: linear-gradient(90deg, var(--green-mint), #22c55e);
}

.result-pct {
  width: 40px;
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.82rem;
}

.feature-card--slider {
  grid-column: 1 / -1;
}

/* --- WAITLIST SECTION --- */
.waitlist {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.waitlist-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
  text-align: left;
}

.benefit-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.benefit-card .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-glow);
  margin-bottom: 14px;
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.waitlist-form input:focus {
  border-color: var(--green-mint);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
}

.waitlist-form .btn-cta {
  white-space: nowrap;
}

.form-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* --- PRICING TABLE SECTION --- */
.pricing-table-wrapper {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  padding: 20px 28px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table thead th:last-child {
  color: var(--green-mint);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), rgba(74, 222, 128, 0.03));
}

.pricing-table tbody td {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-table tbody td:last-child {
  color: var(--green-mint);
  font-weight: 500;
}

.pricing-table .status-blocked {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pricing-table .status-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-mint);
  font-size: 0.85rem;
}

.pricing-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--green-glow);
  color: var(--green-mint);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

/* --- FOOTER --- */
.footer {
  padding: 60px 0 30px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 28px;
  opacity: 0.7;
}

.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */

/* -- Tablet (1024px) -- */
@media (max-width: 1024px) {
  .problem .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card--slider {
    grid-column: 1 / -1;
  }

  .waitlist-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

/* -- Mobile (768px) -- */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Header / Nav */
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 8px 0;
  }

  .header-nav {
    display: none;
  }

  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 8, 13, 0.97);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .header-nav.active a {
    font-size: 1rem;
    padding: 6px 0;
  }

  .header-nav.active .btn-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    letter-spacing: 1.5px;
  }

  /* Problem */
  .problem .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .thought-bubble {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .solution-box {
    padding: 24px;
    margin-top: 28px;
  }

  .solution-box h3 {
    font-size: 1.1rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .feature-card {
    padding: 28px;
  }

  .feature-card--slider {
    grid-column: 1;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }

  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  /* Slider Demo - Touch Friendly */
  .slider-demo {
    padding: 18px;
    margin-top: 20px;
  }

  .slider-labels {
    margin-bottom: 14px;
  }

  .slider-track-wrapper {
    height: 14px;
  }

  .slider-input {
    height: 14px;
  }

  .slider-input::-webkit-slider-runnable-track {
    height: 14px;
  }

  .slider-input::-webkit-slider-thumb {
    width: 32px;
    height: 32px;
    margin-top: -9px;
  }

  .slider-input::-moz-range-thumb {
    width: 32px;
    height: 32px;
  }

  .slider-input::-moz-range-track {
    height: 14px;
  }

  .result-label {
    width: 80px;
    font-size: 0.75rem;
  }

  .result-pct {
    font-size: 0.75rem;
  }

  .result-bar {
    height: 8px;
  }

  /* Waitlist */
  .waitlist-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 36px 0;
  }

  .benefit-card {
    padding: 22px;
  }

  .benefit-card .benefit-icon {
    width: 42px;
    height: 42px;
  }

  .waitlist-form {
    flex-direction: column;
    gap: 10px;
  }

  .waitlist-form input {
    min-width: 100%;
    padding: 14px 18px;
  }

  .waitlist-form .btn-cta {
    width: 100%;
    justify-content: center;
  }

  /* Pricing Table */
  .pricing-table-wrapper {
    margin-top: 36px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table {
    min-width: 520px;
  }

  .pricing-table thead th {
    padding: 14px 14px;
    font-size: 0.82rem;
  }

  .pricing-table tbody td {
    padding: 14px 14px;
    font-size: 0.82rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 24px;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

/* -- Small Mobile (480px) -- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 1.75rem;
    letter-spacing: -0.03em;
  }

  .hero p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn-cta,
  .hero-actions .btn-cta-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  /* CTA Buttons globally */
  .btn-cta {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  .btn-cta-outline {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  /* Problem */
  .thought-bubble {
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  .thought-bubble .icon {
    display: inline-flex;
    align-items: center;
  }

  .solution-box {
    padding: 20px;
  }

  .solution-box h3 {
    font-size: 1rem;
  }

  .solution-box p {
    font-size: 0.9rem;
  }

  /* Features */
  .feature-card {
    padding: 22px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .slider-demo {
    padding: 14px;
  }

  .slider-labels {
    font-size: 0.75rem;
  }

  .slider-value {
    font-size: 0.78rem;
  }

  .result-item {
    gap: 8px;
  }

  .result-label {
    width: 90px;
    font-size: 0.72rem;
  }

  .result-bar {
    height: 5px;
  }

  .result-pct {
    width: 35px;
    font-size: 0.72rem;
  }

  /* Waitlist */
  .benefit-card {
    padding: 18px;
  }

  .benefit-card h4 {
    font-size: 0.92rem;
  }

  .benefit-card p {
    font-size: 0.82rem;
  }

  .benefit-card .benefit-icon {
    width: 38px;
    height: 38px;
  }

  .benefit-card .benefit-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Pricing */
  .pricing-table {
    min-width: 480px;
  }

  .pricing-table thead th {
    padding: 12px 10px;
    font-size: 0.75rem;
  }

  .pricing-table tbody td {
    padding: 12px 10px;
    font-size: 0.78rem;
  }

  .pricing-tag {
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  /* Footer */
  .footer {
    padding: 32px 0 20px;
  }

  .footer-text {
    font-size: 0.75rem;
  }
}