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

:root {
  --color-primary: #E8922F;
  --color-primary-dark: #C97A1F;
  --color-primary-light: #FFF4E6;
  --color-text: #1A1A2E;
  --color-text-light: #555;
  --color-bg: #FFFFFF;
  --color-bg-warm: #FFF8F0;
  --color-bg-accent: #FDF2E4;
  --color-border: #E0D6CC;
  --color-white: #FFFFFF;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --max-width: 1140px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 36px;
  box-shadow: 0 4px 14px rgba(232, 146, 47, 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 146, 47, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  padding: 14px 36px;
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-light);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 16px 44px;
}

/* ===== PLACEHOLDER GRAPHICS ===== */
.placeholder-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-warm);
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: var(--color-bg-warm);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-graphic {
  flex: 0 0 420px;
  height: 380px;
}

/* ===== TAGLINE + QUOTE ===== */
.tagline-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.tagline-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tagline-content {
  flex: 1;
}

.tagline-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tagline-content p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 420px;
}

.quote-card {
  flex: 0 0 380px;
  background: var(--color-bg-accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.quote-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 12px;
  color: var(--color-text);
}

.quote-source {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  background: var(--color-bg-warm);
}

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

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-graphic {
  width: 100%;
  height: 180px;
  margin-bottom: 24px;
}

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

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== STATS ===== */
.stats {
  padding: 64px 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ===== CTA + AS SEEN IN ===== */
.cta-section {
  padding: 80px 0;
  background: var(--color-bg);
  text-align: center;
}

.cta-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.as-seen-in {
  margin-top: 56px;
}

.as-seen-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.as-seen-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-slot {
  width: 140px;
  height: 50px;
  border-radius: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: var(--color-bg-warm);
}

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

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  font-size: 0.7rem;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.65;
  font-style: italic;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  text-align: center;
}

.final-cta-inner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.final-cta .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-primary:hover {
  background: #f5f5f5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 0;
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-graphic {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 400px;
    height: 300px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .tagline-inner {
    flex-direction: column;
    text-align: center;
  }

  .tagline-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-card {
    flex: none;
    width: 100%;
    max-width: 440px;
  }

  .features-grid,
  .stats-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.05rem;
  }

  .hero {
    padding: 48px 0 40px;
  }

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

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

  .btn {
    width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .tagline-section,
  .features,
  .cta-section,
  .testimonials {
    padding: 56px 0;
  }

  .tagline-content h2,
  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

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

  .as-seen-logos {
    gap: 16px;
  }

  .logo-slot {
    width: 110px;
    height: 42px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
}

/* Hamburger animation when open */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
