/**
 * LightingBuilder - Main Stylesheet
 *
 * This stylesheet contains all shared styles for the LightingBuilder website.
 * See docs/STYLE_GUIDE.md for usage documentation.
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Colors - Primary Palette */
  --warm-white: #FDF8F3;
  --cream: #F5EDE4;
  --charcoal: #1A1A1A;

  /* Colors - Accent Palette */
  --gold: #C9A227;
  --gold-light: #E8D48A;
  --copper: #B87333;
  --sage: #8B9A7D;

  /* Colors - Utility */
  --soft-shadow: rgba(26, 26, 26, 0.08);
  --glow: rgba(201, 162, 39, 0.3);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==========================================================================
   Ambient Glow Effects
   ========================================================================== */

.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.glow-1 { top: -200px; right: -100px; }
.glow-2 { bottom: 20%; left: -200px; animation-delay: -4s; }
.glow-3 { top: 60%; right: -150px; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.1); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 248, 243, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
  color: white !important;
  box-shadow: 0 4px 20px var(--soft-shadow);
}

.btn-primary:hover {
  color: var(--copper) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: white;
  box-shadow: 0 4px 20px var(--glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow);
}

/* ==========================================================================
   Section Labels
   ========================================================================== */

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text h1 span,
.hero h1 span {
  color: var(--gold);
  position: relative;
}

.hero-text p,
.hero p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Hero for single-column layouts (business page) */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 600px;
}

/* ==========================================================================
   Hero Stats
   ========================================================================== */

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Hero Visual / Lamp Showcase
   ========================================================================== */

.hero-visual {
  position: relative;
  height: 500px;
}

.lamp-showcase {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lamp-card {
  position: absolute;
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px var(--soft-shadow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lamp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(26, 26, 26, 0.12);
}

.lamp-main {
  width: 280px;
  height: 350px;
  z-index: 3;
}

.lamp-left {
  width: 200px;
  height: 250px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  z-index: 2;
  opacity: 0.9;
}

.lamp-right {
  width: 200px;
  height: 250px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  z-index: 2;
  opacity: 0.9;
}

.lamp-preview {
  width: 100%;
  height: 70%;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lamp-shape {
  position: relative;
}

.lamp-shade {
  width: 80px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  position: relative;
}

.lamp-shade::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 40px;
  background: var(--copper);
  border-radius: 2px;
}

.lamp-base {
  width: 50px;
  height: 15px;
  background: var(--copper);
  border-radius: 4px;
  margin: 35px auto 0;
}

.lamp-card-info {
  margin-top: 1rem;
}

.lamp-card-info h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.lamp-card-info p {
  font-size: 0.8rem;
  color: #888;
}

.color-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Offerings Section
   ========================================================================== */

.offerings {
  padding: 6rem 4rem;
  position: relative;
  z-index: 1;
}

.offerings-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.offerings-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.offerings-header p {
  color: #666;
  font-size: 1.1rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offerings-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.offering-card {
  background: white;
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(26, 26, 26, 0.05);
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px var(--soft-shadow);
}

.offering-card.business {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  color: white;
}

.offering-card.business .offering-description,
.offering-card.business .tenant-note {
  color: rgba(255,255,255,0.7);
}

.offering-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.offering-card.consumer .offering-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
}

.offering-card.business .offering-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.offering-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.offering-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offering-card.consumer .offering-badge {
  background: var(--cream);
  color: var(--charcoal);
}

.offering-card.business .offering-badge {
  background: var(--gold);
  color: var(--charcoal);
}

.offering-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.offering-description {
  color: #666;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.tenant-note {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.tenant-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(26, 26, 26, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 8px;
}

.offering-card.business .tenant-note code {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255,255,255,0.95);
}

.offering-features {
  list-style: none;
  margin-bottom: 2rem;
}

.offering-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.offering-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.offering-card.consumer .offering-features li svg {
  fill: var(--sage);
}

.offering-card.business .offering-features li svg {
  fill: var(--gold);
}

.offering-card.business .btn-primary {
  background: white;
  color: var(--charcoal);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works {
  padding: 6rem 4rem;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.how-it-works-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.how-it-works-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
}

.how-it-works-header p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 3.5rem;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--gold);
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px var(--soft-shadow);
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   Features Section (Business Page)
   ========================================================================== */

.features {
  padding: 6rem 4rem;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-header p {
  color: #666;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(26, 26, 26, 0.05);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px var(--soft-shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing,
.pricing-section {
  padding: 6rem 4rem;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.pricing-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pricing-header p {
  color: #666;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px var(--soft-shadow);
}

.pricing-card.featured {
  background: var(--charcoal);
  color: white;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured .pricing-description,
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.7);
}

.pricing-card.featured .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.pricing-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-label {
  color: var(--gold);
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin-bottom: 1.5rem;
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.pricing-amount .period {
  font-size: 0.9rem;
  color: #888;
}

.pricing-card.featured .pricing-amount .period {
  color: rgba(255,255,255,0.5);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #666;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--sage);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li svg {
  fill: var(--gold);
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-content,
.hero-visual,
.offering-card,
.step,
.pricing-card,
.feature-card {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-visual { animation-delay: 0.2s; }
.offering-card:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.2s; }
.step:nth-child(4) { animation-delay: 0.3s; }
.pricing-card:nth-child(2) { animation-delay: 0.1s; }
.pricing-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .offerings-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step::after {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  /* Reduce glow effects on tablets */
  .ambient-glow {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-text h1,
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-text p,
  .hero p {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .offerings,
  .how-it-works,
  .pricing,
  .pricing-section,
  .features {
    padding: 4rem 1.5rem;
  }

  .offerings-header h2,
  .how-it-works-header h2,
  .features-header h2,
  .pricing-header h2 {
    font-size: 2.25rem;
  }

  .offerings-grid,
  .offerings-grid-3 {
    grid-template-columns: 1fr;
  }

  .offering-card {
    padding: 2rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: 3rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Reduce glow effects on mobile */
  .ambient-glow {
    width: 300px;
    height: 300px;
  }

  .glow-1 { top: -100px; right: -50px; }
  .glow-2 { bottom: 20%; left: -100px; }
  .glow-3 { top: 60%; right: -75px; }
}

/* Small phones */
@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-text h1,
  .hero h1 {
    font-size: 2rem;
  }

  .hero-text p,
  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .stat {
    text-align: center;
  }

  .offerings,
  .how-it-works,
  .pricing,
  .pricing-section,
  .features {
    padding: 3rem 1rem;
  }

  .offerings-header h2,
  .how-it-works-header h2,
  .features-header h2,
  .pricing-header h2 {
    font-size: 1.75rem;
  }

  .offerings-header p,
  .how-it-works-header p,
  .features-header p,
  .pricing-header p {
    font-size: 1rem;
  }

  .offering-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .offering-title {
    font-size: 1.5rem;
  }

  .offering-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }

  .step {
    padding: 1.5rem 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount .price {
    font-size: 2.5rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  footer {
    padding: 2rem 1rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  /* Hide glow effects on very small screens for performance */
  .ambient-glow {
    width: 200px;
    height: 200px;
    opacity: 0.5;
  }
}
