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

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: #1a1a2e;
  background-color: #ffffff;
}

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

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

ul {
  list-style: none;
}

/* Page Container */
.page-container {
  min-height: 100vh;
  background-color: #ffffff;
  overflow-x: hidden;
  font-family: 'Nunito', sans-serif;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .header-inner {
    margin: 0;
    margin-left: 10%;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}

@media (min-width: 640px) {
  .header-content {
    justify-content: space-between;
    height: 4rem;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  overflow: visible;
  height: 2.5rem;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .logo-container {
    height: 3rem;
    gap: 0.75rem;
  }
}

.logo-image {
  height: 4rem;
  width: auto;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  clip-path: inset(25% 0 25% 0);
}

@media (min-width: 640px) {
  .logo-image {
    height: 5rem;
  }
}

.tagline {
  display: none;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  font-size: 20px;
}

@media (min-width: 640px) {
  .tagline {
    display: inline;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 600px;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 620px;
  }
}

.hero-video-desktop {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8rem;
  right: 8rem;
  width: calc(100% - 16rem);
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

@media (min-width: 1024px) {
  .hero-video-desktop {
    display: block;
  }
}

.free-hdtv-badge-desktop {
  display: none;
  position: absolute;
  top: 7rem;
  right: 35%;
  width: 8rem;
  height: 8rem;
  z-index: 20;
}

@media (min-width: 1024px) {
  .free-hdtv-badge-desktop {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 2rem 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    margin: 0;
    margin-left: 10%;
    padding: 2.5rem 1rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.hero-left {
  /* Left column content */
}

.hero-right {
  display: none;
}

@media (min-width: 1024px) {
  .hero-right {
    display: block;
  }
}

.hero-tagline {
  color: #000000;
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1024px) {
  .hero-tagline {
    font-size: 25px;
  }
}

.hero-headline {
  font-size: 29px;
  font-weight: 800;
  color: #2568ef;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 34px;
    line-height: 45px;
  }
}

.lg-nowrap {
  white-space: normal;
}

@media (min-width: 1024px) {
  .lg-nowrap {
    white-space: nowrap;
  }
}

.nowrap {
  white-space: nowrap;
}

.mobile-only {
  display: inline;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

.hero-video-mobile-container {
  margin: 0 -1rem 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-video-mobile-container {
    display: none;
  }
}

.hero-video-mobile {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.free-hdtv-badge-mobile {
  position: absolute;
  top: 3rem;
  left: 20%;
  transform: translateX(-50%);
  width: 5rem;
  height: 5rem;
  z-index: 20;
}

.hero-subheadline {
  margin-bottom: 1.5rem;
  font-size: 20px;
  color: #050505;
  font-weight: 500;
  text-align: center;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-subheadline {
    font-size: 24px;
    line-height: 28px;
    text-align: left;
  }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

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

@media (min-width: 1024px) {
  .feature-icon {
    width: 25px;
    height: 25px;
  }
}

.feature-text {
  color: #1f2937;
  font-weight: 800;
  font-size: 20px;
}

.flash-sale-text {
  color: #dc2626;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1024px) {
  .flash-sale-text {
    font-size: 20px;
  }
}

.lightning {
  margin: 0 0.25rem;
}

/* CTA Button Styles */
.cta-button {
  display: block;
  background-color: #2BA84A;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: clamp(16px, 4vw, 25px);
  line-height: 1.2;
  height: auto;
  min-height: 56px;
  max-width: 520px;
  padding: 16px 20px;
  border-radius: 6px;
  border: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #239B40;
}

.cta-button-hero {
  margin-bottom: 1.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-button-hero {
    width: auto;
  }
}

.guarantee-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guarantee-badge {
  width: 78px;
  height: 63px;
}

.guarantee-content {
  /* Content wrapper */
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 0.25rem;
}

.star-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.guarantee-text {
  font-weight: 600;
  font-size: 15px;
  color: #787878;
}

/* As Seen On Section */
.as-seen-on-section {
  background-color: #ffffff;
}

.as-seen-on-inner {
  background-color: #f4f7fa;
  padding: 1.25rem 0;
  border-top: 1px solid #e5eaf2;
  border-bottom: 1px solid #e5eaf2;
}

@media (min-width: 1024px) {
  .as-seen-on-inner {
    margin: 0 8rem;
  }
}

.as-seen-on-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.as-seen-on-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}

.as-seen-on-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .as-seen-on-logos {
    gap: 2.5rem;
  }
}

.as-seen-logo {
  height: 1.25rem;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
}

@media (min-width: 1024px) {
  .as-seen-logo {
    height: 1.5rem;
  }
}

/* Trust Badges Section */
.trust-badges-section {
  background-color: #ffffff;
}

.trust-badges-inner {
  background-color: #ffffff;
  padding: 2.5rem 0;
}

@media (min-width: 1024px) {
  .trust-badges-inner {
    padding: 3rem 0;
    margin: 0 8rem;
  }
}

.trust-badges-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.trust-badges-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-badge-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.trust-badge-title {
  color: #000000;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1024px) {
  .trust-badge-title {
    white-space: nowrap;
  }
}

.trust-badge-desc {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
}

/* Roger Testimonial Section */
.roger-section {
  background-color: #ffffff;
}

.roger-inner {
  padding: 3rem 0;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .roger-inner {
    padding: 4rem 0;
    margin: 0 8rem;
  }
}

.roger-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.roger-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .roger-grid {
    flex-direction: row;
    gap: 3rem;
  }
}

.roger-image-container {
  flex-shrink: 0;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .roger-image-container {
    max-width: 320px;
  }
}

@media (min-width: 768px) {
  .roger-image-container {
    width: 40%;
    max-width: none;
    margin: 0;
  }
}

.roger-image-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid #2568ef;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.roger-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.roger-text-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .roger-text-content {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .roger-text-content {
    width: 60%;
  }
}

.roger-headline {
  font-size: 25px;
  font-weight: 700;
  color: #2568ef;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 32px;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .roger-headline {
    font-size: 1.5rem;
    line-height: normal;
  }
}

@media (min-width: 1024px) {
  .roger-headline {
    font-size: 1.875rem;
  }
}

.roger-testimonial {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #000000;
}

@media (min-width: 640px) {
  .roger-testimonial {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .roger-testimonial {
    font-size: 1.25rem;
  }
}

.roger-name {
  color: #1a1a2e;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .roger-name {
    font-size: 1.125rem;
  }
}

.flash-sale-roger {
  font-size: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .flash-sale-roger {
    font-size: 1.125rem;
  }
}

.cta-button-roger {
  margin-bottom: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-button-roger {
    width: auto;
  }
}

.stock-warning {
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.875rem;
}

.text-red {
  color: #dc2626;
}

/* Features Section */
.features-section {
  background-color: #ffffff;
}

.features-inner {
  padding: 2rem 0;
  background-color: #fafafa;
}

@media (min-width: 1024px) {
  .features-inner {
    padding: 3rem 0;
    margin: 0 8rem;
  }
}

.features-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.features-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .features-header {
    margin-bottom: 3rem;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .features-header {
    margin-bottom: 4rem;
  }
}

.features-headline {
  font-size: 27px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 36px;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .features-headline {
    font-size: 1.5rem;
    line-height: normal;
  }
}

@media (min-width: 1024px) {
  .features-headline {
    font-size: 35px;
  }
}

.features-subheadline {
  font-size: 18px;
  color: #1a1a2e;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .features-subheadline {
    font-size: 20px;
    max-width: none;
  }
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .feature-rows {
    gap: 6rem;
  }
}

.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-row {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .feature-row {
    gap: 4rem;
  }
}

.feature-image-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .feature-image-container {
    width: 50%;
  }
}

.feature-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (min-width: 640px) {
  .feature-image {
    max-width: 350px;
  }
}

@media (min-width: 768px) {
  .feature-image {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .feature-image {
    max-width: 450px;
  }
}

.feature-text {
  text-align: center;
}

@media (min-width: 768px) {
  .feature-text {
    width: 50%;
    text-align: left;
  }
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2568ef;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .feature-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .feature-title {
    font-size: 28px;
    margin-bottom: 1rem;
  }
}

.feature-desc {
  color: #1a1a2e;
  font-size: 18px;
  line-height: 1.625;
}

@media (min-width: 1024px) {
  .feature-desc {
    font-size: 1.125rem;
  }
}

/* Feature row reverse for alternating layout */
.feature-row-reverse {
  flex-direction: column;
}

/* On mobile: image first (order 1), text second (order 2) */
.feature-row-reverse .feature-text-first {
  order: 2;
}

.feature-row-reverse .feature-image-second {
  order: 1;
}

@media (min-width: 768px) {
  .feature-row-reverse {
    flex-direction: row;
  }
  
  /* On desktop: text left (order 1), image right (order 2) */
  .feature-row-reverse .feature-text-first {
    order: 1;
  }
  
  .feature-row-reverse .feature-image-second {
    order: 2;
  }
}

.feature-cta {
  margin-top: -2rem;
  text-align: center;
}

.flash-sale-features {
  margin-bottom: 0.75rem;
}

.cta-button-features {
  margin: 0 auto 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-button-features {
    width: auto;
  }
}

.urgency-text {
  color: #1a1a2e;
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .urgency-text {
    font-size: 1.125rem;
  }
}

/* How to Use Section */
.how-to-use-section {
  background-color: #ffffff;
}

.how-to-use-inner {
  padding: 3rem 0;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .how-to-use-inner {
    padding: 4rem 0;
    margin: 0 8rem;
  }
}

.how-to-use-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.how-to-use-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #2568ef;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .how-to-use-title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .how-to-use-title {
    font-size: 35px;
  }
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .steps-grid {
    gap: 2rem;
  }
}

.step {
  text-align: center;
}

.step-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 302px;
}

.step-image {
  width: 100%;
  height: auto;
  aspect-ratio: 302 / 206;
  object-fit: cover;
  border-radius: 0.5rem;
}

.step-number {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2568ef;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}

.step-text {
  color: #1a1a2e;
  font-size: 16px;
  line-height: 1.625;
  max-width: 280px;
  margin: 0 auto;
}

/* Cutting-Edge Tech Section */
.cutting-edge-section {
  background-color: #ffffff;
}

.cutting-edge-inner {
  padding: 3rem 0;
  background-color: #f8faf9;
}

@media (min-width: 1024px) {
  .cutting-edge-inner {
    padding: 4rem 0;
    margin: 0 8rem;
  }
}

.cutting-edge-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.cutting-edge-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #2568ef;
  margin-bottom: 2rem;
  line-height: 30px;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .cutting-edge-title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: normal;
  }
}

@media (min-width: 1024px) {
  .cutting-edge-title {
    font-size: 35px;
  }
}

.desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .desktop-only {
    display: inline;
  }
}

.mobile-space {
  display: inline;
}

@media (min-width: 640px) {
  .mobile-space {
    display: none;
  }
}

.cutting-edge-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cutting-edge-grid {
    flex-direction: row;
    gap: 1rem;
  }
}

.cutting-edge-left,
.cutting-edge-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .cutting-edge-left,
  .cutting-edge-right {
    width: 33.333%;
  }
  
  .cutting-edge-right {
    align-items: flex-end;
  }
}

.cutting-edge-center {
  order: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .cutting-edge-center {
    order: 0;
    width: auto;
  }
}

.cutting-edge-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .cutting-edge-image {
    max-width: 350px;
  }
}

@media (min-width: 1024px) {
  .cutting-edge-image {
    max-width: 506px;
  }
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tech-feature-right {
  flex-direction: row;
}

/* On mobile: icon first, text second for right features */
.tech-feature-right .tech-text-right {
  order: 2;
}

.tech-feature-right .tech-icon {
  order: 1;
}

@media (min-width: 1024px) {
  .tech-feature-right {
    flex-direction: row-reverse;
  }
  
  /* On desktop: restore natural order for text-left, icon-right layout */
  .tech-feature-right .tech-text-right {
    order: 1;
  }
  
  .tech-feature-right .tech-icon {
    order: 2;
  }
}

.tech-icon-box {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2568ef;
  color: #ffffff;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}

.tech-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.rotate-90 {
  transform: rotate(90deg);
}

.tech-text {
  position: relative;
}

.tech-text-right {
  text-align: left;
}

@media (min-width: 1024px) {
  .tech-text-right {
    text-align: right;
  }
}

.tech-title {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 18px;
  margin-bottom: 0.25rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1024px) {
  .tech-title {
    font-size: 20px;
  }
}

.tech-desc {
  color: #4b5563;
  font-size: 16px;
}

.tech-line {
  width: 280px;
  height: 2px;
  background-color: #2568ef;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .tech-line {
    width: 230px;
  }
  
  .tech-line-right {
    margin-left: auto;
  }
}

/* Exclusive Offer Section */
.exclusive-offer-section {
  background-color: #ffffff;
}

.exclusive-offer-inner {
  padding: 2rem 0;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .exclusive-offer-inner {
    padding: 2.5rem 0;
    margin: 0 8rem;
  }
}

.exclusive-offer-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.exclusive-offer-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 2px dashed #f87171;
  padding: 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .exclusive-offer-card {
    padding: 1.5rem;
  }
}

.exclusive-offer-headlines {
  text-align: center;
  margin-bottom: 10px;
}

.exclusive-offer-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  font-style: italic;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1024px) {
  .exclusive-offer-title {
    font-size: 45px;
    white-space: nowrap;
  }
}

.exclusive-offer-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #ef4444;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .exclusive-offer-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .exclusive-offer-subtitle {
    font-size: 35px;
  }
}

.exclusive-offer-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}

.exclusive-offer-image {
  width: 100%;
  max-width: 822px;
  height: auto;
}

.exclusive-offer-cta-area {
  margin: -1rem;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1rem;
  text-align: center;
  background-color: #FFF8F2;
}

@media (min-width: 640px) {
  .exclusive-offer-cta-area {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .exclusive-offer-cta-area {
    margin: -1.5rem;
  }
}

.exclusive-offer-cta-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1024px) {
  .exclusive-offer-cta-text {
    font-size: 1.5rem;
  }
}

.pointing-hand {
  margin-right: 0.5rem;
}

.exclusive-offer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
}

.offer-badge-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.offer-badge-dollar {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #2BA84A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.offer-badge-text {
  font-weight: 500;
}

.promotion-text {
  color: #4b5563;
  margin-bottom: 1rem;
}

.promo-bold {
  font-weight: 700;
  color: #ef4444;
}

.cta-button-claim {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #ffffff;
}

.testimonials-inner {
  padding: 3rem 0;
  background-color: #f8f8f8;
}

@media (min-width: 1024px) {
  .testimonials-inner {
    padding: 4rem 0;
    margin: 0 8rem;
  }
}

.testimonials-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2568ef;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .testimonials-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-title {
    font-size: 35px;
  }
}

.testimonials-subtitle {
  text-align: center;
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .testimonials-subtitle {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-subtitle {
    font-size: 20px;
  }
}

.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonials-row-bottom {
  margin-bottom: 0;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  width: 100%;
}

@media (min-width: 768px) {
  .testimonial-card {
    width: 340px;
  }
}

.testimonial-review-image {
  width: 100%;
  height: auto;
}

.testimonial-card-content {
  padding: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

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

.testimonial-name {
  font-weight: 600;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stars-orange {
  display: flex;
}

.star-icon-orange {
  width: 1rem;
  height: 1rem;
}

.verified-badge {
  color: #FF9900;
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-headline {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-date {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: #4b5563;
  font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta-section {
  background-color: #ffffff;
}

.final-cta-inner {
  padding: 2rem 0;
  background-color: #2BA84A;
  color: #ffffff;
}

@media (min-width: 640px) {
  .final-cta-inner {
    padding: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .final-cta-inner {
    padding: 3.5rem 0;
    margin: 0 8rem;
  }
}

.final-cta-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.final-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .final-cta-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-title {
    font-size: 35px;
  }
}

.final-cta-subtitle {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .final-cta-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-subtitle {
    font-size: 20px;
  }
}

.final-cta-note {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .final-cta-note {
    font-size: 1rem;
  }
}

.cta-button-final {
  background-color: #ffffff;
  color: #2BA84A;
  font-size: 1.125rem;
  height: 3.5rem;
  padding: 0 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button-final:hover {
  background-color: #f3f4f6;
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
}

.faq-inner {
  padding: 3rem 0;
  background-color: #f4f7fa;
}

@media (min-width: 1024px) {
  .faq-inner {
    padding: 4rem 0;
    margin: 0 8rem;
  }
}

.faq-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .faq-header {
    margin-bottom: 2.5rem;
  }
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
  .faq-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .faq-title {
    font-size: 35px;
  }
}

.faq-location-badge {
  display: inline-block;
  background-color: #1F4E79;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5eaf2;
  border-radius: 0.75rem;
  padding: 0 1.25rem;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-weight: 600;
  color: #1a1a2e;
  text-align: left;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  list-style: none;
}

.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 1rem;
  color: #4b5563;
}

/* Footer */
.footer {
  background-color: #ffffff;
}

.footer-inner {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 2.5rem 0;
}

@media (min-width: 1024px) {
  .footer-inner {
    margin: 0 8rem;
  }
}

.footer-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.875rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-company {
  margin-bottom: 0.5rem;
}

.footer-link {
  margin-left: 0.25rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 0.75rem;
  z-index: 50;
  box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}

.cta-button-sticky {
  width: 100%;
  font-size: 0.9375rem;
  height: 3rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-text {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.mobile-bottom-padding {
  height: 6rem;
}

@media (min-width: 1024px) {
  .mobile-bottom-padding {
    display: none;
  }
}
