/* ============================================
   VOX6 Landing Page — Styles
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --color-bg: #0A0A0A;
  --color-bg-elevated: #111111;
  --color-bg-card: #161616;
  --color-bg-card-hover: #1C1C1C;
  --color-border: #222222;
  --color-border-subtle: #1A1A1A;
  --color-text: #F5F5F5;
  --color-text-secondary: #A0A0A0;
  --color-text-tertiary: #666666;
  --color-primary: #6366F1;
  --color-primary-hover: #818CF8;
  --color-primary-glow: rgba(99, 102, 241, 0.15);
  --color-primary-glow-strong: rgba(99, 102, 241, 0.25);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1120px;
  --container-padding: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ----- Section Base ----- */
.section {
  padding: 120px 0;
  position: relative;
}

.section__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

/* ----- Animations ----- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.15s; }
.fade-in-up:nth-child(5) { transition-delay: 0.2s; }
.fade-in-up:nth-child(6) { transition-delay: 0.25s; }
.fade-in-up:nth-child(7) { transition-delay: 0.3s; }
.fade-in-up:nth-child(8) { transition-delay: 0.35s; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 20px var(--color-primary-glow),
              0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 0 30px var(--color-primary-glow-strong),
              0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 12px 0;
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.nav__links a:hover {
  color: var(--color-text);
}

.nav__cta {
  background-color: var(--color-primary);
  color: #FFFFFF !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast) !important;
}

.nav__cta:hover {
  background-color: var(--color-primary-hover) !important;
  transform: translateY(-1px);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav__mobile-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.nav__mobile-menu.is-open {
  max-height: 300px;
  padding: 16px var(--container-padding);
}

.nav__mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: color var(--transition-fast);
}

.nav__mobile-menu a:last-child {
  border-bottom: none;
}

.nav__mobile-menu a:hover {
  color: var(--color-text);
}

.nav__mobile-menu .nav__cta {
  display: inline-block;
  text-align: center;
  margin-top: 8px;
  border-bottom: none;
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__waveform {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  height: 300px;
  opacity: 0.08;
  pointer-events: none;
}

.hero__waveform-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 3px;
}

.hero__waveform-bars span {
  display: block;
  width: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  animation: waveform 1.5s ease-in-out infinite alternate;
}

.hero__waveform-bars span:nth-child(1)  { height: 20%; animation-delay: 0s; }
.hero__waveform-bars span:nth-child(2)  { height: 35%; animation-delay: 0.05s; }
.hero__waveform-bars span:nth-child(3)  { height: 55%; animation-delay: 0.1s; }
.hero__waveform-bars span:nth-child(4)  { height: 40%; animation-delay: 0.15s; }
.hero__waveform-bars span:nth-child(5)  { height: 70%; animation-delay: 0.2s; }
.hero__waveform-bars span:nth-child(6)  { height: 50%; animation-delay: 0.25s; }
.hero__waveform-bars span:nth-child(7)  { height: 85%; animation-delay: 0.3s; }
.hero__waveform-bars span:nth-child(8)  { height: 60%; animation-delay: 0.35s; }
.hero__waveform-bars span:nth-child(9)  { height: 95%; animation-delay: 0.4s; }
.hero__waveform-bars span:nth-child(10) { height: 75%; animation-delay: 0.45s; }
.hero__waveform-bars span:nth-child(11) { height: 100%; animation-delay: 0.5s; }
.hero__waveform-bars span:nth-child(12) { height: 80%; animation-delay: 0.55s; }
.hero__waveform-bars span:nth-child(13) { height: 90%; animation-delay: 0.6s; }
.hero__waveform-bars span:nth-child(14) { height: 65%; animation-delay: 0.65s; }
.hero__waveform-bars span:nth-child(15) { height: 100%; animation-delay: 0.7s; }
.hero__waveform-bars span:nth-child(16) { height: 85%; animation-delay: 0.75s; }
.hero__waveform-bars span:nth-child(17) { height: 70%; animation-delay: 0.8s; }
.hero__waveform-bars span:nth-child(18) { height: 95%; animation-delay: 0.85s; }
.hero__waveform-bars span:nth-child(19) { height: 60%; animation-delay: 0.9s; }
.hero__waveform-bars span:nth-child(20) { height: 80%; animation-delay: 0.95s; }
.hero__waveform-bars span:nth-child(21) { height: 45%; animation-delay: 1.0s; }
.hero__waveform-bars span:nth-child(22) { height: 90%; animation-delay: 1.05s; }
.hero__waveform-bars span:nth-child(23) { height: 70%; animation-delay: 1.1s; }
.hero__waveform-bars span:nth-child(24) { height: 55%; animation-delay: 1.15s; }
.hero__waveform-bars span:nth-child(25) { height: 85%; animation-delay: 1.2s; }
.hero__waveform-bars span:nth-child(26) { height: 40%; animation-delay: 1.25s; }
.hero__waveform-bars span:nth-child(27) { height: 65%; animation-delay: 1.3s; }
.hero__waveform-bars span:nth-child(28) { height: 90%; animation-delay: 1.35s; }
.hero__waveform-bars span:nth-child(29) { height: 50%; animation-delay: 1.4s; }
.hero__waveform-bars span:nth-child(30) { height: 75%; animation-delay: 1.45s; }
.hero__waveform-bars span:nth-child(31) { height: 100%; animation-delay: 0.05s; }
.hero__waveform-bars span:nth-child(32) { height: 70%; animation-delay: 0.1s; }
.hero__waveform-bars span:nth-child(33) { height: 85%; animation-delay: 0.15s; }
.hero__waveform-bars span:nth-child(34) { height: 55%; animation-delay: 0.2s; }
.hero__waveform-bars span:nth-child(35) { height: 95%; animation-delay: 0.25s; }
.hero__waveform-bars span:nth-child(36) { height: 65%; animation-delay: 0.3s; }
.hero__waveform-bars span:nth-child(37) { height: 80%; animation-delay: 0.35s; }
.hero__waveform-bars span:nth-child(38) { height: 45%; animation-delay: 0.4s; }
.hero__waveform-bars span:nth-child(39) { height: 70%; animation-delay: 0.45s; }
.hero__waveform-bars span:nth-child(40) { height: 90%; animation-delay: 0.5s; }
.hero__waveform-bars span:nth-child(41) { height: 35%; animation-delay: 0.55s; }
.hero__waveform-bars span:nth-child(42) { height: 60%; animation-delay: 0.6s; }
.hero__waveform-bars span:nth-child(43) { height: 80%; animation-delay: 0.65s; }
.hero__waveform-bars span:nth-child(44) { height: 50%; animation-delay: 0.7s; }
.hero__waveform-bars span:nth-child(45) { height: 75%; animation-delay: 0.75s; }
.hero__waveform-bars span:nth-child(46) { height: 40%; animation-delay: 0.8s; }
.hero__waveform-bars span:nth-child(47) { height: 55%; animation-delay: 0.85s; }
.hero__waveform-bars span:nth-child(48) { height: 70%; animation-delay: 0.9s; }
.hero__waveform-bars span:nth-child(49) { height: 30%; animation-delay: 0.95s; }
.hero__waveform-bars span:nth-child(50) { height: 50%; animation-delay: 1.0s; }
.hero__waveform-bars span:nth-child(51) { height: 65%; animation-delay: 1.05s; }
.hero__waveform-bars span:nth-child(52) { height: 40%; animation-delay: 1.1s; }
.hero__waveform-bars span:nth-child(53) { height: 80%; animation-delay: 1.15s; }
.hero__waveform-bars span:nth-child(54) { height: 55%; animation-delay: 1.2s; }
.hero__waveform-bars span:nth-child(55) { height: 35%; animation-delay: 1.25s; }
.hero__waveform-bars span:nth-child(56) { height: 60%; animation-delay: 1.3s; }
.hero__waveform-bars span:nth-child(57) { height: 45%; animation-delay: 1.35s; }
.hero__waveform-bars span:nth-child(58) { height: 25%; animation-delay: 1.4s; }
.hero__waveform-bars span:nth-child(59) { height: 40%; animation-delay: 1.45s; }
.hero__waveform-bars span:nth-child(60) { height: 20%; animation-delay: 1.5s; }

@keyframes waveform {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  margin-bottom: 32px;
}

.hero__signin {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.hero__signin a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.hero__signin a:hover {
  color: var(--color-primary-hover);
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.02);
}

.badge:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
  background: var(--color-primary-glow);
}

.badge svg {
  opacity: 0.7;
}

/* ----- How It Works ----- */
.how-it-works {
  background: var(--color-bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  transition: all var(--transition-base);
  position: relative;
}

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

.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-primary-glow);
  color: var(--color-primary);
  margin-bottom: 24px;
}

.step-card__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ----- Features Section ----- */
.features {
  background: var(--color-bg-elevated);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.feature-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border);
  transform: translateY(-2px);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-glow);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ----- Pricing Section ----- */
.pricing {
  background: var(--color-bg);
  text-align: center;
}

.pricing__card {
  max-width: 440px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.pricing__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-glow);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.pricing__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.pricing__dollar {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing__number {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing__period {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.pricing__features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
}

.pricing__features li:last-child {
  border-bottom: none;
}

.pricing__features li svg {
  flex-shrink: 0;
}

.pricing__note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-text-tertiary);
}

/* ----- Testimonials Section ----- */
.testimonials {
  background: var(--color-bg-elevated);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-border);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  flex: 1;
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-border) 0%, var(--color-text-tertiary) 100%);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

/* ----- Footer ----- */
.footer {
  padding: 60px 0 32px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-subtle);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 8px;
  display: block;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  max-width: 320px;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border-subtle);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet: 768px and below */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section__heading {
    margin-bottom: 48px;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero__headline br {
    display: none;
  }

  .hero__waveform-bars {
    gap: 2px;
  }

  .hero__waveform-bars span {
    width: 2px;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 36px 24px;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Pricing */
  .pricing__card {
    padding: 40px 28px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

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

/* Small phones: 480px and below */
@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .hero__subheadline {
    font-size: 0.95rem;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .hero__badges {
    flex-direction: column;
  }

  .badge {
    width: 100%;
    justify-content: center;
  }

  .pricing__number {
    font-size: 3.5rem;
  }
}

/* Large screens: 1280px and above */
@media (min-width: 1280px) {
  .section {
    padding: 140px 0;
  }

  .steps {
    gap: 40px;
  }

  .features__grid {
    gap: 28px;
  }

  .testimonials__grid {
    gap: 28px;
  }
}

/* Very small screens: 320px */
@media (max-width: 360px) {
  .hero__headline {
    font-size: 1.75rem;
  }

  .section__heading {
    font-size: 1.5rem;
  }

  .step-card {
    padding: 28px 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .pricing__card {
    padding: 32px 20px;
  }
}