:root {
  --orange: #e8825b;
  --orange-light: #f5a882;
  --orange-dark: #d4714a;
  --orange-glow: rgba(232, 130, 91, 0.15);
  --green: #34c759;
  --green-light: #e8f5e9;
  --text-dark: #3d3d3d;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-cream: #fdfcfa;
  --bg-white: #ffffff;
  --bg-light: #f5f5f7;
  --border-light: #e5e5e7;
  --max-width: 1200px;
  --btn-stroke-from: rgba(255, 255, 255, 0.4);
  --btn-stroke-to: rgba(255, 255, 255, 0.1);
  --btn-stroke-width: 1px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(232, 130, 91, 0.3);
  }

  50% {
    box-shadow: 0 4px 30px rgba(232, 130, 91, 0.5);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

nav {
  position: relative;
  top: auto;
  left: auto;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

a {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

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

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-cta {
  background: var(--text-dark);
  color: white !important;
  padding: 0.65rem 1.35rem;
  border-radius: 980px;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

.hero {
  min-height: 100vh;
  display: flex;
}

.hero-left-panel {
  flex: 1;
  background: linear-gradient(155deg, #fefcfa 0%, #fdf6f2 50%, #faf0ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content-wrapper {
  max-width: 520px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-bottom: 1rem;
  animation: fadeIn 0.6s 0.3s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge strong {
  color: var(--orange);
  font-weight: 600;
}

.hero-text-content {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #f6c9b2 0%, #e3834a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .dark-text {
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-description strong {
  color: var(--text-dark);
  font-weight: 600;
}

.hero-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.benefit-item .check-icon {
  color: var(--green);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-item strong {
  color: var(--text-dark);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  color: white;
  padding: 1.1rem 2rem;
  border-radius: 980px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232, 130, 91, 0.35);
  width: 100%;
  transition: all 0.3s;
  position: relative;
  border: var(--btn-stroke-width) solid transparent;
  background-clip: padding-box;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 980px;
  padding: var(--btn-stroke-width);
  background: linear-gradient(
    135deg,
    var(--btn-stroke-from),
    var(--btn-stroke-to)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 130, 91, 0.45);
}

.btn-primary .arrow {
  transition: transform 0.3s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.hero-subtext {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.hero-subtext .check {
  color: var(--green);
  font-weight: 600;
}

.hero-subtext .dot {
  width: 3px;
  height: 3px;
  background: var(--text-light);
  border-radius: 50%;
}

.hero-right-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("bg-kitchen.png") center / cover no-repeat;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(253, 248, 243, 0.2) 0%,
    transparent 35%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  background: var(--orange-glow);
  padding: 0.4rem 0.9rem;
  border-radius: 980px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-top: 0.85rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.essentials {
  padding: 7rem 2rem;
  background: var(--bg-white);
}

.essentials-header {
  max-width: var(--max-width);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.essentials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.video-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.video-link .play-icon {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.5rem;
}

.phone-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #1a1a1a 0%, #0d0d0d 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  display: flex;
}

.carousel-slide {
  min-width: 100%;
  padding: 4rem;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.slide-text {
  flex: 1;
  max-width: 360px;
  color: white;
}

.slide-number {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.slide-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.slide-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.phone-mockup {
  flex-shrink: 0;
}

.phone-frame {
  width: 290px;
  height: 590px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 48px;
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.55);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: white;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.carousel-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s;
}

.carousel-btn:hover {
  color: var(--orange);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .dot.active {
  background: var(--orange);
}

.carousel-pause {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-light);
}

.carousel-pause:hover {
  color: var(--orange);
}

.carousel-pause svg {
  width: 16px;
  height: 16px;
}

.pricing {
  padding: 7rem 2rem;
  background: var(--bg-light);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle span {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.pricing-toggle span.active {
  color: var(--text-dark);
}

.toggle-switch {
  width: 56px;
  height: 30px;
  background: var(--border-light);
  border-radius: 980px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.toggle-switch.annual {
  background: var(--orange);
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.toggle-switch.annual::after {
  transform: translateX(26px);
}

.savings-badge {
  background: #d4edda;
  color: #0d9f3f;
  padding: 0.35rem 0.85rem;
  border-radius: 980px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.4;
  transition: all 0.3s;
}

.savings-badge.active {
  opacity: 1;
  background: #78d669;
  color: #0a8f35;
  box-shadow: 0 0 12px rgba(13, 159, 63, 0.4), 0 0 24px rgba(255, 255, 255, 0.8);
}

.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: white;
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange-glow);
  color: var(--orange);
  padding: 0.45rem 1rem;
  border-radius: 980px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-price .period {
  font-size: 1.1rem;
  color: var(--text-light);
}

.pricing-subtitle {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-light);
}

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

.pricing-features .check {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-cta {
  width: 100%;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  animation: glow 3s ease-in-out infinite;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.faq {
  padding: 7rem 2rem;
  background: var(--bg-white);
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  font-family: inherit;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--orange);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.35rem;
}

.faq-answer p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.75;
}

.final-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--orange) 0%, #d4714a 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.85rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--orange);
  padding: 1rem 2.25rem;
  border-radius: 980px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  position: relative;
  border: var(--btn-stroke-width) solid transparent;
}

.btn-white::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 980px;
  padding: var(--btn-stroke-width);
  background: linear-gradient(
    135deg,
    rgba(232, 130, 91, 0.3),
    rgba(232, 130, 91, 0.1)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
}

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

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: 99;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn-primary {
  width: 100%;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.video-modal.active {
  display: flex;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.modal-content {
  width: 90%;
  max-width: 940px;
  aspect-ratio: 16/9;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .nav-inner {
    padding: 0.875rem 1.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    position: relative;
  }

  .hero-left-panel {
    background: transparent;
    position: relative;
    z-index: 2;
    padding: 7rem 2rem 3rem;
    width: 100%;
  }

  .hero-right-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-image::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.82) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .slide-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .slide-text {
    max-width: 100%;
  }

  .carousel-slide {
    padding: 3rem 2rem;
  }

  .phone-frame {
    width: 280px;
    height: 570px;
    border-radius: 42px;
  }

  .phone-screen {
    border-radius: 34px;
  }

  .footer-inner {
    padding-bottom: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    position: relative;
  }

  .hero-left-panel {
    background: transparent;
    position: relative;
    z-index: 2;
    padding: 6rem 1.25rem 2rem;
  }

  .hero-right-panel {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 1;
  }

  .hero-image::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .hero-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 980px;
    font-size: 0.75rem;
  }

  .hero-text-content {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .benefit-item {
    font-size: 0.8rem;
  }

  .btn-primary {
    font-size: 0.8rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-subtext {
    font-size: 0.75rem;
  }

  .essentials {
    padding: 5rem 1rem;
  }

  .essentials-title {
    font-size: 2rem;
  }

  .video-link {
    font-size: 0.8rem;
  }

  .carousel-container {
    border-radius: 20px;
  }

  .carousel-slide {
    padding: 2rem 1.25rem;
  }

  .slide-text h3 {
    font-size: 1.65rem;
  }

  .slide-text p {
    font-size: 0.8rem;
  }

  .phone-frame {
    width: 260px;
    height: 530px;
    border-radius: 36px;
    padding: 8px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }

  .pricing-toggle span {
    font-size: 0.8rem;
  }

  .pricing-features li {
    font-size: 0.8rem;
  }

  .pricing-subtitle {
    font-size: 0.8rem;
  }

  .pricing-note {
    font-size: 0.75rem;
  }

  .faq-question {
    font-size: 0.8rem;
  }

  .faq-answer p {
    font-size: 0.8rem;
  }

  .pricing,
  .faq {
    padding: 5rem 1.25rem;
  }

  .final-cta {
    padding: 5rem 1.25rem;
  }

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

  .final-cta p {
    font-size: 0.8rem;
  }

  .btn-white {
    font-size: 0.8rem;
    padding: 0.75rem 1.75rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-bottom: 1.75rem;
    font-size: 0.75rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .sticky-cta .btn-primary {
    font-size: 0.8rem;
  }

  .pricing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }

  .savings-badge {
    margin-top: 0.5rem;
  }
}
