/*
 * PuriCell - Modern Organic Air & Dust-Trapper Design System
 * Highly optimized for performance, visual quality, and conversion
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-accent-blue: #ecf4f8; /* Soft blue tint */
  --bg-accent-green: #eefdf6; /* Soft green tint */
  
  --primary-green: #10b981; /* Fresh Leaf Green */
  --primary-green-hover: #059669;
  --primary-green-glow: rgba(16, 185, 129, 0.2);
  
  --primary-blue: #0284c7; /* Bottom canister blue */
  --primary-blue-hover: #0369a1;
  --primary-blue-glow: rgba(2, 132, 199, 0.2);

  --accent-gold: #f59e0b; /* CTA Gold */
  --accent-gold-hover: #d97706;
  --accent-gold-glow: rgba(245, 158, 11, 0.35);

  --accent-red: #ef4444; /* Urgency red */
  
  --text-dark: #0f172a; /* Slate 900 */
  --text-muted: #475569; /* Slate 600 */
  --text-light: #64748b; /* Slate 500 */
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;
  --border-focus: #cbd5e1;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout constraints */
  --max-width: 1140px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.bg-secondary-section {
  background-color: var(--bg-secondary);
}

.bg-accent-section {
  background-color: var(--bg-accent-blue);
}

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

.badge-success {
  background-color: var(--bg-accent-green);
  color: var(--primary-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-promo {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--text-white);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
}

.highlight-text {
  color: var(--primary-green);
}

/* Common Section Heading style */
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Primary buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-gold), #f59e0b 50%, #ea580c);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: 8px;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
  border: 1px solid rgba(217, 119, 6, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: all 0.5s ease;
  animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
  0% { left: -60%; }
  15% { left: 130%; }
  100% { left: 130%; }
}

/* Header Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

header.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dark);
}

.logo span {
  color: var(--primary-green);
}

.logo-icon {
  color: var(--primary-green);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.nav-cta-btn {
  background-color: var(--bg-accent-green);
  color: var(--primary-green);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta-btn:hover {
  background-color: var(--primary-green);
  color: var(--text-white);
  border-color: var(--primary-green);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--bg-accent-green) 0%, rgba(255,255,255,0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-headline {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.hero-headline span {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.hero-bullets svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.hero-price strong {
  font-size: 1.8rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  display: block;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, var(--bg-accent-blue) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Infinite Ribbon Scroller */
.scroller-container {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.scroller {
  display: flex;
  white-space: nowrap;
  gap: 4rem;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.scroller p {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scroller p::after {
  content: '•';
  color: var(--primary-green);
  margin-left: 4rem;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border-color: var(--primary-green);
}

.step-num {
  position: absolute;
  top: -20px;
  background-color: var(--primary-green);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px var(--primary-green-glow);
}

.step-icon {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  background-color: var(--bg-accent-green);
  padding: 1rem;
  border-radius: 50%;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

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

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  border-color: var(--border-focus);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature-icon-wrapper {
  background-color: var(--bg-accent-blue);
  color: var(--primary-blue);
  padding: 0.75rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card:nth-child(even) .feature-icon-wrapper {
  background-color: var(--bg-accent-green);
  color: var(--primary-green);
}

.feature-card-title {
  font-size: 1.2rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Product Spotlight block */
.spotlight-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
}

.spotlight-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.spotlight-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.spotlight-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.spotlight-text {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.spotlight-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-val {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-primary);
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--bg-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.comparison-table th.brand-col {
  background-color: var(--bg-accent-green);
  color: var(--primary-green);
  text-align: center;
  font-size: 1.25rem;
}

.comparison-table td.brand-cell {
  background-color: rgba(16, 185, 129, 0.03);
  text-align: center;
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .feature-name {
  font-weight: 600;
  color: var(--text-dark);
}

.comparison-table .other-cell {
  text-align: center;
  color: var(--text-muted);
}

.comparison-table svg.check {
  color: var(--primary-green);
}

.comparison-table svg.cross {
  color: var(--accent-red);
}

/* Reviews Summary score */
.reviews-summary {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3.5rem;
  align-items: center;
}

.score-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-num {
  font-size: 4.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  color: var(--text-dark);
}

.score-stars {
  margin: 0.8rem 0;
  display: flex;
  gap: 0.2rem;
  color: #f59e0b;
}

.score-stars svg {
  width: 20px;
  height: 20px;
}

.score-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.star-count {
  width: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bar-bg {
  flex-grow: 1;
  height: 8px;
  background-color: #cbd5e1;
  border-radius: 9999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background-color: #f59e0b;
  border-radius: 9999px;
}

.bar-percent {
  width: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  background-color: var(--bg-primary);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--border-color);
}

.reviewer-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.reviewer-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reviewer-meta span.verified {
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.review-stars-wrapper {
  text-align: right;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.review-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.review-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.review-helpful {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.helpful-btn:hover {
  background-color: var(--border-color);
  color: var(--text-dark);
}

/* Expert Recommendation */
.expert-box {
  background-color: var(--bg-accent-blue);
  border-radius: 16px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.expert-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.expert-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.expert-name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.expert-title {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expert-content {
  position: relative;
}

.expert-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.expert-quote::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  top: -45px;
  left: -20px;
  color: rgba(2, 132, 199, 0.1);
}

.expert-sig {
  height: 60px;
  opacity: 0.85;
}

/* Accordion FAQs */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-primary);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-focus);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: left;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--text-light);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.03);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 1.8rem 1.5rem 1.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-content-inner {
  border-top-color: var(--border-color);
}

/* Promo Coupon Box */
.promo-box {
  background-color: var(--bg-secondary);
  border: 2px dashed var(--primary-green);
  border-radius: 16px;
  padding: 3.5rem;
  position: relative;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.promo-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.promo-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0.8rem 0;
}

.promo-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.promo-price-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.promo-old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.2rem;
}

.promo-new-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-green);
  font-family: var(--font-heading);
}

.promo-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.promo-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.promo-img-container {
  display: flex;
  justify-content: center;
}

.promo-image {
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.08));
}

/* Footer styling */
.site-footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--primary-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.footer-brand h4 span {
  color: var(--primary-green);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h5, .footer-contact h5 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 3px;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact li svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  opacity: 0.85;
}

.payment-icons svg {
  height: 24px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.8rem;
  }
  .features-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    gap: 3rem 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-headline {
    font-size: 2.3rem;
  }
  .hero-bullets {
    display: inline-block;
    max-width: 400px;
    margin: 0 auto 2rem auto;
    text-align: left;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-cta-btn {
    display: none;
  }
  .steps-grid, .features-grid, .spotlight-block, .expert-box, .promo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .expert-box {
    padding: 2.5rem;
  }
  .promo-box {
    padding: 2.5rem;
  }
  .promo-new-price {
    font-size: 2.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
