.elementor-15 .elementor-element.elementor-element-964dba7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15 .elementor-element.elementor-element-97e138d{margin:-10px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}@media(max-width:767px){.elementor-15 .elementor-element.elementor-element-97e138d{margin:-10px 0px calc(var(--kit-widget-spacing, 0px) + 0px) -10px;}}/* Start custom CSS for html, class: .elementor-element-97e138d *//* DRLaundry CSS - Mobile-First Design System */

/* CSS Variables - Design System */
:root {
  /* Colors - HSL format */
  --primary: 23 71% 52%;      /* #1752EE */
  --secondary: 154 86% 36%;   /* #0BB07B */  
  --accent: 46 100% 63%;      /* #FFC642 */
  --ink: 210 22% 11%;         /* #101828 */
  --muted: 214 15% 46%;       /* #667085 */
  --bg: 0 0% 100%;            /* #FFFFFF */
  --bg-soft: 225 60% 99%;     /* #F8FAFF */
  --border: 214 32% 91%;      /* #E4E7EC */
  --success: 142 76% 36%;     /* #16B364 */
  --warning: 25 95% 53%;      /* #F79009 */
  --error: 0 84% 60%;         /* #F04438 */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  --gradient-accent: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--warning)));
  --gradient-subtle: linear-gradient(180deg, hsl(var(--bg-soft)), hsl(var(--bg)));
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(16 24 40 / 0.05);
  --shadow-md: 0 4px 8px -2px rgb(16 24 40 / 0.1);
  --shadow-lg: 0 12px 16px -4px rgb(16 24 40 / 0.08);
  --shadow-xl: 0 20px 24px -4px rgb(16 24 40 / 0.08);
  --shadow-primary: 0 8px 24px -4px hsl(var(--primary) / 0.25);
  
  /* Spacing */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 0.75rem;  /* 12px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  
  /* Radius */
  --radius-sm: 0.375rem;  /* 6px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container */
  --container-max-width: 1140px;
  --container-padding: var(--space-md);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: hsl(var(--ink));
  background-color: hsl(var(--bg));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-4xl);
  }
  
  h2 {
    font-size: var(--font-size-3xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-5xl);
  }
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px; /* Touch target */
}

.btn:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Button Variants */
.btn-primary {
  background: hsl(var(--primary));
  color: white;
  border-color: hsl(var(--primary));
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  border-color: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: white;
  border-color: hsl(var(--secondary));
}

.btn-secondary:hover {
  background: hsl(var(--secondary) / 0.9);
  border-color: hsl(var(--secondary) / 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

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

/* Button Sizes */
.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-base);
  min-height: 52px;
}

@media (min-width: 768px) {
  .btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-lg);
  }
}

/* Utility Classes */
.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
  
  .btn.desktop-only {
    display: inline-flex;
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: none;
}

/* Header */
.header {
  background: hsl(var(--bg));
  border-bottom: 1px solid hsl(var(--border));
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.logo h1 {
  font-size: var(--font-size-xl);
  color: hsl(var(--primary));
  margin-bottom: 0;
}

.tagline {
  font-size: var(--font-size-xs);
  color: hsl(var(--muted));
  font-weight: 500;
}

.nav {
  display: flex;
  gap: var(--space-xl);
}

.nav a {
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color var(--transition-base);
}

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

/* Hero Section */
.hero {
  padding: var(--space-2xl) 0;
  background: var(--gradient-subtle);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-3xl) 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gradient-accent);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.countdown {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-family: monospace;
}

.hero-title {
  margin-bottom: var(--space-md);
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: hsl(var(--muted));
  margin-bottom: var(--space-xl);
}

.hero-benefits {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.hero-benefits li {
  padding: var(--space-xs) 0;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
  }
}

.hero-visual {
  text-align: center;
}

.hero-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  height: auto;
}

/* Value Section */
.value {
  padding: var(--space-3xl) 0;
}

.value-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: hsl(var(--bg));
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.3);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-lg);
}

.value-card h3 {
  margin-bottom: var(--space-md);
  color: hsl(var(--ink));
}

.value-card p {
  color: hsl(var(--muted));
  margin-bottom: 0;
  max-width: none;
}

/* Social Proof Section */
.proof {
  padding: var(--space-3xl) 0;
  background: hsl(var(--bg-soft));
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: hsl(var(--primary));
}

.stat-label {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted));
  font-weight: 500;
}

.testimonials {
  display: grid;
  gap: var(--space-xl);
}

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

.testimonial-card {
  background: hsl(var(--bg));
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.stars {
  margin-bottom: var(--space-md);
  color: hsl(var(--accent));
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: var(--space-md);
  max-width: none;
}

.testimonial-card cite {
  font-weight: 600;
  color: hsl(var(--primary));
  font-style: normal;
}

/* Story Section */
.story {
  padding: var(--space-3xl) 0;
}

.story-content {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .story-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.problem {
  background: hsl(var(--error) / 0.05);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border-left: 4px solid hsl(var(--error));
}

.problem h3 {
  color: hsl(var(--error));
  margin-bottom: var(--space-lg);
}

.problem li {
  padding: var(--space-xs) 0;
  color: hsl(var(--ink));
}

.solution {
  background: hsl(var(--success) / 0.05);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border-left: 4px solid hsl(var(--success));
}

.solution h3 {
  color: hsl(var(--success));
  margin-bottom: var(--space-lg);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(var(--success));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: var(--space-xs);
  color: hsl(var(--ink));
}

.step-content p {
  color: hsl(var(--muted));
  margin-bottom: 0;
  max-width: none;
}

/* Benefit Section */
.benefit {
  padding: var(--space-3xl) 0;
  background: hsl(var(--bg-soft));
}

.benefit-content {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .benefit-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.benefit-list {
  background: hsl(var(--bg));
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.benefit-list h3 {
  color: hsl(var(--primary));
  margin-bottom: var(--space-lg);
}

.benefit-list li {
  padding: var(--space-xs) 0;
  color: hsl(var(--ink));
}

.feature-benefit-table {
  background: hsl(var(--bg));
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.feature-benefit-table h3 {
  color: hsl(var(--primary));
  margin-bottom: var(--space-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid hsl(var(--border));
}

th {
  background: hsl(var(--bg-soft));
  font-weight: 600;
  color: hsl(var(--primary));
}

td {
  color: hsl(var(--ink));
}

/* Pricing Section */
.pricing {
  padding: var(--space-3xl) 0;
}

.promo-box {
  background: var(--gradient-accent);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.promo-box h3 {
  margin-bottom: var(--space-md);
}

.promo-offers {
  margin-bottom: var(--space-lg);
}

.promo-offers p {
  margin-bottom: var(--space-xs);
  max-width: none;
}

.promo-countdown {
  font-weight: 600;
  font-family: monospace;
}

.pricing-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

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

.pricing-card {
  background: hsl(var(--bg));
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
}

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

.pricing-card.featured {
  border-color: hsl(var(--primary));
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--primary));
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.pricing-header {
  margin-bottom: var(--space-xl);
}

.pricing-header h3 {
  margin-bottom: var(--space-md);
  color: hsl(var(--ink));
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.price-amount {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: hsl(var(--primary));
}

.price-unit {
  font-size: var(--font-size-lg);
  color: hsl(var(--muted));
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-features ul {
  text-align: left;
}

.pricing-features li {
  padding: var(--space-xs) 0;
  color: hsl(var(--ink));
}

.addon-services {
  background: hsl(var(--bg-soft));
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3xl);
}

.addon-services h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: hsl(var(--primary));
}

.addon-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: hsl(var(--bg));
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--border));
}

.addon-name {
  font-weight: 500;
  color: hsl(var(--ink));
}

.addon-price {
  font-weight: 600;
  color: hsl(var(--primary));
}

.pricing-cta {
  text-align: center;
}

/* Services Section */
.services {
  padding: var(--space-3xl) 0;
  background: hsl(var(--bg-soft));
}

.services-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: hsl(var(--bg));
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.service-icon {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.service-card h3 {
  margin-bottom: var(--space-md);
  color: hsl(var(--primary));
}

.service-card p {
  color: hsl(var(--muted));
  margin-bottom: 0;
  max-width: none;
}

.area-info,
.hours-info {
  background: hsl(var(--bg));
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.area-info h3,
.hours-info h3 {
  color: hsl(var(--primary));
  margin-bottom: var(--space-lg);
  text-align: center;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.area-item {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.area-note {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted));
  text-align: center;
  margin-bottom: 0;
  max-width: none;
}

.hours-info {
  text-align: center;
  margin-bottom: 0;
}

.hours-info p {
  margin-bottom: var(--space-xs);
  max-width: none;
}

/* FAQ Section */
.faq {
  padding: var(--space-3xl) 0;
}

.faq-list {
  margin-bottom: var(--space-3xl);
}

.faq-item {
  background: hsl(var(--bg));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-item:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.faq-item summary {
  padding: var(--space-lg);
  font-weight: 600;
  color: hsl(var(--ink));
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary:hover {
  background: hsl(var(--bg-soft));
  color: hsl(var(--primary));
}

.faq-item summary::marker {
  content: '';
}

.faq-item summary::after {
  content: '+';
  font-size: var(--font-size-xl);
  font-weight: 300;
  color: hsl(var(--primary));
  transition: transform var(--transition-base);
}

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

.faq-content {
  padding: 0 var(--space-lg) var(--space-lg);
  color: hsl(var(--muted));
}

.faq-content p {
  margin-bottom: 0;
  max-width: none;
}

.faq-cta {
  text-align: center;
}

.faq-cta p {
  margin-bottom: var(--space-lg);
  max-width: none;
}

/* Final CTA Section */
.cta-final {
  padding: var(--space-3xl) 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: var(--space-lg);
}

.cta-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
  max-width: none;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-final .btn-primary {
  background: white;
  color: hsl(var(--primary));
  border-color: white;
}

.cta-final .btn-primary:hover {
  background: hsl(var(--bg-soft));
  border-color: hsl(var(--bg-soft));
}

.cta-final .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-final .btn-secondary:hover {
  background: white;
  color: hsl(var(--primary));
}

/* Footer */
.footer {
  background: hsl(var(--ink));
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xs);
}

.footer-section p {
  max-width: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
}

.footer-section a:hover {
  color: white;
}

.contact-info {
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  max-width: none;
}

/* Sticky Mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsl(var(--bg));
  border-top: 1px solid hsl(var(--border));
  padding: var(--space-md);
  z-index: 40;
  display: none;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
}

.sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.sticky-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.sticky-price {
  font-weight: 700;
  color: hsl(var(--primary));
  font-size: var(--font-size-sm);
}

.sticky-feature {
  font-size: var(--font-size-xs);
  color: hsl(var(--muted));
}

.sticky-cta .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
  white-space: nowrap;
}

/* Animations & Interactions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
*:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .sticky-cta,
  .header,
  .countdown,
  .promo-badge {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
  
  .btn {
    border: 1px solid black !important;
    color: black !important;
    background: white !important;
  }
}/* End custom CSS */