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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  color: #181620;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.home-logo {
  display: flex;
  gap: 6px;
}
.home-logo > img {
  height: 36px;
  width: auto;
}

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

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

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

/* ===== Top Banner ===== */
.top-banner {
  background: linear-gradient(90deg, #3a1d6e 0%, #1a0a3e 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
}

/* ===== Navigation ===== */
.navbar {
  background: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

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

.logo img {
  height: 40px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #6d6985;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: #7c3aed;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border: none;
}

.btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 18px;
  border-radius: 14px;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  background: #fff;
  text-align: center;
  padding: 60px 0 40px;
}

.hero-title {
  font-family: 'Figtree', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  color: #181620;
  letter-spacing: -1.92px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 31px;
  font-weight: 600;
  color: #181620;
  line-height: 1.55;
  max-width: 645px;
  margin: 0 auto 24px;
  letter-spacing: -0.62px;
}

.highlight-skool, .highlight-circle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 244, 197, 0.5);
  padding: 2px 8px;
  border-radius: 6px;
  vertical-align: middle;
}

.inline-logo {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.hero-checks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  font-size: 23px;
  font-weight: 700;
  color: #181620;
  letter-spacing: -0.46px;
}

/* Hero Video Section */
.hero-video-wrapper {
  max-width: 1052px;
  margin: 0 auto 40px;
}

.hero-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-video {
  width: 100% !important;
  height: auto !important;
  padding-top: 56.26%;
  overflow: hidden;
  position: relative;
  min-width: 200px;
  cursor: pointer;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(237 237 237 / var(--tw-border-opacity));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin: 8px 0;
}

.hero-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}

.hero-video-thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.hero-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 133px;
  height: 133px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-play-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%) scale(1.05);
}

.hero-play-btn svg {
  margin-left: 8px;
}

.hero-video-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Gochi Hand', cursive;
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -1.02px;
  width: 90%;
  max-width: 541px;
  pointer-events: none;
}

/* Pay Once Section */
.hero-pay-once {
  font-size: 34px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -0.68px;
  margin-bottom: 8px;
}

.hero-old-price {
  font-size: 20px;
  font-weight: 700;
  color: #6d6985;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.hero-old-price--strike {
  position: relative;
  margin-left: 4px;
}

.hero-old-price--strike svg {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-old-price .strikethrough {
  text-decoration: line-through;
  position: relative;
}

.hero-cta-gradient {
  background: linear-gradient(65deg, #a34cff 1%, #8e2aff 99%);
  border: 2px solid #b069ff;
  box-shadow: 0 0 0 2px #9e46ff;
  padding: 16px 48px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.54px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.hero-cta-gradient:hover {
  background: linear-gradient(65deg, #9540e8 1%, #7a24e0 99%);
  transform: translateY(-2px);
}

/* Avatar Stack */
.avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.avatar-img {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-img:first-child {
  margin-left: 0;
}

/* Guarantee Text */
.hero-guarantee {
  font-size: 21px;
  font-weight: 500;
  color: #6d6985;
  letter-spacing: -0.42px;
  margin-bottom: 24px;
}

/* Comparison Button */
.btn-comparison {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #b069ff;
  border-radius: 18px;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #6d6985;
  transition: all 0.2s;
  margin-bottom: 48px;
}

.btn-comparison:hover {
  background: rgba(176, 105, 255, 0.08);
}

/* Hero Testimonials */
.hero-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* ===== Communities Section ===== */
.communities-section {
  background: linear-gradient(122deg, rgb(73, 0, 78) 7%, rgb(1, 1, 1) 93%);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  border-radius: 25px;
  margin: 0 50px;
  overflow-y: visible;
}

.communities-bg-decoration {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-70%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(ellipse at center, rgba(155, 66, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.communities-container {
  max-width: 1500px;
  position: relative;
  z-index: 1;
}

.communities-title {
  font-family: 'Figtree', sans-serif;
  font-size: 49px;
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.98px;
  margin-bottom: 8px;
}

.communities-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.53;
  letter-spacing: -0.68px;
  margin-bottom: 48px;
}

.section-title-white {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.section-subtitle-muted {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.community-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.community-card-img {
  height: 182px;
  overflow: hidden;
  margin: 15px 15px 0;
  border-radius: 8px;
}

.community-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  padding: 16px 16px 8px;
  letter-spacing: -0.42px;
  text-align: center;
}

.community-card-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0 16px 20px;
  font-size: 19px;
  color: #6d6985;
  font-weight: 500;
  letter-spacing: -0.38px;
}

.stat-members,
.stat-posts {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-members svg {
  flex-shrink: 0;
}

.green-dot {
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-tutorial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(176, 105, 255, 0.1);
  border-radius: 13px;
  padding: 12px 32px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.42px;
  transition: all 0.2s;
  position: relative;
}

.btn-tutorial::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 7px;
  background: #b069ff;
  border-radius: 0 0 13px 13px;
  filter: blur(4px);
  opacity: 0.6;
}

.btn-tutorial:hover {
  background: rgba(176, 105, 255, 0.1);
  border-color: rgba(176, 105, 255, 0.3);
}

.btn-tutorial svg {
  flex-shrink: 0;
}

/* Character Illustration */
.communities-character {
  position: absolute;
  right: -5%;
  bottom: -200px;
  width: 400px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.communities-character img {
  width: 100%;
  height: auto;
}

/* ===== Paying Section ===== */
.paying-section {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.paying-header {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.paying-title {
  font-family: 'Figtree', sans-serif;
  font-size: 57px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -1.14px;
  line-height: 1.2;
}

.paying-scribble {
  position: absolute;
  top: -10px;
  right: -40px;
  width: 50px;
  height: auto;
}

.paying-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 23px;
  font-weight: 500;
  color: #6d6985;
  letter-spacing: -0.46px;
  margin-bottom: 48px;
}

.paying-subtitle strong {
  font-weight: 700;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #181620;
  margin-bottom: 40px;
  letter-spacing: -1px;
  line-height: 1.2;
}

/* Comparison Table */
.paying-comparison {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 40px;
  position: relative;
  text-align: left;
}

.paying-labels {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.paying-label-header {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #6d6985;
  letter-spacing: -0.4px;
  padding: 16px 0;
  height: 60px;
  display: flex;
  align-items: center;
}

.paying-label-row {
  height: 61px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.36px;
}

.paying-label-row:last-child {
  border-bottom: none;
}

/* Column Styles */
.paying-column {
  display: flex;
  flex-direction: column;
}

.paying-column-communi {
  background: linear-gradient(88deg, #a34cff 1%, #8e2aff 99%);
  border: 2px solid #b069ff;
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.paying-column-competitor {
  padding: 20px 30px;
}

.paying-col-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.paying-logo-communi {
  height: 32px;
  width: auto;
}

.paying-col-header span {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.paying-logo-competitor {
  height: 28px;
  width: auto;
}

.paying-col-header .highlight-skool,
.paying-col-header .highlight-circle {
  padding: 6px 12px;
  border-radius: 8px;
  background: unset;
}

.paying-col-header .inline-logo {
  height: 24px;
}

.paying-col-row {
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paying-column-competitor .paying-col-row {
  color: #181620;
  border-bottom: 1px solid #e5e5e5;
}

.paying-col-row:last-of-type {
  border-bottom: none;
}

.paying-col-row-bold {
  font-weight: 800;
  font-size: 22px;
}

.paying-small {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

/* Lifetime Deal Button */
.btn-lifetime-deal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(72deg, #fbf300 1%, #f0c70e 99%);
  border: 2px solid #bdc910;
  box-shadow: 0 0 0 2px #ffd7a5;
  border-radius: 14px;
  padding: 10px 24px;
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.36px;
  margin-top: 16px;
  transition: all 0.2s ease;
}

.btn-lifetime-deal:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px #ffd7a5, 0 4px 12px rgba(251, 243, 0, 0.3);
}

/* Piggy Bank */
.paying-piggy {
  position: absolute;
  right: -15%;
  bottom: -80px;
  width: 220px;
  z-index: 1;
  pointer-events: none;
}

.paying-piggy img {
  width: 100%;
  height: auto;
}

/* Savings Banner */
.paying-savings-banner {
  background: #fbf7e6;
  border-radius: 10px;
  padding: 18px 32px;
  max-width: 1058px;
  margin: 0 auto;
}

.paying-savings-banner p {
  font-family: 'Figtree', sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: #181620;
  letter-spacing: -0.46px;
  margin: 0;
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding: 60px 0;
  text-align: center;
}

.testimonials-main {
  padding: 80px 0;
}

.testimonials-title {
  font-family: 'Figtree', sans-serif;
  font-size: 57px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -1.14px;
  text-align: center;
  margin-bottom: 48px;
}

/* Video Testimonials */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.video-testimonial-card {
  position: relative;
  border-radius: 21px;
  overflow: hidden;
  aspect-ratio: 336 / 513;
}

.video-testimonial-card iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.video-testimonial-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn img {
  width: 100%;
  height: 100%;
}

/* Text Testimonials with Navigation */
.text-testimonials-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.testimonial-nav {
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.testimonial-nav:hover {
  transform: scale(1.1);
}

.testimonial-nav img {
  width: 100%;
  height: 100%;
}

.text-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  max-width: 1200px;
}

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

.testimonial-card {
  background: #fff;
  border: 2px solid #f2f2fb;
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #181620;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}

.testimonial-card > p {
  font-size: 18px;
  font-weight: 600;
  color: #6d6985;
  line-height: 1.45;
  letter-spacing: -0.36px;
  margin-bottom: 12px;
}

.read-more {
  font-size: 18px;
  font-weight: 700;
  color: #7588e7;
  letter-spacing: -0.36px;
}

.read-more:hover {
  color: #5a6fd6;
}

/* ===== Fee Trap Section ===== */
.fee-trap-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.fee-trap-title {
  font-family: 'Figtree', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -1.08px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.fee-trap-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.68px;
  line-height: 1.15;
  margin-bottom: 48px;
}

/* Freedom Cards */
.freedom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 48px;
}

.freedom-card {
  background: #fff;
  border: 2px solid #f2f2fb;
  border-radius: 18px;
  padding: 32px 24px 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.freedom-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.freedom-card-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* Crop different parts of the sprite for each card */
.freedom-img-1 {
  clip-path: inset(0 66% 0 0);
  transform: scale(1.5) translateX(33%);
}

.freedom-img-2 {
  clip-path: inset(0 33% 0 33%);
  transform: scale(1.5);
}

.freedom-img-3 {
  clip-path: inset(0 0 0 66%);
  transform: scale(1.5) translateX(-33%);
}

.freedom-card p {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #6d6985;
  letter-spacing: -0.48px;
  line-height: 1.6;
  margin: 0;
}

/* Story Text */
.fee-trap-italic {
  font-family: 'Figtree', sans-serif;
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  color: #6d6985;
  letter-spacing: -0.72px;
  line-height: 1.1;
  margin-bottom: 40px;
}

.fee-trap-pain-text {
  max-width: 829px;
  margin: 0 auto 48px;
}

.fee-trap-pain-text p {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #6d6985;
  letter-spacing: -0.48px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.fee-trap-pain-text .pain-bold {
  font-weight: 700;
  margin-bottom: 24px;
}

/* Competitor Cost Cards */
.competitor-cost-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 48px;
}

.competitor-cost-card {
  background: #fff;
  border: 2px solid #f2f2fb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.competitor-logo {
  height: 27px;
  width: auto;
}

.competitor-cost-card p {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.48px;
  margin: 0;
}

/* Pain Points */
.fee-trap-pain-points {
  margin-bottom: 40px;
}

.fee-trap-pain-points p {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #6d6985;
  letter-spacing: -0.48px;
  line-height: 1.6;
  margin: 0;
}

/* Conclusion */
.fee-trap-conclusion {
  margin-top: 32px;
}

.fee-trap-conclusion .conclusion-normal {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.68px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.fee-trap-conclusion .conclusion-bold {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #6d6985;
  letter-spacing: -0.68px;
  line-height: 1.15;
  margin: 0;
}

/* ===== Freedom Section ===== */
.freedom-section {
  background: linear-gradient(101deg, rgb(73, 0, 78) 7%, rgb(1, 1, 1) 93%);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.freedom-intro {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.54px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.freedom-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.freedom-logo-icon {
  height: 93px;
  width: auto;
}

.freedom-logo-text {
  height: 44px;
  width: auto;
}

.freedom-tagline {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.54px;
  line-height: 1.45;
  max-width: 651px;
  margin: 0 auto 24px;
}

.freedom-checks {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.48px;
  margin-bottom: 48px;
}

/* Feature Tabs */
.freedom-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 31px;
  padding: 5px;
  max-width: 993px;
  margin: 0 auto 48px;
}

.freedom-tab {
  font-family: 'Figtree', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.69px;
  padding: 12px 24px;
  border-radius: 31px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.freedom-tab-active {
  background: rgba(255, 255, 255, 0.08);
}

.freedom-tab:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* App Screenshot with Character */
.freedom-app-wrapper {
  position: relative;
  max-width: 1124px;
  margin: 0 auto 48px;
}

.freedom-app-screenshot {
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.freedom-app-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.freedom-character {
  position: absolute;
  right: -180px;
  bottom: -50px;
  width: 538px;
  pointer-events: none;
}

.freedom-character img {
  width: 100%;
  height: auto;
}

/* CTA Block */
.freedom-cta-block {
  margin-bottom: 64px;
}

.freedom-pay-once {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.68px;
  margin-bottom: 8px;
}

.freedom-old-price {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.4px;
  text-decoration: line-through;
  margin-bottom: 16px;
}

.freedom-cta-btn {
  background: linear-gradient(65deg, #a34cff 1%, #8e2aff 99%);
  border: 2px solid #b069ff;
  box-shadow: 0 0 0 2px #9e46ff;
  padding: 16px 48px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.54px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.freedom-cta-btn:hover {
  background: linear-gradient(65deg, #9540e8 1%, #7a24e0 99%);
  transform: translateY(-2px);
}

.freedom-avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.freedom-avatar {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  margin-left: -10px;
}

.freedom-avatar:first-child {
  margin-left: 0;
}

/* Gradient Divider */
.freedom-divider {
  height: 3px;
  max-width: 533px;
  margin: 0 auto 48px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
}

/* Three Key Advantages */
.freedom-advantages-title {
  font-family: 'Figtree', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.88px;
  line-height: 1.27;
  margin-bottom: 24px;
}

.freedom-advantages-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.48px;
  margin-bottom: 48px;
}

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

.freedom-advantage-card {
  background: #fff;
  border: 2px solid #f2f2fb;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.freedom-advantage-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.freedom-advantage-badge {
  width: 51px;
  height: 51px;
  background: #9637ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Figtree', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.freedom-advantage-header h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #181620;
  letter-spacing: -0.46px;
  margin: 0;
}

.freedom-advantage-img {
  border: 2px solid #f2f2fb;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.freedom-advantage-img img {
  width: 100%;
  height: auto;
  display: block;
}

.freedom-advantage-card > p {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.36px;
  line-height: 1.45;
  margin: 0;
}

/* ===== Everything Included Section ===== */
.everything-section {
  background: linear-gradient(90deg, #fef7fd 0%, #f3f8ff 100%);
  border-top: 1px solid #e9f1fc;
  border-bottom: 1px solid #e9f1fc;
  padding: 80px 0;
  text-align: center;
}

.everything-header {
  font-family: 'Figtree', sans-serif;
  font-size: 51px;
  font-weight: 700;
  color: #181620;
  letter-spacing: -1.02px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.everything-logo {
  height: 37px;
  width: auto;
  vertical-align: middle;
}

.everything-title {
  font-family: 'Figtree', sans-serif;
  font-size: 67px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -1.34px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.infinity-icon {
  height: 80px;
  width: auto;
}

/* Everything Feature Grid */
.everything-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1230px;
  margin: 0 auto 80px;
}

.everything-card {
  background: #fff;
  border: 2px solid #f2f2fb;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.everything-card-badge {
  width: 51px;
  height: 51px;
  background: #f1e5ef;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 16px;
}

.everything-card h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 31px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -0.62px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.everything-card p {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.36px;
  line-height: 1.45;
  margin: 0;
}

/* Build Your Community Section */
.build-community-wrapper {
  background: linear-gradient(100deg, rgb(73, 0, 78) 7%, rgb(1, 1, 1) 93%);
  border-radius: 25px;
  margin: 0 50px;
  padding: 80px 0;
  text-align: center;
}

.build-title {
  font-family: 'Figtree', sans-serif;
  font-size: 57px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.14px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.build-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 29px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.58px;
  margin-bottom: 64px;
}

/* Build Steps */
.build-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  text-align: left;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
}

.build-step:last-child {
  margin-bottom: 0;
}

.build-step-right {
  direction: rtl;
}

.build-step-right > * {
  direction: ltr;
}

.build-step-label {
  font-family: 'Gochi Hand', cursive;
  font-size: 27px;
  font-weight: 400;
  color: #ce9aff;
  letter-spacing: -0.54px;
  display: block;
  margin-bottom: 8px;
}

.build-step-content h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.88px;
  margin-bottom: 16px;
}

.build-step-content > p {
  font-family: 'Figtree', sans-serif;
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.46px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.build-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.build-checklist li {
  font-family: 'Figtree', sans-serif;
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.46px;
  line-height: 1.7;
}

.build-checklist-green .green-check {
  color: #00b67a;
}

.build-step-image {
  border-radius: 28px;
  overflow: hidden;
}

.build-step-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* ===== Steps / Math Section ===== */
.steps-section {
  padding: 80px 0;
  text-align: center;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #6d6985;
  margin-bottom: 48px;
  margin-top: -16px;
}

/* Math Section */
.math-section {
  background: #fff;
}

.math-title {
  font-family: 'Figtree', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #181620;
  letter-spacing: -1.28px;
  line-height: 1;
  margin-bottom: 16px;
}

.math-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #181620;
  letter-spacing: -0.68px;
  margin-bottom: 48px;
}

/* Math Cards */
.math-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 48px;
  align-items: end;
}

.math-card {
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.math-card-competitor {
  background: rgba(255, 255, 255, 0.11);
  border: 2px solid #f2f2fb;
  height: 287px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.math-card-communi {
  background: #fff;
  border: 3px solid #9f45ff;
  height: 391px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.math-card-logo {
  height: 27px;
  width: auto;
  margin: 0 auto 16px;
}

.math-card-communi-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.math-communi-icon {
  height: 61px;
  width: auto;
}

.math-communi-text {
  height: 23px;
  width: auto;
}

.math-card-plan {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.48px;
  margin-bottom: 8px;
}

.math-card-price {
  font-family: 'Figtree', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.64px;
  margin-bottom: 8px;
}

.math-card-details {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.48px;
  line-height: 1.6;
  margin: 0;
}

.math-card-btn {
  background: linear-gradient(70deg, #a34cff 1%, #8e2aff 99%);
  border: 2px solid #b069ff;
  box-shadow: 0 0 0 2px #9e46ff;
  padding: 14px 32px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.54px;
  border-radius: 18px;
  margin-top: 20px;
}

.math-card-btn:hover {
  background: linear-gradient(70deg, #9540e8 1%, #7a24e0 99%);
  transform: translateY(-2px);
}

/* Math Conclusion */
.math-conclusion {
  max-width: 893px;
  margin: 0 auto;
}

.math-conclusion-text {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #181620;
  letter-spacing: -0.54px;
  line-height: 2;
  margin-bottom: 24px;
}

.math-conclusion-bold {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #181620;
  letter-spacing: -0.68px;
  margin: 0;
}

/* ===== Advantages Section ===== */
.advantages-section {
  padding: 80px 0;
  text-align: center;
  background: #fafafe;
}

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

.advantage-card {
  background: #fff;
  border: 2px solid #f2f2fb;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(124,58,237,0.06);
}

.advantage-number {
  width: 48px;
  height: 48px;
  background: #7c3aed;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #181620;
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 17px;
  font-weight: 500;
  color: #6d6985;
  line-height: 1.5;
}

/* ===== Math / Savings Section ===== */
.math-section {
  padding: 80px 0;
  text-align: center;
}

.section-subtitle-light {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

.savings-visual {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.savings-bar {
  border-radius: 16px;
  padding: 20px 28px;
  text-align: left;
}

.savings-bar span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.savings-bar small {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.savings-bar-competitor {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.savings-bar-communi {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: 2px solid #b069ff;
}

.best-value {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #fbbf24 !important;
  margin-bottom: 4px;
}

.math-note {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ===== Urgency Section ===== */
.urgency-section {
  padding: 0;
}

.urgency-bg {
  background: linear-gradient(90deg, #fef7fd 0%, #f3f8ff 100%);
  border-top: 1px solid #e9f1fc;
  border-bottom: 1px solid #e9f1fc;
  padding: 80px 0;
}

.urgency-wrapper {
  position: relative;
  max-width: 1540px;
  margin: 0 auto;
}

.urgency-content-box {
  background: #fff;
  border-radius: 25px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 80px;
  text-align: center;
}

.urgency-title {
  font-family: 'Figtree', sans-serif;
  font-size: 51px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -1.02px;
  margin-bottom: 32px;
}

.urgency-text {
  max-width: 893px;
  margin: 0 auto 48px;
}

.urgency-text p {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #181620;
  letter-spacing: -0.54px;
  line-height: 2;
  margin-bottom: 16px;
}

.highlight-yellow {
  background: rgba(255, 244, 197, 0.5);
  padding: 2px 4px;
}

/* Urgency Pricing Card */
.urgency-pricing-card {
  background: #fff;
  border: 2px solid #f2f2fb;
  border-radius: 20px;
  max-width: 639px;
  margin: 0 auto 48px;
  padding: 40px 60px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.urgency-card-intro {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #181620;
  letter-spacing: -0.54px;
  margin-bottom: 16px;
}

.urgency-card-price {
  font-family: 'Figtree', sans-serif;
  font-size: 102px;
  font-weight: 700;
  color: #181620;
  letter-spacing: -2.04px;
  line-height: 1;
  margin-bottom: 32px;
}

.urgency-price-breakdown {
  max-width: 350px;
  margin: 0 auto 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.price-row span {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #181620;
  letter-spacing: -0.54px;
}

.price-row-discount span {
  font-weight: 700;
  color: #00b67a;
}

.price-row-divider {
  height: 2px;
  background: #181620;
  margin: 8px 0;
}

.price-row-total span {
  font-weight: 700;
}

.urgency-discount-note {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #181620;
  letter-spacing: -0.36px;
  margin-bottom: 24px;
}

.urgency-guarantees {
  text-align: center;
}

.urgency-guarantees p {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #181620;
  letter-spacing: -0.36px;
  line-height: 1.8;
  margin: 0;
}

/* Urgency Closing */
.urgency-closing {
  margin-bottom: 32px;
}

.urgency-closing-bold {
  font-family: 'Figtree', sans-serif;
  font-size: 31px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -0.62px;
  margin-bottom: 8px;
}

.urgency-closing-text {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #181620;
  letter-spacing: -0.54px;
}

/* Urgency CTA */
.urgency-cta {
  background: linear-gradient(61deg, #a34cff 1%, #8e2aff 99%);
  border: 2px solid #b069ff;
  box-shadow: 0 0 0 2px #9e46ff;
  padding: 20px 60px;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.58px;
  border-radius: 18px;
  margin-bottom: 48px;
  display: inline-block;
}

.urgency-cta:hover {
  background: linear-gradient(61deg, #9540e8 1%, #7a24e0 99%);
  transform: translateY(-2px);
}

/* Urgency Guarantee Box */
.urgency-guarantee-box {
  background: #fffcf5;
  border: 1px solid #fff0d9;
  border-radius: 25px;
  padding: 48px 60px;
  max-width: 100%;
}

.guarantee-title {
  font-family: 'Figtree', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #181620;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}

.guarantee-text {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 600;
  color: #6d6985;
  letter-spacing: -0.54px;
  line-height: 2;
  margin-bottom: 24px;
}

.guarantee-highlight {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: #00b67a;
  letter-spacing: -0.54px;
}

.guarantee-highlight u {
  text-decoration: underline;
}

/* Urgency Character */
.urgency-character {
  position: absolute;
  right: -50px;
  bottom: -100px;
  width: 500px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

/* ===== Why Built Section ===== */
.why-built-section {
  padding: 60px 0;
  text-align: center;
  background: #fafafe;
}

.communi-text {
  font-family: 'Manrope', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #7c3aed;
  margin-bottom: 16px;
}

.built-checks {
  font-size: 18px;
  font-weight: 700;
  color: #181620;
  margin-top: 16px;
}

/* ===== Saved Section ===== */
.saved-section {
  background: linear-gradient(135deg, #2d1054 0%, #1a0a3e 100%);
  padding: 80px 0;
  text-align: center;
}

/* ===== Stop Renting Section ===== */
.stop-renting-section {
  padding: 80px 0;
  text-align: center;
}

.pricing-note {
  max-width: 500px;
  margin: 32px auto 0;
  background: #f0fdf4;
  border-radius: 16px;
  padding: 24px;
}

.pricing-note p {
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}

.pricing-note p:last-child {
  font-weight: 500;
  color: #6d6985;
  font-size: 16px;
}

/* ===== Getting Section ===== */
.getting-section {
  padding: 80px 0;
  text-align: center;
  background: #fafafe;
}

.value-list {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.value-list p {
  font-size: 18px;
  font-weight: 600;
  color: #181620;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.value-price {
  font-weight: 700;
  color: #6d6985;
}

.total-value {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 3px solid #7c3aed;
}

.total-value span:first-child {
  font-size: 20px;
  font-weight: 700;
}

.total-amount {
  font-size: 28px;
  font-weight: 800;
  color: #7c3aed;
}

/* ===== Get Lifetime / Pricing Section ===== */
.pricing-section {
  padding: 0;
  text-align: center;
}

.pricing-bg {
  background: linear-gradient(99deg, rgb(73, 0, 78) 7%, rgb(1, 1, 1) 93%);
  padding: 80px 0 100px;
}

.pricing-badge {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #00ffb2;
  letter-spacing: 3.84px;
  margin-bottom: 16px;
}

.pricing-title {
  font-family: 'Figtree', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: 1.35;
  margin-bottom: 24px;
}

.pricing-divider {
  width: 533px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  margin: 0 auto 40px;
}

.pricing-content-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 1089px;
  margin: 0 auto;
  padding: 60px 80px;
}

/* Device Mockups */
.pricing-devices {
  position: relative;
  height: 450px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.device-imac {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 505px;
  z-index: 2;
}

.device-macbook {
  position: absolute;
  right: 0;
  top: 200px;
  width: 380px;
  z-index: 3;
}

.device-ipad {
  position: absolute;
  left: 0;
  top: 250px;
  width: 274px;
  z-index: 3;
}

.device-frame {
  width: 100%;
  height: auto;
  display: block;
}

.device-screen {
  position: absolute;
}

.imac-screen {
  top: 5%;
  left: 3.5%;
  width: 92%;
}

.macbook-screen {
  top: 7%;
  left: 12%;
  width: 76%;
}

.ipad-screen {
  top: 7%;
  left: 6%;
  width: 88%;
}

/* Value List */
.pricing-value-list {
  max-width: 780px;
  margin: 0 auto 32px;
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.value-feature {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.48px;
  text-align: left;
}

.value-price {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.48px;
}

.value-priceless {
  font-style: italic;
}

/* Total Line */
.pricing-total-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  margin: 16px 0;
}

.pricing-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.total-label {
  font-family: 'Figtree', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.62px;
}

.total-amount {
  font-family: 'Figtree', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.62px;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 930px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
  position: relative;
}

.pricing-card-featured {
  border: 5px solid #9434ff;
}

.best-value-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(97deg, #9b3eff 1%, #9739ff 99%);
  border-radius: 20px;
  padding: 8px 20px;
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3.24px;
  white-space: nowrap;
}

.card-plan {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4.32px;
  margin-bottom: 8px;
}

.card-price {
  font-family: 'Figtree', sans-serif;
  font-size: 91px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.82px;
  line-height: 1;
  margin-bottom: 8px;
}

.card-details {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.48px;
  margin-bottom: 4px;
}

.card-savings {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}

.card-savings strong {
  font-weight: 700;
}

.card-features {
  text-align: left;
  margin-bottom: 24px;
}

.card-features p {
  font-family: 'Figtree', sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.46px;
  line-height: 2.1;
  margin: 0;
}

.card-btn {
  background: linear-gradient(70deg, #a34cff 1%, #8e2aff 99%);
  border: 2px solid #b069ff;
  box-shadow: 0 0 0 2px #9e46ff;
  padding: 16px 40px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.54px;
  border-radius: 18px;
  width: 100%;
  max-width: 348px;
}

.card-btn:hover {
  background: linear-gradient(70deg, #9540e8 1%, #7a24e0 99%);
  transform: translateY(-2px);
}

/* Trust Badges */
.pricing-section .trust-badges {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.48px;
  margin-bottom: 32px;
}

/* Pricing Avatars */
.pricing-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -8px;
  margin-bottom: 16px;
}

.pricing-avatar {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  margin: 0 -6px;
}

.pricing-avatar-offset {
  transform: rotate(-30deg);
}

/* Trustpilot Row */
.pricing-trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.trustpilot-star-icon {
  height: 25px;
  width: auto;
}

.trustpilot-logo-small {
  height: 18px;
  width: auto;
}

.trustpilot-rating-img {
  height: 28px;
  width: auto;
}

.trustpilot-text {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.32px;
}

/* Join Text */
.pricing-join-text {
  font-family: 'Figtree', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.64px;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* Pricing Testimonials */
.pricing-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1230px;
  margin: 0 auto;
}

.pricing-testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.pricing-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-testimonial-avatar {
  width: 59px;
  height: 59px;
  border-radius: 50%;
}

.pricing-testimonial-header h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.pricing-testimonial-stars {
  height: 21px;
  width: auto;
}

.pricing-testimonial-card p {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.36px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.pricing-read-more {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.36px;
}

.pricing-read-more:hover {
  text-decoration: underline;
}

/* Legacy pricing styles for other sections */
.limited-badge {
  font-size: 16px;
  font-weight: 800;
  color: #7c3aed;
  background: rgba(124,58,237,0.08);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.pricing-tier {
  font-size: 16px;
  font-weight: 800;
  color: #7c3aed;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 15px;
  font-weight: 500;
  color: #6d6985;
  margin-bottom: 8px;
}

.pricing-value {
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 20px;
}

.pricing-amount {
  margin-bottom: 24px;
}

.currency {
  font-size: 28px;
  font-weight: 800;
  color: #181620;
  vertical-align: top;
}

.price {
  font-size: 72px;
  font-weight: 900;
  color: #181620;
  line-height: 1;
}

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

.pricing-features li {
  font-size: 16px;
  font-weight: 600;
  color: #181620;
  padding: 8px 0;
}

.pricing-main-cta {
  margin-top: 16px;
}

/* ===== Guarantee Section ===== */
.guarantee-section {
  padding: 80px 0;
  text-align: center;
  background: #fafafe;
}

.guarantee-desc {
  font-size: 18px;
  font-weight: 500;
  color: #6d6985;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.guarantee-bold {
  font-size: 20px;
  font-weight: 700;
  color: #181620;
}

/* ===== Final CTA Section ===== */
.final-cta-section {
  background: linear-gradient(135deg, #2d1054 0%, #1a0a3e 100%);
  padding: 80px 0;
  text-align: center;
}

.final-pricing {
  max-width: 400px;
  margin: 32px auto;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px;
}

.final-pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.strikethrough {
  text-decoration: line-through;
  color: rgba(255,255,255,0.4);
}

.discount {
  color: #4ade80;
  font-weight: 700;
}

.final-pricing-total {
  border-top: 2px solid rgba(255,255,255,0.15);
  margin-top: 8px;
  padding-top: 16px;
}

.final-price {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
}

.final-checks {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 24px;
}

.final-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.trust-badges {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

.trust-badges-dark {
  font-size: 15px;
  font-weight: 600;
  color: #6d6985;
  margin-bottom: 24px;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: linear-gradient(180deg, #1a0a3e 0%, #2d1054 100%);
  padding: 80px 0;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e1eaf8;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #0f0c26;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: #0f0c26;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 32px 24px 64px;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  font-size: 17px;
  font-weight: 500;
  color: #6d6985;
  line-height: 1.6;
}

/* ===== Support Section ===== */
.support-section {
  padding: 80px 0;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: #000;
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 47px;
  height: auto;
}

.footer-logo-text {
  width: 164px;
  height: auto;
}

.footer-desc {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 380px;
}

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

.footer-col h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  transition: color 0.2s;
}

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

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
}

.social-icon img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.social-icon:hover img {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #fff;
}

/* ===== Testimonials Alt ===== */
.testimonials-alt {
  background: #fafafe;
}

/* ===== Final Section (Testimonials + FAQ + CTA) ===== */
.final-section {
  padding: 0;
}

.final-bg {
  background: linear-gradient(100deg, rgb(73, 0, 78) 7%, rgb(1, 1, 1) 93%);
  padding: 80px 0 120px;
}

/* Final Testimonials */
.final-testimonials-title {
  font-family: 'Figtree', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.08px;
  text-align: center;
  margin-bottom: 48px;
}

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

.final-testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.final-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.final-testimonial-avatar {
  width: 59px;
  height: 59px;
  border-radius: 50%;
}

.final-testimonial-header h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.final-testimonial-stars {
  height: 21px;
  width: auto;
}

.final-testimonial-card p {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.36px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.final-read-more {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.36px;
}

.final-read-more:hover {
  text-decoration: underline;
}

/* Final Divider */
.final-divider {
  width: 943px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  margin: 48px auto;
  opacity: 0.6;
}

/* Final FAQ */
.final-faq-wrapper {
  position: relative;
  max-width: 927px;
  margin: 0 auto;
  text-align: center;
}

.final-faq-title {
  font-family: 'Manrope', sans-serif;
  font-size: 47px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.faq-arrow-decoration {
  position: absolute;
  right: -120px;
  top: 40px;
  width: 100px;
  height: auto;
}

.final-faq-box {
  background: #fff;
  border: 1px solid #e1eaf8;
  border-radius: 30px;
  padding: 24px 48px;
  text-align: left;
}

.final-faq-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e1eaf8;
}

.final-faq-item:last-child {
  border-bottom: none;
}

.faq-plus-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.final-faq-item span {
  font-family: 'Manrope', sans-serif;
  font-size: 23px;
  font-weight: 500;
  color: #0f0c26;
}

/* Final CTA */
.final-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.final-cta-content {
  position: relative;
}

.cta-arrow-decoration {
  position: absolute;
  left: -80px;
  top: -60px;
  width: 100px;
  height: auto;
  transform: scaleY(-1);
}

.final-cta-title {
  font-family: 'Figtree', sans-serif;
  font-size: 51px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.02px;
  margin-bottom: 16px;
}

.final-cta-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.54px;
  line-height: 2;
  margin-bottom: 32px;
}

.final-cta-subtitle strong {
  font-weight: 700;
}

.final-cta-btn {
  background: linear-gradient(62deg, #a34cff 1%, #8e2aff 99%);
  border: 2px solid #b069ff;
  box-shadow: 0 0 0 2px #9e46ff;
  padding: 22px 60px;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.58px;
  border-radius: 18px;
  display: inline-block;
  margin-bottom: 24px;
}

.final-cta-btn:hover {
  background: linear-gradient(62deg, #9540e8 1%, #7a24e0 99%);
  transform: translateY(-2px);
}

.final-discount-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 19px;
  padding: 16px 24px;
  display: inline-block;
  margin-bottom: 24px;
}

.final-discount-box p {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: 1.5;
  margin: 0;
}

.final-trust-badges {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.4px;
}

/* Final CTA Visual */
.final-cta-visual {
  position: relative;
}

.final-app-screenshot {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 19px;
  border: 12px solid rgba(255, 255, 255, 0.12);
}

.final-character {
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 450px;
  height: auto;
  z-index: 10;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-checks {
    font-size: 18px;
    gap: 20px;
  }

  .hero-video-text {
    font-size: 26px;
  }

  .hero-play-btn {
    width: 100px;
    height: 100px;
  }

  .hero-cta-gradient {
    font-size: 22px;
    padding: 14px 36px;
  }

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

  .hero-testimonials .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-title {
    font-size: 42px;
  }

  .video-testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .text-testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .fee-trap-title {
    font-size: 42px;
  }

  .fee-trap-subtitle {
    font-size: 28px;
  }

  .fee-trap-italic {
    font-size: 30px;
  }

  .fee-trap-pain-text p,
  .fee-trap-pain-points p,
  .competitor-cost-card p {
    font-size: 20px;
  }

  .fee-trap-conclusion .conclusion-normal,
  .fee-trap-conclusion .conclusion-bold {
    font-size: 28px;
  }

  .freedom-intro,
  .freedom-tagline {
    font-size: 22px;
  }

  .freedom-checks {
    font-size: 20px;
  }

  .freedom-logo-icon {
    height: 70px;
  }

  .freedom-logo-text {
    height: 36px;
  }

  .freedom-tabs {
    flex-wrap: wrap;
    gap: 8px;
    max-width: 800px;
  }

  .freedom-tab {
    font-size: 18px;
    padding: 10px 18px;
  }

  .freedom-character {
    width: 400px;
    right: -120px;
  }

  .freedom-pay-once {
    font-size: 28px;
  }

  .freedom-cta-btn {
    font-size: 22px;
    padding: 14px 36px;
  }

  .freedom-advantages-title {
    font-size: 36px;
  }

  .freedom-advantages-subtitle {
    font-size: 20px;
  }

  .everything-header {
    font-size: 36px;
  }

  .everything-logo {
    height: 28px;
  }

  .everything-title {
    font-size: 48px;
  }

  .infinity-icon {
    height: 60px;
  }

  .everything-card h3 {
    font-size: 24px;
  }

  .build-community-wrapper {
    margin: 0 20px;
  }

  .build-title {
    font-size: 42px;
  }

  .build-subtitle {
    font-size: 22px;
  }

  .build-step-content h3 {
    font-size: 32px;
  }

  .build-step-content > p,
  .build-checklist li {
    font-size: 18px;
  }

  .math-title {
    font-size: 48px;
  }

  .math-subtitle {
    font-size: 26px;
  }

  .math-card-plan,
  .math-card-details {
    font-size: 20px;
  }

  .math-card-price {
    font-size: 28px;
  }

  .math-card-btn {
    font-size: 22px;
    padding: 12px 28px;
  }

  .math-conclusion-text {
    font-size: 22px;
  }

  .math-conclusion-bold {
    font-size: 28px;
  }

  /* Pricing Section 1024px */
  .pricing-title {
    font-size: 48px;
  }

  .pricing-badge {
    font-size: 20px;
  }

  .pricing-divider {
    width: 400px;
  }

  .pricing-content-box {
    padding: 48px 50px;
  }

  .pricing-devices {
    height: 380px;
  }

  .device-imac {
    width: 420px;
  }

  .device-macbook {
    width: 320px;
  }

  .device-ipad {
    width: 230px;
  }

  .value-feature,
  .value-price {
    font-size: 20px;
  }

  .total-label,
  .total-amount {
    font-size: 26px;
  }

  .card-price {
    font-size: 72px;
  }

  .card-plan,
  .card-details,
  .card-savings {
    font-size: 20px;
  }

  .card-features p {
    font-size: 19px;
  }

  .card-btn {
    font-size: 22px;
    padding: 14px 32px;
  }

  .pricing-section .trust-badges {
    font-size: 20px;
  }

  .pricing-join-text {
    font-size: 26px;
  }

  .pricing-testimonial-card p {
    font-size: 16px;
  }

  /* Urgency Section 1024px */
  .urgency-title {
    font-size: 42px;
  }

  .urgency-text p {
    font-size: 22px;
  }

  .urgency-content-box {
    padding: 48px 50px;
  }

  .urgency-pricing-card {
    padding: 32px 40px;
  }

  .urgency-card-intro {
    font-size: 22px;
  }

  .urgency-card-price {
    font-size: 80px;
  }

  .price-row span {
    font-size: 22px;
  }

  .urgency-closing-bold {
    font-size: 26px;
  }

  .urgency-closing-text {
    font-size: 22px;
  }

  .urgency-cta {
    font-size: 24px;
    padding: 18px 48px;
  }

  .guarantee-title {
    font-size: 26px;
  }

  .guarantee-text {
    font-size: 22px;
  }

  .guarantee-highlight {
    font-size: 22px;
  }

  .urgency-character {
    width: 400px;
    right: -100px;
  }

  /* Final Section 1024px */
  .final-testimonials-title {
    font-size: 42px;
  }

  .final-testimonials-grid {
    gap: 16px;
  }

  .final-testimonial-card p {
    font-size: 16px;
  }

  .final-faq-title {
    font-size: 36px;
  }

  .faq-arrow-decoration {
    display: none;
  }

  .final-faq-box {
    padding: 20px 32px;
  }

  .final-faq-item span {
    font-size: 20px;
  }

  .final-cta-title {
    font-size: 42px;
  }

  .final-cta-subtitle {
    font-size: 22px;
  }

  .final-cta-btn {
    font-size: 24px;
    padding: 18px 48px;
  }

  .final-discount-box p {
    font-size: 20px;
  }

  .final-character {
    width: 350px;
    right: -30px;
  }

  .cta-arrow-decoration {
    display: none;
  }

  .communities-section {
    margin: 0 16px;
    padding: 70px 0 100px;
  }

  .communities-title {
    font-size: 40px;
  }

  .communities-subtitle {
    font-size: 26px;
  }

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

  .communities-character {
    width: 280px;
    right: -40px;
  }

  .paying-title {
    font-size: 42px;
  }

  .paying-subtitle {
    font-size: 20px;
  }

  .paying-comparison {
    grid-template-columns: 140px 1fr 1fr 1fr;
    overflow-x: auto;
  }

  .paying-label-header {
    font-size: 16px;
  }

  .paying-col-row {
    font-size: 16px;
  }

  .paying-col-row-bold {
    font-size: 18px;
  }

  .paying-piggy {
    width: 160px;
    right: -40px;
  }

  .paying-savings-banner p {
    font-size: 18px;
  }

  .section-title,
  .section-title-white,
  .section-title-purple {
    font-size: 36px;
  }

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

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

  .comparison-table {
    overflow-x: auto;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-row-reverse {
    direction: ltr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer 1024px */
  .footer-main {
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  .footer-col a {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-checks {
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
  }

  .hero-video-text {
    font-size: 20px;
    bottom: 24px;
  }

  .hero-play-btn {
    width: 80px;
    height: 80px;
  }

  .hero-play-btn svg {
    width: 24px;
    height: 20px;
  }

  .hero-pay-once {
    font-size: 26px;
  }

  .hero-cta-gradient {
    font-size: 18px;
    padding: 14px 28px;
  }

  .hero-testimonials {
    grid-template-columns: 1fr;
  }

  .hero-testimonials .testimonial-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .hero-guarantee {
    font-size: 16px;
  }

  .communities-section {
    margin: 0 12px;
    padding: 60px 0 80px;
    border-radius: 18px;
  }

  .communities-title {
    font-size: 32px;
  }

  .communities-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .community-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .community-card h3 {
    font-size: 18px;
  }

  .community-card-stats {
    font-size: 16px;
    gap: 20px;
  }

  .btn-tutorial {
    font-size: 16px;
    padding: 10px 24px;
  }

  .communities-character {
    display: none;
  }

  .paying-title {
    font-size: 32px;
  }

  .paying-scribble {
    display: none;
  }

  .paying-subtitle {
    font-size: 18px;
    padding: 0 16px;
  }

  .paying-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .paying-labels {
    display: none;
  }

  .paying-column {
    border-radius: 18px;
    max-width: 350px;
    margin: 0 auto;
  }

  .paying-column-competitor {
    background: #f8f8ff;
    border: 2px solid #f2f2fb;
    padding: 20px;
  }

  .paying-col-row {
    height: 50px;
    font-size: 16px;
  }

  .paying-piggy {
    display: none;
  }

  .paying-savings-banner {
    padding: 16px 20px;
  }

  .paying-savings-banner p {
    font-size: 16px;
  }

  .section-title,
  .section-title-white,
  .section-title-purple {
    font-size: 28px;
  }

  .community-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .video-testimonials {
    grid-template-columns: 1fr;
    max-width: 336px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-testimonials-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-nav {
    display: none;
  }

  .text-testimonials {
    grid-template-columns: 1fr;
    max-width: 394px;
  }

  .fee-trap-title {
    font-size: 32px;
  }

  .fee-trap-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .freedom-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .freedom-card-img {
    height: 150px;
  }

  .freedom-card p {
    font-size: 20px;
  }

  .fee-trap-italic {
    font-size: 24px;
  }

  .fee-trap-pain-text p,
  .fee-trap-pain-points p {
    font-size: 18px;
  }

  .competitor-cost-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .competitor-cost-card p {
    font-size: 18px;
  }

  .fee-trap-conclusion .conclusion-normal,
  .fee-trap-conclusion .conclusion-bold {
    font-size: 24px;
  }

  .freedom-intro,
  .freedom-tagline {
    font-size: 18px;
  }

  .freedom-checks {
    font-size: 16px;
    line-height: 1.8;
  }

  .freedom-logo-icon {
    height: 60px;
  }

  .freedom-logo-text {
    height: 30px;
  }

  .freedom-tabs {
    flex-direction: column;
    max-width: 300px;
    border-radius: 18px;
  }

  .freedom-tab {
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .freedom-character {
    display: none;
  }

  .freedom-pay-once {
    font-size: 24px;
  }

  .freedom-cta-btn {
    font-size: 18px;
    padding: 14px 28px;
  }

  .freedom-advantages-title {
    font-size: 28px;
  }

  .freedom-advantages-subtitle {
    font-size: 18px;
  }

  .freedom-advantages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .freedom-advantage-header h3 {
    font-size: 20px;
  }

  .freedom-advantage-card > p {
    font-size: 16px;
  }

  .everything-header {
    font-size: 28px;
    flex-direction: column;
    gap: 8px;
  }

  .everything-logo {
    height: 24px;
  }

  .everything-title {
    font-size: 36px;
    flex-direction: column;
    gap: 12px;
  }

  .infinity-icon {
    height: 50px;
  }

  .everything-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .everything-card h3 {
    font-size: 22px;
  }

  .everything-card p {
    font-size: 16px;
  }

  .build-community-wrapper {
    margin: 0 12px;
    padding: 60px 0;
    border-radius: 18px;
  }

  .build-title {
    font-size: 32px;
  }

  .build-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .build-step {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .build-step-right {
    direction: ltr;
  }

  .build-step-content h3 {
    font-size: 28px;
  }

  .build-step-content > p,
  .build-checklist li {
    font-size: 16px;
  }

  .build-step-label {
    font-size: 22px;
  }

  .math-title {
    font-size: 36px;
  }

  .math-subtitle {
    font-size: 20px;
  }

  .math-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .math-card-competitor,
  .math-card-communi {
    height: auto;
    padding: 32px 24px;
  }

  .math-card-plan,
  .math-card-details {
    font-size: 18px;
  }

  .math-card-price {
    font-size: 26px;
  }

  .math-card-btn {
    font-size: 18px;
    padding: 12px 24px;
  }

  .math-conclusion-text {
    font-size: 18px;
  }

  .math-conclusion-bold {
    font-size: 24px;
  }

  /* Pricing Section 768px */
  .pricing-title {
    font-size: 36px;
  }

  .pricing-badge {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .pricing-divider {
    width: 280px;
  }

  .pricing-content-box {
    padding: 32px 24px;
    margin: 0 12px;
  }

  .pricing-devices {
    height: 280px;
    margin-bottom: 32px;
  }

  .device-imac {
    width: 300px;
  }

  .device-macbook {
    width: 200px;
    top: 140px;
  }

  .device-ipad {
    width: 160px;
    top: 160px;
  }

  .pricing-value-list {
    padding: 0 12px;
  }

  .value-feature,
  .value-price {
    font-size: 16px;
  }

  .total-label,
  .total-amount {
    font-size: 22px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 48px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .card-price {
    font-size: 64px;
  }

  .card-plan,
  .card-details,
  .card-savings {
    font-size: 18px;
  }

  .card-features p {
    font-size: 17px;
  }

  .card-btn {
    font-size: 18px;
    padding: 14px 24px;
  }

  .best-value-badge {
    font-size: 14px;
    padding: 6px 16px;
    letter-spacing: 2px;
  }

  .pricing-section .trust-badges {
    font-size: 16px;
    line-height: 1.6;
  }

  .pricing-avatars {
    flex-wrap: wrap;
  }

  .pricing-join-text {
    font-size: 22px;
  }

  .pricing-testimonials {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-testimonial-card {
    padding: 20px;
  }

  .pricing-testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .pricing-testimonial-header h4 {
    font-size: 18px;
  }

  .pricing-testimonial-card p {
    font-size: 15px;
  }

  /* Urgency Section 768px */
  .urgency-content-box {
    padding: 40px 24px;
    margin: 0 12px;
  }

  .urgency-title {
    font-size: 32px;
  }

  .urgency-text p {
    font-size: 18px;
    line-height: 1.8;
  }

  .urgency-pricing-card {
    padding: 28px 24px;
  }

  .urgency-card-intro {
    font-size: 18px;
  }

  .urgency-card-price {
    font-size: 64px;
  }

  .price-row span {
    font-size: 18px;
  }

  .urgency-discount-note {
    font-size: 16px;
  }

  .urgency-guarantees p {
    font-size: 16px;
  }

  .urgency-closing-bold {
    font-size: 22px;
  }

  .urgency-closing-text {
    font-size: 18px;
  }

  .urgency-cta {
    font-size: 20px;
    padding: 16px 36px;
  }

  .urgency-guarantee-box {
    padding: 32px 24px;
  }

  .guarantee-title {
    font-size: 22px;
  }

  .guarantee-text {
    font-size: 18px;
  }

  .guarantee-highlight {
    font-size: 18px;
  }

  .urgency-character {
    display: none;
  }

  /* Final Section 768px */
  .final-testimonials-title {
    font-size: 32px;
  }

  .final-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-testimonial-card {
    padding: 20px;
  }

  .final-divider {
    width: 100%;
    max-width: 500px;
  }

  .final-faq-title {
    font-size: 28px;
  }

  .final-faq-box {
    padding: 16px 24px;
  }

  .final-faq-item span {
    font-size: 18px;
  }

  .final-cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-title {
    font-size: 32px;
  }

  .final-cta-subtitle {
    font-size: 18px;
  }

  .final-cta-btn {
    font-size: 20px;
    padding: 16px 36px;
  }

  .final-discount-box p {
    font-size: 18px;
  }

  .final-trust-badges {
    font-size: 16px;
  }

  .final-cta-visual {
    order: -1;
    margin-bottom: 32px;
  }

  .final-app-screenshot {
    max-width: 100%;
  }

  .final-character {
    display: none;
  }

  .feature-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .feature-tab {
    padding: 8px 16px;
    font-size: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .comparison-col {
    padding: 10px 8px;
    font-size: 13px;
  }

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

  .paying-cards {
    flex-direction: column;
    align-items: center;
  }

  /* Footer 768px */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer-col a {
    font-size: 18px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .communi-text {
    font-size: 44px;
  }

  .top-banner {
    font-size: 13px;
    padding: 8px 12px;
  }

  .navbar-inner {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .savings-visual {
    padding: 0 16px;
  }

  .section-subtitle-muted {
    font-size: 22px;
  }

  .avatar-stack {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .inline-logo {
    height: 16px;
  }

  .hero-video-text {
    font-size: 16px;
    bottom: 16px;
    line-height: 1.3;
  }

  .hero-play-btn {
    width: 60px;
    height: 60px;
  }

  .hero-play-btn svg {
    width: 18px;
    height: 15px;
  }

  .hero-pay-once {
    font-size: 22px;
  }

  .hero-old-price {
    font-size: 16px;
  }

  .hero-cta-gradient {
    font-size: 16px;
    padding: 12px 24px;
  }

  .btn-comparison {
    font-size: 14px;
    padding: 8px 16px;
  }

  .communities-title {
    font-size: 26px;
  }

  .communities-subtitle {
    font-size: 18px;
  }

  .community-card-img {
    height: 150px;
  }

  .paying-title {
    font-size: 26px;
  }

  .paying-subtitle {
    font-size: 16px;
  }

  .paying-savings-banner p {
    font-size: 14px;
  }

  .btn-lifetime-deal {
    font-size: 16px;
    padding: 10px 20px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 16px;
  }

  .section-title,
  .section-title-white,
  .section-title-purple {
    font-size: 24px;
  }

  .communi-text {
    font-size: 36px;
  }

  .price {
    font-size: 56px;
  }

  .testimonials-title {
    font-size: 26px;
  }

  .video-testimonial-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .fee-trap-title {
    font-size: 26px;
  }

  .fee-trap-subtitle {
    font-size: 18px;
  }

  .freedom-card-img {
    height: 120px;
  }

  .freedom-card p {
    font-size: 18px;
  }

  .fee-trap-italic {
    font-size: 20px;
  }

  .fee-trap-pain-text p,
  .fee-trap-pain-points p,
  .competitor-cost-card p {
    font-size: 16px;
  }

  .fee-trap-conclusion .conclusion-normal,
  .fee-trap-conclusion .conclusion-bold {
    font-size: 20px;
  }

  .freedom-intro,
  .freedom-tagline {
    font-size: 16px;
  }

  .freedom-checks {
    font-size: 14px;
  }

  .freedom-logo-icon {
    height: 50px;
  }

  .freedom-logo-text {
    height: 24px;
  }

  .freedom-tab {
    font-size: 14px;
  }

  .freedom-pay-once {
    font-size: 20px;
  }

  .freedom-old-price {
    font-size: 16px;
  }

  .freedom-cta-btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  .freedom-advantages-title {
    font-size: 22px;
  }

  .freedom-advantages-subtitle {
    font-size: 16px;
  }

  .freedom-advantage-badge {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .freedom-advantage-header h3 {
    font-size: 18px;
  }

  .everything-header {
    font-size: 22px;
  }

  .everything-logo {
    height: 20px;
  }

  .everything-title {
    font-size: 28px;
  }

  .infinity-icon {
    height: 40px;
  }

  .everything-card h3 {
    font-size: 20px;
  }

  .build-title {
    font-size: 26px;
  }

  .build-subtitle {
    font-size: 16px;
  }

  .build-step-content h3 {
    font-size: 24px;
  }

  .build-step-content > p,
  .build-checklist li {
    font-size: 14px;
  }

  .build-step-label {
    font-size: 18px;
  }

  .math-title {
    font-size: 28px;
  }

  .math-subtitle {
    font-size: 16px;
  }

  .math-card-plan,
  .math-card-details {
    font-size: 16px;
  }

  .math-card-price {
    font-size: 24px;
  }

  .math-card-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .math-communi-icon {
    height: 45px;
  }

  .math-communi-text {
    height: 18px;
  }

  .math-conclusion-text {
    font-size: 16px;
  }

  .math-conclusion-bold {
    font-size: 20px;
  }

  /* Pricing Section 480px */
  .pricing-bg {
    padding: 60px 0 80px;
  }

  .pricing-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .pricing-badge {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .pricing-divider {
    width: 200px;
  }

  .pricing-content-box {
    padding: 24px 16px;
    margin: 0 8px;
  }

  .pricing-devices {
    height: 200px;
    margin-bottom: 24px;
  }

  .device-imac {
    width: 220px;
  }

  .device-macbook {
    width: 150px;
    top: 100px;
  }

  .device-ipad {
    width: 120px;
    top: 120px;
  }

  .value-item {
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .value-feature {
    font-size: 14px;
  }

  .value-price {
    font-size: 14px;
    text-align: left;
  }

  .pricing-total {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .total-label,
  .total-amount {
    font-size: 20px;
  }

  .card-price {
    font-size: 52px;
  }

  .card-plan {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .card-details,
  .card-savings {
    font-size: 16px;
  }

  .card-features p {
    font-size: 15px;
  }

  .card-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .best-value-badge {
    font-size: 12px;
    padding: 5px 12px;
    letter-spacing: 1.5px;
  }

  .pricing-section .trust-badges {
    font-size: 14px;
    line-height: 1.8;
  }

  .pricing-avatars {
    gap: -4px;
  }

  .pricing-avatar {
    width: 36px;
    height: 36px;
  }

  .pricing-trustpilot {
    flex-wrap: wrap;
    gap: 8px;
  }

  .trustpilot-star-icon {
    height: 20px;
  }

  .trustpilot-rating-img {
    height: 22px;
  }

  .trustpilot-text {
    font-size: 14px;
  }

  .pricing-join-text {
    font-size: 18px;
  }

  .pricing-testimonial-card {
    padding: 16px;
  }

  .pricing-testimonial-avatar {
    width: 44px;
    height: 44px;
  }

  .pricing-testimonial-header h4 {
    font-size: 16px;
  }

  .pricing-testimonial-stars {
    height: 18px;
  }

  .pricing-testimonial-card p {
    font-size: 14px;
  }

  .pricing-read-more {
    font-size: 14px;
  }

  /* Urgency Section 480px */
  .urgency-bg {
    padding: 60px 0;
  }

  .urgency-content-box {
    padding: 32px 16px;
    margin: 0 8px;
  }

  .urgency-title {
    font-size: 26px;
  }

  .urgency-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .urgency-pricing-card {
    padding: 24px 16px;
  }

  .urgency-card-intro {
    font-size: 16px;
  }

  .urgency-card-price {
    font-size: 52px;
  }

  .price-row span {
    font-size: 16px;
  }

  .urgency-discount-note {
    font-size: 14px;
  }

  .urgency-guarantees p {
    font-size: 14px;
  }

  .urgency-closing-bold {
    font-size: 18px;
  }

  .urgency-closing-text {
    font-size: 16px;
  }

  .urgency-cta {
    font-size: 16px;
    padding: 14px 24px;
  }

  .urgency-guarantee-box {
    padding: 24px 16px;
  }

  .guarantee-title {
    font-size: 18px;
  }

  .guarantee-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .guarantee-highlight {
    font-size: 16px;
  }

  /* Final Section 480px */
  .final-bg {
    padding: 60px 0 80px;
  }

  .final-testimonials-title {
    font-size: 26px;
  }

  .final-testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .final-testimonial-header h4 {
    font-size: 18px;
  }

  .final-testimonial-card p {
    font-size: 15px;
  }

  .final-faq-title {
    font-size: 22px;
  }

  .final-faq-box {
    padding: 12px 16px;
    border-radius: 20px;
  }

  .final-faq-item {
    padding: 12px 0;
  }

  .final-faq-item span {
    font-size: 16px;
  }

  .faq-plus-icon {
    width: 18px;
    height: 18px;
  }

  .final-cta-title {
    font-size: 26px;
  }

  .final-cta-subtitle {
    font-size: 16px;
  }

  .final-cta-btn {
    font-size: 16px;
    padding: 14px 24px;
  }

  .final-discount-box {
    padding: 12px 16px;
  }

  .final-discount-box p {
    font-size: 16px;
  }

  .final-trust-badges {
    font-size: 14px;
    line-height: 1.6;
  }

  .final-app-screenshot {
    border-width: 6px;
  }

  /* Footer 480px */
  .footer {
    padding-top: 48px;
  }

  .footer-main {
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-logo-icon {
    width: 36px;
  }

  .footer-logo-text {
    width: 120px;
  }

  .footer-desc {
    font-size: 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-col a {
    font-size: 16px;
    padding: 6px 0;
  }

  .footer-bottom {
    padding: 16px 0;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .footer-legal {
    gap: 16px;
  }

  .footer-legal a {
    font-size: 14px;
  }
}
