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

:root {
  --color-primary: #E63462;
  --color-primary-dark: #d12a56;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-background: #F5F5F5;
  --color-white: #ffffff;
  --color-footer: #3D3D3D;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for sticky header when scrolling to anchors */
  background-color: var(--color-white);
}

html::before,
html::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  height: 50vh;
  z-index: -1;
  pointer-events: none;
}

html::before {
  top: 0;
  background-color: var(--color-white);
}

html::after {
  bottom: 0;
  background-color: var(--color-footer);
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 52, 98, 0.3);
}

.btn-secondary,
.btn-secondary.btn-nav {
  background-color: #6b7280;
  color: var(--color-white);
  border: none;
}

.btn-secondary:hover,
.btn-secondary.btn-nav:hover {
  background-color: #4b5563;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Header */
.header {
  padding: var(--spacing-md) 0;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


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

.logo img {
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  padding-top: 0.25rem;
}

.nav a:not(.btn) {
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.nav a:not(.btn):hover {
  color: var(--color-primary);
}

.btn-nav {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-white);
  border-radius: 16px;
}

.btn-nav + .btn-nav {
  margin-left: -1.5rem;
}

/* Responsive nav text - show full text by default, short on mobile */
.nav-short {
  display: none;
}

.nav-full {
  display: inline;
}

/* Mobile-only line break */
.mobile-break {
  display: none;
}

/* Mobile-only spacer */
.mobile-spacer {
  display: none;
}

/* Hero Section */
.hero {
  padding: calc(var(--spacing-xl) + 50px) 0 calc(6rem + 50px) 0;
  background-color: var(--color-background);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.hero-subtitle-text {
  font-size: 1.8rem;
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.hero-note {
  margin-top: var(--spacing-md);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.hero-image {
  position: relative;
}

.hero-composite {
  position: relative;
  width: 624px;
  min-width: 624px;
  margin-left: 0;
}

.hero-dashboard {
  position: relative;
  top: -5px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-pointer {
  position: absolute;
  top: 245px;
  left: 345px;
  width: 24px;
  z-index: 4;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  transform: rotate(-15deg);
}

.hero-blob {
  position: absolute;
  top: 25px;
  right: -35px;
  width: 105px;
  height: 105px;
  z-index: 3;
  background-image: url('../assets/hero-components/Pink blob.svg');
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-blob-text {
  color: var(--color-white);
  font-size: 0.8rem;
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
  transform: translateX(-1px);
}

.hero-blob-emphasis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.blob-line {
  display: block;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.25;
}

/* Ad Cards */
.ad-card {
  position: absolute;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2;
}

.ad-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.ad-card-content {
  padding: 10px 12px;
  position: relative;
}

.ad-card-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.ad-card-flame {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  flex-shrink: 0;
}

.ad-card-content p {
  font-size: 0.65rem;
  color: var(--color-text-light);
  line-height: 1.35;
}

/* Ad Card 1 - Left (vertical layout, wide image) */
.ad-card-1 {
  width: 200px;
  left: -40px;
  top: 195px;
}

.ad-card-1 .ad-card-image {
  /* Parent .ad-card handles border-radius clipping via overflow:hidden */
  overflow: hidden;
}

.ad-card-1 .ad-card-content {
  padding-bottom: 22px;
  padding-right: 45px;
}

.ad-card-1 .ad-card-content p {
  font-size: 0.6rem;
  line-height: 1.4;
}

.ad-card-arrow {
  position: absolute;
  bottom: 12px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ad-card-arrow img {
  width: 12px;
  height: 12px;
}

/* Info Card - Right side */
.info-card {
  position: absolute;
  right: -30px;
  top: 300px;
  background: var(--color-white);
  border-radius: 18px;
  padding: 8px 14px 14px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  width: 180px;
  z-index: 2;
}

.info-card-url {
  font-size: 0.6rem;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 6px;
}

.info-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.info-card-icon {
  width: 20px;
  height: 20px;
}

.info-card-title strong {
  font-size: 0.85rem;
  color: var(--color-text);
}

.info-card p {
  font-size: 0.65rem;
  color: var(--color-text-light);
  line-height: 1.35;
}

/* Ad Card 2 - Bottom Right (separate elements) */
.ad-card-2-image {
  position: absolute;
  right: 372px;
  bottom: -82px;
  display: block;
  width: 160px;
  border-radius: 18px 0 0 18px;
  z-index: 1;
}

.ad-card-2-content {
  position: absolute;
  right: 115px;
  bottom: -71.5px;
  background: var(--color-white);
  padding: 16.5px 10px 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0 18px 18px 0;
  width: 270px;
  height: 77px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.ad-card-2-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 4px;
  color: var(--color-text);
}

.ad-card-2-content p {
  font-size: 0.6rem;
  line-height: 1.4;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.ad-card-2-btn {
  background: #27BEFF;
  color: var(--color-white);
  border: none;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 8px;
  margin-top: -30px;
}

/* Intro Section */
.intro {
  padding: var(--spacing-2xl) 0;
  text-align: center;
  background-color: var(--color-white);
}

.intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.intro p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-text-light);
}

/* Features Section */
.features {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Feature Visual Container */
.feature-visual {
  position: relative;
  margin-bottom: calc(var(--spacing-md) + 30px);
  border-radius: var(--border-radius);
}

.feature-bg {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Feature Blob Decorations */
.feature-blob {
  position: absolute;
  width: 80px;
  height: 80px;
  top: auto;
  bottom: 92px;
  right: -12px;
  z-index: 5;
}

.feature-blob--left {
  right: auto;
  left: -10px;
  top: auto;
  bottom: -10px;
}

/* Feature Sub Cards */
.feature-sub-card {
  position: absolute;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.feature-sub-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Separated sub-image (Google Ads card) */
.feature-sub-image {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 90px;
  height: auto;
  border-radius: 10px 10px 0 0;
  z-index: 4;
}

.feature-sub-card--top {
  top: auto;
  bottom: -20px;
  right: 30px;
  width: 90px;
  border-radius: 0 0 10px 10px;
  padding: 10px 8px 12px;
}

.feature-stars {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

/* Review text placeholder lines */
.feature-review-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-line {
  display: block;
  height: 6px;
  background: #E0E0E0;
  border-radius: 3px;
  width: 100%;
}

.review-line--short {
  width: 60%;
}

/* Separated sofa image (Competitive Strategy) */
.feature-sub-image-left {
  position: absolute;
  bottom: -15px;
  left: 15px;
  height: 55px;
  width: auto;
  border-radius: 8px 0 0 8px;
  z-index: 4;
}

/* Landscape sub-card (Competitive Strategy) */
.feature-sub-card--landscape {
  position: absolute;
  bottom: -15px;
  left: 80px;
  right: 15px;
  height: 55px;
  background: #F5EFD8;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: visible;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.ad-text {
  display: block;
  line-height: 1.3;
  text-align: left;
}

.ad-text--title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.ad-text--desc {
  font-size: 10px;
  color: var(--color-text-light);
}

.ad-text--cta {
  position: absolute;
  bottom: 12px;
  right: 10px;
  font-size: 7px;
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: underline;
}

/* Blob group with dollar signs */
.feature-blobs-group {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  z-index: 5;
}

.feature-blob-dollar {
  position: relative;
}

.feature-blob-dollar img {
  width: 40px;
  height: 40px;
}

.feature-blob-dollar span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.feature-blob-dollar--second {
  margin-left: 2px;
  margin-top: -18px;
}

.feature-blob-dollar--second img {
  width: 32px;
  height: 32px;
}

.feature-blob-dollar.feature-blob-dollar--second span {
  font-size: 0.7rem;
  top: 28%;
  left: 50%;
}

/* Intelligent Guidance - Stats boxes */
.guidance-stats {
  position: absolute;
  bottom: -15px;
  left: 15px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.guidance-stat {
  padding: 8px 12px;
  border-radius: 8px;
  text-align: left;
  min-width: 70px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.guidance-stat--clicks {
  background: #27BEFF;
}

.guidance-stat--impressions {
  background: #F5F5F5;
}

.stat-label {
  display: block;
  font-size: 8px;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.guidance-stat--clicks .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.stat-value {
  display: block;
  font-size: 26px;
  font-weight: 400;
  color: var(--color-text);
}

.guidance-stat--clicks .stat-value {
  color: white;
}

/* Intelligent Guidance - Blob and Stars */
.guidance-blob {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  z-index: 2;
}

.guidance-stars {
  position: absolute;
  z-index: 3;
}

.guidance-stars-two {
  top: 0px;
  right: 3px;
  width: 50px;
  height: auto;
}

.guidance-star-one {
  top: 20px;
  right: 70px;
  width: 16px;
  height: auto;
}

/* Legacy support */
.feature-image {
  margin-bottom: var(--spacing-md);
}

.feature-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text);
}

.feature-card p {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

/* How It Works Section */
.how-it-works {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-white);
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  color: var(--color-text);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.step {
  padding: var(--spacing-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
  text-indent: -1px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text);
}

.step p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* FAQs Section */
.faqs {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-background);
}

.faqs h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  text-align: center;
  color: var(--color-text);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--spacing-md);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 var(--spacing-md) var(--spacing-md);
  color: var(--color-text-light);
}

/* CTA Section */
.cta {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-background);
  text-align: center;
}

.cta .container {
  background-color: var(--color-background);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
}

.cta h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.cta p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
  background-color: var(--color-footer);
  padding: var(--spacing-lg) 0;
}

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

.footer-logo img {
  height: 28px;
  width: auto;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.copyright a:hover {
  color: var(--color-white);
}

/* Responsive Design */

/* iPad Air & iPad Pro / Large Tablet (800-1050px) - vertical stack with desktop-sized elements */
@media (max-width: 1050px) and (min-width: 801px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 60px 80px 60px;
  }

  .hero-composite {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }

  .hero-dashboard {
    transform: scale(1.2) translateX(-45px) translateY(-45px);
    transform-origin: top left;
  }

  .hero-blob {
    top: -5px;
    right: -65px;
  }

  /* Keep desktop-sized ad cards - spread out */
  .ad-card-1 {
    width: 200px;
    left: -120px;
    top: 160px;
  }

  .ad-card-1 .ad-card-content {
    padding-bottom: 22px;
    padding-right: 45px;
    padding-left: 12px;
    text-align: left;
  }

  .info-card {
    width: 180px;
    right: -100px;
    top: 200px;
  }

  /* Show the bottom ad card */
  .ad-card-2-image {
    right: 265px;
    bottom: -77px;
    width: 160px;
  }

  .ad-card-2-content {
    right: 5px;
    bottom: -66px;
    width: 270px;
    padding-left: 12px;
    text-align: left;
  }

  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Smaller Tablet (max 800px) */
@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle-text {
    white-space: normal;
    font-size: 1.5rem;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 50px 80px 50px;
  }

  .hero-composite {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }

  .hero-blob {
    width: 88px;
    height: 88px;
    top: 20px;
    right: -20px;
  }

  .blob-line {
    font-size: 0.85rem;
  }

  .ad-card-1 {
    width: 140px;
    left: -10px;
    top: 150px;
  }

  .ad-card-1 .ad-card-image img {
    height: 90px;
    object-fit: cover;
  }

  .ad-card-1 .ad-card-content {
    padding-bottom: 28px;
    padding-right: 35px;
  }

  .info-card {
    width: 150px;
    right: -10px;
    top: 180px;
  }

  /* Hide the complex bottom ad card on tablet/mobile - too hard to position */
  .ad-card-2-image,
  .ad-card-2-content {
    display: none;
  }

  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 85px; /* Taller header on mobile - scroll so features section starts at header */
  }

  .header .container {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .nav {
    width: 100%;
    gap: var(--spacing-xs);
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .nav a:not(.btn) {
    font-size: 0.9rem;
    padding: 4px 8px;
  }

  .nav a:not(.btn):nth-child(2) {
    margin-right: auto;
  }

  .btn.btn-nav {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
  }

  .btn-nav + .btn-nav {
    margin-left: 4px;
  }

  .blob-line {
    font-size: 0.75rem;
  }

  /* Show short button text on mobile */
  .nav-short {
    display: inline;
  }

  .nav-full {
    display: none;
  }

  /* Show mobile line breaks */
  .mobile-break {
    display: block;
  }

  /* Show mobile spacer */
  .mobile-spacer {
    display: block;
    height: 0.5em;
  }

  .hero {
    padding: var(--spacing-xl) 0 var(--spacing-2xl) 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle-text {
    font-size: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image {
    padding: 30px 40px 70px 40px;
  }

  .hero-composite {
    width: 100%;
    min-width: auto;
  }

  .hero-pointer {
    top: 160px;
    left: 55%;
    width: 20px;
  }

  .hero-blob {
    width: 70px;
    height: 70px;
    top: 25px;
    right: -15px;
  }

  .blob-line {
    font-size: 0.7rem;
  }

  /* Ad A (VitaFuse) - move to bottom right */
  .ad-card-1 {
    width: 160px;
    left: auto;
    right: 40px;
    top: auto;
    bottom: -70px;
    z-index: 5;
  }

  .ad-card-1 .ad-card-image img {
    height: 60px;
  }

  .ad-card-1 .ad-card-content {
    padding: 6px 8px 18px 8px;
  }

  .ad-card-1 .ad-card-content h4 {
    font-size: 0.65rem;
  }

  .ad-card-1 .ad-card-content p {
    font-size: 0.45rem;
    text-align: left;
    padding-left: 4px;
  }

  .ad-card-flame {
    width: 13px;
    height: 13px;
    margin-right: 3px;
  }

  .ad-card-arrow {
    width: 20px;
    height: 20px;
    bottom: 7px;
    right: 9px;
  }

  .ad-card-arrow img {
    width: 9px;
    height: 9px;
  }

  /* Ad B (Energy derived from nature) - move to bottom left */
  .info-card {
    width: 145px;
    right: auto;
    left: 40px;
    top: auto;
    bottom: -35px;
    padding: 6px 10px 10px 10px;
  }

  .info-card-url {
    font-size: 0.5rem;
    margin-bottom: 4px;
  }

  .info-card-icon {
    width: 16px;
    height: 16px;
  }

  .info-card-title {
    gap: 5px;
    margin-bottom: 2px;
  }

  .info-card-title strong {
    font-size: 0.7rem;
  }

  .info-card p {
    font-size: 0.55rem;
  }

  .intro h2,
  .how-it-works h2,
  .faqs h2,
  .cta h2 {
    font-size: 1.5rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .cta h2 {
    font-size: 1.4rem;
  }

  .cta h2 br {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  /* Feature cards adjustments */
  .feature-visual {
    margin-bottom: var(--spacing-md);
  }

  .feature-sub-image {
    width: 70px;
    bottom: 40px;
    right: 20px;
  }

  .feature-sub-card--top {
    width: 70px;
    right: 20px;
    bottom: -15px;
    padding: 8px 6px 10px;
  }

  .feature-stars {
    margin-bottom: 6px;
  }

  .feature-blob {
    width: 60px;
    height: 60px;
    bottom: 75px;
    right: -8px;
  }

  .feature-sub-image-left {
    height: 45px;
    left: 10px;
    bottom: -12px;
  }

  .feature-sub-card--landscape {
    left: 65px;
    right: 10px;
    height: 45px;
    bottom: -12px;
    padding: 0 8px;
  }

  .ad-text--title {
    font-size: 10px;
  }

  .ad-text--desc {
    font-size: 8px;
  }

  .ad-text--cta {
    font-size: 6px;
    bottom: 8px;
    right: 8px;
  }

  .feature-blobs-group {
    top: -15px;
    right: -15px;
  }

  .feature-blob-dollar img {
    width: 32px;
    height: 32px;
  }

  .feature-blob-dollar span {
    font-size: 0.75rem;
  }

  .feature-blob-dollar--second {
    margin-top: -14px;
  }

  .feature-blob-dollar--second img {
    width: 26px;
    height: 26px;
  }

  .feature-blob-dollar.feature-blob-dollar--second span {
    font-size: 0.6rem;
  }

  .guidance-stats {
    left: 10px;
    bottom: -12px;
    gap: 6px;
  }

  .guidance-stat {
    padding: 6px 10px;
    min-width: 60px;
  }

  .stat-label {
    font-size: 7px;
  }

  .stat-value {
    font-size: 20px;
  }

  .guidance-blob {
    width: 55px;
    height: 55px;
    top: -8px;
    right: -8px;
  }

  .guidance-stars-two {
    width: 40px;
    top: -2px;
    right: 0;
  }

  .guidance-star-one {
    width: 12px;
    top: 15px;
    right: 55px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .header {
    padding: var(--spacing-xs) 0;
  }

  .logo img {
    height: 26px;
  }

  .nav {
    gap: 6px;
  }

  .nav a:not(.btn) {
    font-size: 0.8rem;
    padding: 3px 6px;
  }

  .btn.btn-nav {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .blob-line {
    font-size: 0.65rem;
  }

  .hero {
    padding: var(--spacing-lg) 0 var(--spacing-xl) 0;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
  }

  .hero-subtitle-text {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
  }

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

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-image {
    padding: 20px 25px 40px 25px;
    max-width: 100%;
  }

  .hero-composite {
    width: 100%;
    min-width: auto;
  }

  .hero-dashboard {
    border-radius: 18px;
  }

  .hero-pointer {
    top: 120px;
    left: 55%;
    width: 16px;
  }

  .hero-blob {
    width: 55px;
    height: 55px;
    top: 25px;
    right: -10px;
    padding: 8px;
  }

  .blob-line {
    font-size: 0.55rem;
    line-height: 1.2;
  }

  /* Ad A (VitaFuse) - bottom right on small mobile */
  .ad-card-1 {
    width: 135px;
    left: auto;
    right: 20px;
    top: auto;
    bottom: -60px;
    z-index: 5;
  }

  .ad-card-1 .ad-card-image img {
    height: 50px;
  }

  .ad-card-1 .ad-card-content {
    padding: 5px 6px 14px 6px;
  }

  .ad-card-1 .ad-card-content h4 {
    font-size: 0.55rem;
  }

  .ad-card-1 .ad-card-content p {
    font-size: 0.4rem;
    line-height: 1.3;
    text-align: left;
    padding-left: 4px;
  }

  .ad-card-arrow {
    width: 16px;
    height: 16px;
    bottom: 5px;
    right: 7px;
  }

  .ad-card-arrow img {
    width: 7px;
    height: 7px;
  }

  /* Ad B (Energy derived from nature) - bottom left on small mobile */
  .info-card {
    width: 120px;
    right: auto;
    left: 25px;
    top: auto;
    bottom: -30px;
    padding: 5px 8px 8px 8px;
  }

  .info-card-url {
    font-size: 0.45rem;
    margin-bottom: 3px;
  }

  .info-card-icon {
    width: 14px;
    height: 14px;
  }

  .info-card-title {
    gap: 4px;
    margin-bottom: 2px;
  }

  .info-card-title strong {
    font-size: 0.6rem;
  }

  .info-card p {
    font-size: 0.45rem;
    line-height: 1.3;
  }

  .intro {
    padding: var(--spacing-xl) 0;
  }

  .intro h2 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
  }

  .intro p {
    font-size: 0.9rem;
  }

  .features {
    padding: var(--spacing-xl) 0;
  }

  .features-grid {
    gap: var(--spacing-md);
  }

  .feature-card {
    padding: var(--spacing-md);
    border-radius: 16px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  .how-it-works {
    padding: var(--spacing-xl) 0;
  }

  .how-it-works h2 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
  }

  .steps-grid {
    gap: var(--spacing-md);
  }

  .step {
    padding: var(--spacing-md);
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.875rem;
  }

  .faqs {
    padding: var(--spacing-xl) 0;
  }

  .faqs h2 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
  }

  .faq-item summary {
    padding: var(--spacing-sm);
    font-size: 0.9rem;
  }

  .faq-item summary::after {
    font-size: 1.25rem;
  }

  .faq-item p {
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    font-size: 0.875rem;
  }

  .cta {
    padding: var(--spacing-xl) 0;
  }

  .cta .container {
    padding: var(--spacing-lg);
  }

  .cta h2 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
  }

  .cta p {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
  }

  .footer {
    padding: var(--spacing-md) 0;
  }

  .footer-logo img {
    height: 24px;
  }

  .copyright {
    font-size: 0.75rem;
  }
}
