/* =================================
   ROCKIMMOS V8 - CLEAN & PROFESSIONAL
   - Keine billigen Emojis
   - Saubere, dezente Hintergründe
   - Klarer Fokus auf nächsten Schritt
   - Nur 2 Pakete (Startpaket + Komplett)
   ================================= */

:root {
  --emerald: #0C6B58;
  --emerald-dark: #095445;
  --emerald-light: #148f76;
  --gold: #D4A574;
  --gold-light: #E5C9A8;
  --coral: #E07A5F;
  --coral-dark: #C96A50;
  --bg-light: #FAFAF9;
  --bg-warm: #F5F3F0;
  --text-dark: #2C3E50;
  --text-muted: #5D6D7E;
  --white: #FFFFFF;
  
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--emerald);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

.header-badge i {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
}

.header-gold-line {
  height: 3px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--gold) 50%, var(--emerald) 100%);
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s ease;
}

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

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  order: 1;
}

.hero-image {
  order: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  color: var(--emerald);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.title-accent {
  color: var(--coral);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  margin-left: -12px;
  box-shadow: var(--shadow-sm);
}

.proof-avatars img:first-child {
  margin-left: 0;
}

.proof-count {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-left: -12px;
  border: 3px solid var(--white);
}

.proof-text {
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.proof-text .stars {
  color: var(--gold);
  display: block;
  margin-bottom: 0.125rem;
  letter-spacing: 2px;
}

/* CTA */
.hero-cta {
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral);
  color: var(--white);
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,122,95,0.3);
}

.cta-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
}

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

/* === TRUST BAR === */
.trust-bar {
  background: var(--emerald);
  padding: 1.25rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.125rem;
}

/* === PROBLEM SECTION === */
.problem-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--emerald);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.section-intro {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: -2rem auto 3rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--coral);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.problem-icon i {
  color: var(--coral);
  font-size: 1.25rem;
}

.problem-card p {
  color: var(--text-dark);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.solution-bridge {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--emerald);
  color: var(--white);
  border-radius: var(--radius-md);
}

.bridge-text {
  font-size: 1.125rem;
  margin: 0;
}

/* === MAMA SECTION === */
.mama-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #FDF8F3 100%);
}

.mama-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold-light);
}

.mama-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.mama-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--coral) 0%, #E8907A 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mama-badge i {
  font-size: 0.875rem;
}

.mama-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.mama-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mama-content p strong {
  color: var(--text-dark);
}

.mama-signature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-light);
}

.mama-signature strong {
  font-size: 1.125rem;
  color: var(--emerald);
}

.mama-signature span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .mama-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  
  .mama-image {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .mama-content h2 {
    font-size: 1.5rem;
  }
}

/* === PROCESS SECTION === */
.process-section {
  padding: 80px 0;
  background: var(--bg-warm);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.step-content h3 {
  color: var(--emerald);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

/* === PACKAGES SECTION === */
.packages-section {
  padding: 80px 0;
  background: var(--white);
}

/* Urgency Banner */
.urgency-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D6 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: var(--gold); }
  50% { border-color: var(--coral); }
}

.urgency-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.urgency-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.urgency-text {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.urgency-text strong {
  color: var(--emerald);
}

.urgency-number {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.urgency-reason {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 600px) {
  .urgency-banner {
    flex-direction: column;
    text-align: center;
  }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.package-card {
  background: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

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

.package-card.featured {
  border: 2px solid var(--coral);
  position: relative;
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--coral);
  color: var(--white);
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--emerald);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.package-for {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.package-price {
  text-align: center;
  margin-bottom: 1rem;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin-right: 0.5rem;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald);
}

.package-save {
  text-align: center;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.package-promise {
  text-align: center;
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.9375rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid #F0F0F0;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: var(--gold);
  margin-top: 3px;
}

.btn-package,
.btn-package-featured {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.btn-package:hover {
  background: var(--emerald-dark);
}

.btn-package-featured {
  background: var(--coral);
  color: var(--white);
}

.btn-package-featured:hover {
  background: var(--coral-dark);
}

.package-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  background: none;
  border: none;
  color: var(--emerald);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.package-details-btn:hover {
  color: var(--gold);
}

.package-details {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
}

.package-details ul {
  list-style: none;
}

.package-details li {
  padding: 0.375rem 0;
  padding-left: 1rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  position: relative;
}

.package-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Guarantee */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid #E5E5E5;
}

.guarantee-box > i {
  font-size: 2rem;
  color: var(--emerald);
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.9375rem;
  color: var(--text-dark);
}

/* === SUCCESS STORY === */
.success-story-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FDF8F3 0%, var(--bg-warm) 100%);
}

.success-story {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--gold);
  position: relative;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.success-story h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--emerald);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.story-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold-light);
}

.story-quote {
  margin: 0;
  padding: 0;
}

.story-quote p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.story-quote p strong {
  color: var(--emerald);
}

.story-result {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  border-radius: var(--radius-md);
}

.result-item {
  text-align: center;
  color: var(--white);
}

.result-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.result-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.story-family {
  text-align: right;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .success-story {
    padding: 2rem 1.5rem;
  }
  
  .story-result {
    flex-direction: column;
    gap: 1rem;
  }
  
  .result-number {
    font-size: 1.5rem;
  }
}

/* === TESTIMONIALS === */
.testimonial-section {
  padding: 80px 0;
  background: var(--emerald-dark);
  color: var(--white);
}

.testimonial-section .section-title {
  color: var(--white);
}

.testimonial-section .section-intro {
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card-text {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.testimonial-card-text:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card-text blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.95);
}

.testimonial-card-text cite {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-style: normal;
}

.testimonial-card-text cite strong {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card-text cite span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Trust Badge */
.testimonial-trust {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.trust-badge-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.trust-rating {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
}

.trust-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.trust-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* Responsive Testimonials */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* Legacy support */
.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-video video {
  width: 100%;
  border-radius: var(--radius-md);
}

.testimonial-content blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-content cite {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* === BLOG TEASER === */
.blog-teaser-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.blog-teaser-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.blog-teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-teaser-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-teaser-card:hover .blog-teaser-image img {
  transform: scale(1.05);
}

.blog-teaser-content {
  padding: 1.25rem;
}

.blog-teaser-tag {
  display: inline-block;
  background: rgba(12, 107, 88, 0.1);
  color: var(--emerald);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.blog-teaser-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-teaser-cta {
  text-align: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--emerald);
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid var(--emerald);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--emerald);
  color: var(--white);
}

@media (max-width: 900px) {
  .blog-teaser-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* === FAQ === */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

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

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--emerald);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-dark);
  line-height: 1.7;
}

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

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-box > p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral);
  color: var(--white);
  padding: 1.125rem 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cta:hover {
  background: var(--coral-dark);
  transform: scale(1.03);
}

.cta-subtext {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

/* === ARTICLE HERO IMAGE === */
.article-hero-image {
  margin: 0 0 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.article-hero-image figcaption {
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

/* === TL;DR BOX (Blog Articles) === */
.tldr-box {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.tldr-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--emerald);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tldr-box-title i {
  color: var(--gold);
}

.tldr-box p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.tldr-box p strong {
  color: var(--emerald);
}

/* === FOOTER === */
.footer {
  background: #1E1E1E;
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 36px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9375rem;
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: #1E1E1E;
}

.footer-links h4 {
  color: var(--gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero-img {
    max-width: 350px;
  }
  
  .social-proof {
    justify-content: center;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .testimonial-card {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--emerald);
    flex-direction: column;
    padding: 1.5rem;
    transition: left 0.3s ease;
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.125rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .header-badge {
    display: none;
  }
  
  .trust-items {
    gap: 1.5rem;
  }
  
  .trust-item {
    font-size: 0.8125rem;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact,
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-items {
    flex-direction: column;
    gap: 1rem;
  }
}