/* ========================================
   LAUNCH FIFTY — Design System & Styles
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  background: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1F2937;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.7;
  color: #4B5563;
}

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

.section {
  padding: 100px 0;
}

.section--alt {
  background: #F9FAFB;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #F97316;
  color: #FFFFFF;
  border-color: #F97316;
}

.btn--primary:hover {
  background: #EA580C;
  border-color: #EA580C;
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: #1F2937;
  border-color: #D1D5DB;
}

.btn--secondary:hover {
  border-color: #9CA3AF;
  background: #F9FAFB;
}

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


/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  border-bottom-color: #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4B5563;
  transition: color 0.2s ease;
}

.header__nav a:hover {
  color: #1F2937;
}

.header__cta .btn {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* Mobile menu */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1F2937;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto 20px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__trust {
  font-size: 0.8125rem;
  color: #6B7280;
  margin-bottom: 64px;
}

.hero__cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.hero__card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E7EB;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex: 1;
  max-width: 280px;
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero__card img {
  width: 100%;
  height: auto;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
}

.trust-strip__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.trust-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-strip__item {
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4B5563;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
  text-align: center;
}

.problem__header {
  max-width: 620px;
  margin: 0 auto 56px;
}

.problem__header h2 {
  margin-bottom: 16px;
}

.problem__header p {
  font-size: 1.0625rem;
}

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

.problem__card {
  text-align: left;
  padding: 32px 28px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  transition: box-shadow 0.25s ease;
}

.problem__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.problem__card-visual {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  background: black;
}

.problem__card-visual img {
  width: 100%;
  height: auto;
}

.problem__card-emoji {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.problem__card h3 {
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.problem__card p {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
}

.problem__quote {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid grey;
}

.problem__quote img {
  width: 100%;
  height: auto;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
  text-align: center;
}

.solution__inner {
  max-width: 700px;
  margin: 0 auto;
}

.solution__yes {
  width: 120px;
  height: auto;
  margin: 0 auto 28px;
}

.solution h2 {
  margin-bottom: 20px;
}

.solution p {
  font-size: 1.0625rem;
  margin-bottom: 16px;
}

.solution__price {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F97316;
  margin: 20px 0 8px;
}

.solution__price-sub {
  font-size: 0.9375rem;
  color: #6B7280;
  margin-bottom: 32px;
}

/* ========================================
   WHAT YOU GET
   ======================================== */
.features__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.features__header h2 {
  margin-bottom: 16px;
}

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

.feature-card {
  padding: 32px 28px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #FFF7ED;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
}

/* ========================================
   BENEFITS / RESULTS
   ======================================== */
.benefits {
  text-align: center;
}

.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}

.benefits__content h2 {
  margin-bottom: 20px;
}

.benefits__content p {
  font-size: 1.0625rem;
  margin-bottom: 28px;
}

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

.benefits__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: #4B5563;
}

.benefits__list-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits__visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.benefits__visual img {
  border-radius: 12px;
  max-width: 380px;
  width: 100%;
}

/* ========================================
   EXAMPLES
   ======================================== */
.examples__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.examples__header h2 {
  margin-bottom: 16px;
}

.examples__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.example-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.example-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.example-card img {
  width: 100%;
  height: auto;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.how-it-works__header h2 {
  margin-bottom: 16px;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F97316;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.step p {
  font-size: 0.9375rem;
  color: #6B7280;
  max-width: 280px;
  margin: 0 auto;
}

.step__arrow {
  display: none;
  position: absolute;
  right: -24px;
  top: 28px;
  width: 18px;
  opacity: 0.3;
}

/* ========================================
   PRICING / WHY $49
   ======================================== */
.pricing {
  text-align: center;
}

.pricing__header {
  max-width: 600px;
  margin: 0 auto 56px;
}

.pricing__header h2 {
  margin-bottom: 16px;
}

.pricing__comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing__card {
  padding: 36px 28px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  text-align: left;
  position: relative;
}

.pricing__card--highlight {
  border-color: #F97316;
  border-width: 2px;
  background: #FFFBF5;
}

.pricing__card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #F97316;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing__card h3 {
  margin-bottom: 6px;
  font-size: 1.125rem;
}

.pricing__card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing__card-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6B7280;
}

.pricing__card-desc {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 24px;
}

.pricing__card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #4B5563;
}

.pricing__card-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__card-list li.negative {
  color: #6B7280;
}

.pricing__card-list li.negative svg {
  color: #9CA3AF;
}

/* ========================================
   FAQ
   ======================================== */
.faq__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.faq__header h2 {
  margin-bottom: 16px;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid #E5E7EB;
}

.faq__item:first-child {
  border-top: 1px solid #E5E7EB;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1F2937;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: #F97316;
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__answer p {
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.7;
}

/* ========================================
   TIME VALUE CALCULATOR
   ======================================== */
.time-value {
  background: #F9FAFB;
}

.time-value__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.time-value__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.time-value__content h2 {
  margin-bottom: 16px;
}

.time-value__content > p {
  font-size: 1.0625rem;
  color: #6B7280;
  margin-bottom: 40px;
  line-height: 1.7;
}

.time-value__controls {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.time-value__field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 14px;
}

.time-value__slider-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.time-value__slider-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #F97316;
  min-width: 56px;
  text-align: right;
  white-space: nowrap;
}

/* Custom range slider */
.time-value__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.time-value__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F97316;
  border: 3px solid #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.time-value__range::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
}

.time-value__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F97316;
  border: 3px solid #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Numeric input */
.time-value__input-row {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  padding: 0 16px;
  height: 52px;
  max-width: 200px;
  transition: border-color 0.2s ease;
}

.time-value__input-row:focus-within {
  border-color: #F97316;
}

.time-value__currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #6B7280;
  margin-right: 4px;
}

.time-value__input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  width: 80px;
  -moz-appearance: textfield;
}

.time-value__input::-webkit-outer-spin-button,
.time-value__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.time-value__unit {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B7280;
  margin-left: 4px;
}

/* Summary card */
.time-value__card {
  background: #1F2937;
  border-radius: 16px;
  padding: 36px 32px;
  color: #FFFFFF;
}

.time-value__card-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin-bottom: 20px;
}

/* Breakdown rows */
.time-value__card-breakdown {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.time-value__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.time-value__card-label {
  font-size: 0.875rem;
  color: #D1D5DB;
}

.time-value__card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #D1D5DB;
}

.time-value__card-value--highlight {
  color: #F97316;
}

/* Dominant result */
.time-value__card-result {
  text-align: center;
  padding: 28px 0 24px;
}

.time-value__card-result-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #D1D5DB;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.time-value__card-result-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #F97316;
  line-height: 1;
  margin-bottom: 16px;
}

.time-value__card-result-context {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

.time-value__card-cta {
  width: 100%;
  margin-top: 28px;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: 120px 0;
  background: transparent;
}

.final-cta__inner {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.final-cta h2 {
  color: #FFFFFF;
  font-size: 2.75rem;
  margin-bottom: 20px;
  position: relative;
}

.final-cta p {
  color: #D1D5DB;
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}

.final-cta .btn--primary:hover {
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 48px 0;
  border-top: 1px solid #E5E7EB;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo img {
  height: 36px;
  width: auto;
}

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

.footer__links a {
  font-size: 0.875rem;
  color: #6B7280;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #4B5563;
}

.footer__copy {
  font-size: 0.8125rem;
}


/* ========================================
   RESPONSIVE — Tablet
   ======================================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .problem__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .benefits__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits__list {
    align-items: center;
  }

  .pricing__comparison {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .examples__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .time-value__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    max-width: 560px;
    margin: 0 auto;
  }

  .time-value__input-row{
    justify-self: center;
  }

  .final-cta__inner {
    padding: 60px 24px;
  }

  .final-cta h2 {
    font-size: 2.25rem;
  }
}

/* ========================================
   RESPONSIVE — Mobile
   ======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.625rem;
  }

  .section {
    padding: 72px 0;
  }

  /* Header */
  .header__nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .header__nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .header__cta {
    display: none;
  }

  .header__cta.mobile-show {
    display: block;
  }

  .header__mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__card {
    max-width: 320px;
  }

  /* Trust */
  .trust-strip__list {
    gap: 10px;
  }

  .trust-strip__item {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }

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

  /* How It Works */
  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .time-value__card {
    padding: 28px 20px;
  }

  .time-value__card-result-value {
    font-size: 2.5rem;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta__inner {
    padding: 48px 20px;
    border-radius: 20px;
  }

  .final-cta h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .btn--large {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}
