:root {
  /* High-End HSL Color Palette */
  --hsl-sage: 144, 7%, 52%;
  --hsl-dark: 210, 29%, 24%;
  --hsl-anthracite: 0, 0%, 10%;
  --hsl-gold: 40, 48%, 56%;
  --hsl-warm-white: 40, 14%, 97%;

  --color-primary-sage: hsl(var(--hsl-sage));
  --color-primary-dark: hsl(var(--hsl-dark));
  --color-primary-anthracite: hsl(var(--hsl-anthracite));
  --color-warm-white: hsl(var(--hsl-warm-white));
  --color-accent-gold: hsl(var(--hsl-gold));
  --color-accent-blue: hsl(210, 20%, 28%);

  /* Glassmorphism Presets */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

  /* Typography - Moving to Outfit & Inter */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Borders */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-warm-white);
  color: var(--color-primary-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

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

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

ul {
  list-style: none;
}

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

/* Typography Utilities */
.text-gold {
  color: var(--color-accent-gold);
}

.text-blue {
  color: var(--color-accent-blue);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary-sage);
  color: white;
}

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

.btn-glow:hover {
  box-shadow: 0 0 25px rgba(144, 168, 151, 0.6), 0 10px 40px rgba(124, 144, 130, 0.4) !important;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-primary-sage);
  color: var(--color-primary-sage);
}

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

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

/* Glassmorphism Utility */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

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

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {

  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.reveal-on-scroll.is-hidden {
  /* DISABLED HIDING FOR STABILITY */
  opacity: 1;
  transform: none;
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.stagger-item,
.project-card,
.guarantee-card,
.testimonial-card-enhanced,
.stat-item {
  /* DISABLED HIDING FOR STABILITY */
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.is-revealed,
.project-card.is-revealed,
.guarantee-card.is-revealed,
.testimonial-card-enhanced.is-revealed,
.stat-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Portfolio Card Styles */
.project-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.project-image {
  height: 350px;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}

.project-content {
  padding: 30px;
}

.chip {
  display: inline-block;
  background-color: #f0f0f0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.project-link {
  color: var(--color-primary-sage);
  font-weight: 700;
  font-size: 1rem;
}

.project-link:hover {
  text-decoration: underline;
}

/* Filter Buttons & Portfolio Header */
.section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
}

/* Parallax Elements */
.parallax-layer {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Why Us Section Enhanced */
.why-us-section {
  padding: 100px 0;
}

.why-us-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  /* Subtle texture */
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  padding: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-filter {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 10px 24px;
  border-radius: 4px;
  /* Rounded corners as per request - actually screenshot shows slightly rounded, let's go with 6px */
  cursor: pointer;
  font-family: var(--font-body);
  /* Screenshot looks serif-ish or very clean sans */
  font-family: var(--font-heading);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  color: #333;
  margin: 0 4px;
}

.btn-filter:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.btn-filter.active {
  background-color: var(--color-primary-sage);
  /* dark green from screenshot */
  color: white;
  border-color: var(--color-primary-sage);
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Hero v4: Immersive (Leaflife Style) */
.hero-immersive {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url('public/images/german_hero_garden.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  padding-right: 5%;
}

.hero-immersive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  animation: fadeSlideUp 1s ease-out forwards;
}

.hero-huge-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: white !important;
}

.hero-huge-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-hero-solid {
  background: white;
  color: #111;
  padding: 16px 36px;
  border-radius: 4px; /* Slightly squared for modern look */
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-hero-solid:hover {
  background: var(--color-accent-gold);
  color: white;
}

.btn-hero-link {
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-hero-link:hover {
  border-bottom-color: white;
}

/* Floating Mini Cards */
.glass-mini-card {
  position: absolute;
  z-index: 3;
  background: rgba(20, 25, 21, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  color: white;
  animation: fadeIn 1.2s ease-out forwards;
}

.card-top-right {
  top: 100px;
  right: 5%;
  min-width: 220px;
  border-radius: 20px;
}

.card-bottom-right {
  bottom: 80px;
  right: 5%;
  min-width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.mini-card-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 5px;
}

.mini-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.mini-card-circles {
  display: flex;
  gap: -10px;
}

.mini-card-circles .circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  margin-right: -10px;
}

.mini-card-icon {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
  color: white !important;
}

.mini-card-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .hero-immersive {
    padding-top: 100px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    justify-content: center;
  }

  .card-top-right, .card-bottom-right {
    display: none; /* Hide mini cards on mobile to keep it clean */
  }
}

/* Process Section v2 */
.process-wrapper {
  position: relative;
  padding: 60px 0;
}

/* The horizontal line connecting steps */
.process-line {
  position: absolute;
  top: 50px;
  /* Adjust based on badge position */
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
  display: block;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.process-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-badge {
  width: 60px;
  height: 60px;
  background: var(--color-primary-sage);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  border: 4px solid white;
  /* Cutout effect on line */
  box-shadow: 0 4px 10px rgba(124, 144, 130, 0.3);
  position: relative;
  /* To stack above line */
}

.process-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
    /* Hide horizontal line on mobile */
  }
}

/* ============================================
   TRUST-BUILDING SECTIONS
   ============================================ */

/* Stats / Social Proof Section */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary-anthracite) 0%, #2a2a2a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('public/images/bg_texture_luxury_1768295626819.png') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-sublabel {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none;
  }
}

/* Partner Logos Section */
.partner-section {
  background: var(--color-warm-white);
  padding: 80px 0;
  text-align: center;
}

.partner-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logos:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-top: 40px;
}

/* Guarantee Section */
.guarantee-section {
  background: linear-gradient(135deg, var(--color-primary-anthracite) 0%, #151515 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.guarantee-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.guarantee-section .container {
  position: relative;
  z-index: 1;
}

.guarantee-section h2 {
  color: white !important;
}

.guarantee-section p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.guarantee-grid > * {
  flex: 1 1 250px;
  display: flex;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.guarantee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(197, 160, 89, 0.3);
}

.guarantee-card:hover::before {
  transform: scaleX(1);
}

.guarantee-icon {
  width: 75px;
  height: 75px;
  background: rgba(197, 160, 89, 0.08); /* Transparent gold */
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: var(--color-accent-gold);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.guarantee-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.guarantee-card p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Enhanced Testimonials */
.testimonials-enhanced {
  background: var(--color-primary-anthracite);
  padding: 100px 0;
  position: relative;
}

.testimonials-enhanced h2 {
  color: white;
  text-align: center;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
}

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

.testimonial-card-enhanced {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card-enhanced:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

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

.testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--color-accent-gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-sage), var(--color-accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
}

.testimonial-info strong {
  color: white;
  display: block;
  margin-bottom: 3px;
}

.testimonial-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.testimonial-project {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.testimonial-project strong {
  color: var(--color-primary-sage);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Before/After Showcase */
.before-after-section {
  background: var(--color-warm-white);
  padding: 100px 0;
}

.before-after-container {
  max-width: 900px;
  margin: 0 auto;
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  /* Prevent scrolling while dragging */
}

.before-after-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.before-image {
  z-index: 1;
}

.after-image {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: white;
  z-index: 3;
  cursor: ew-resize;
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3Cpolyline points='21 18 15 12 21 6'%3E%3C/polyline%3E%3Cpolyline points='9 18 3 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.before-after-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.ba-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ba-label.before {
  color: #888;
}

.ba-label.after {
  color: var(--color-primary-sage);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-sage) 0%, #6a7d70 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  background: white;
  color: var(--color-primary-sage);
  padding: 15px 40px;
  font-size: 1rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trust-badge-icon {
  font-size: 1.3rem;
}

/* Section 2: Certainty vs. Fear */
.section-certainty {
  background-color: var(--color-warm-white);
  padding: 100px 0;
}

.certainty-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--color-primary-dark);
}

.fear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 4rem;
}

.fear-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #e74c3c;
  /* Red accent for "fear" */
}

.fear-item h4 {
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.belief-breaker {
  background-color: var(--color-primary-anthracite);
  color: white;
  padding: 50px;
  border-radius: 20px;
  margin-top: 4rem;
  text-align: center;
}

.belief-breaker h3 {
  color: var(--color-accent-gold);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.comp-item {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.comp-item.highlight {
  border: 1px solid var(--color-accent-gold);
}

.price-tag {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-top: 10px;
}

@media (max-width: 768px) {

  .fear-grid,
  .comparison-box {
    grid-template-columns: 1fr;
  }
}

/* Section 3: Digital Twin */
.digital-twin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.twin-pillar {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.twin-pillar:hover {
  transform: translateY(-10px);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.pillar-benefit {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: var(--color-primary-sage);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Section 4: Grand Slam Offer */
.offer-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 50px 0;
  text-align: left;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.offer-comparison-table th,
.offer-comparison-table td {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.offer-comparison-table th {
  background-color: #f9f9f9;
  font-family: var(--font-heading);
  font-weight: 700;
}

.offer-highlight-row {
  background-color: rgba(124, 144, 130, 0.05);
  font-weight: 600;
}

.offer-highlight-row td {
  border-top: 2px solid var(--color-primary-sage);
  border-bottom: 2px solid var(--color-primary-sage);
}

.offer-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--color-primary-sage);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.offer-card-v2 {
  background-color: var(--color-primary-anthracite);
  color: white;
  padding: 80px 40px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-card-v2::before {
  content: 'OFFER';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.03;
  color: white;
}

@media (max-width: 900px) {
  .digital-twin-grid {
    grid-template-columns: 1fr;
  }

  .offer-comparison-table {
    display: block;
    overflow-x: auto;
  }
}

/* ============================================
   GLOBAL NAVIGATION (TRANSPARENT HEADER)
   ============================================ */
.site-header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding-bottom: 20px;
}

.top-nav-links a {
  color: white !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.top-nav-links a:hover {
  color: white;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.desktop-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
}

.desktop-nav a:hover {
  color: var(--color-accent-gold);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-primary-dark);
  padding: 5px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary-dark);
  padding: 5px;
}

@media (max-width: 900px) {
  .hamburger-menu {
    display: block;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }
}

/* ============================================
   GLOBAL FOOTER
   ============================================ */
.site-footer {
  background-color: #111;
  color: #666;
  padding: 60px 0;
  text-align: center;
}

.site-footer h2 {
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  font-size: 0.8rem;
  margin-top: 40px;
}

.footer-links a {
  color: #888;
  margin: 0 10px;
}

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

/* ============================================
   PARTNER PAGE STYLES (Added Manually)
   ============================================ */

.partner-subtitle {
  font-size: 1.25rem;
  color: var(--color-primary-sage);
  font-weight: 500;
  line-height: 1.5;
}

/* Problem vs Deconstruction Cards */
.problem-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius-md);
  border-left: 4px solid #e74c3c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
}

.problem-list li {
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #555;
  font-size: 1.05rem;
}

.problem-icon {
  color: #e74c3c;
  font-weight: bold;
}

.insight-card {
  padding: 40px;
  height: 100%;
}

.insight-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  font-size: 1.05rem;
  color: #555;
}

.insight-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary-sage);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Solution / Identity Box */
.solution-box {
  background-color: var(--color-primary-anthracite);
  color: white;
  padding: 60px 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Background pattern for solution box */
.solution-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.solution-pills {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.pill-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.pill-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent-gold);
  transform: translateY(-3px);
  color: var(--color-accent-gold);
}

/* Benefits Section */
.benefits-card {
  background: white;
  padding: 50px 40px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.benefits-list li {
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.check-icon {
  background: var(--color-primary-sage);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.benefit-content strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.benefit-content span {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA Box */
.cta-box {
  text-align: center;
  margin-top: 80px;
  padding: 60px 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.support-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-list li::before {
  content: '✔';
  color: var(--color-accent-gold);
  font-weight: bold;
}