/* ============================================
   ABN Homes - Modern Prefab Houses
   Mobile First CSS
   ============================================ */

/* CSS Variables */
:root {
  /* Colors - Inspired by nature and sustainability */
  --color-primary: #1B4332;
  --color-primary-light: #2D6A4F;
  --color-primary-dark: #081C15;
  --color-secondary: #8B4557;
  --color-accent: #D4A373;
  --color-accent-light: #E9C46A;
  --color-white: #FFFFFF;
  --color-off-white: #FAFAF8;
  --color-cream: #F5F1EB;
  --color-gray-light: #E8E6E1;
  --color-gray: #7D7D7D;
  --color-gray-dark: #3D3D3D;
  --color-black: #0D0D0D;
  --color-dark: #0D0D0D;

  /* Typography - Modern & Distinctive */
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: var(--space-sm);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

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

.btn-white:hover {
  background-color: var(--color-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
  transition: all var(--transition-base);
}

/* Transparent header at top for pages with hero */
.header.header-transparent {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.header.header-transparent .logo {
  color: var(--color-white);
}

.header.header-transparent .logo span {
  color: var(--color-accent);
}

.header.header-transparent .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.header.header-transparent .nav-link:hover,
.header.header-transparent .nav-link.active {
  color: var(--color-white);
}

.header.header-transparent .btn-contact {
  background: var(--color-white);
  color: var(--color-primary);
}

.header.header-transparent .btn-contact:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.header.header-transparent .nav-toggle span {
  background-color: var(--color-white);
}

/* Scrolled state - back to solid */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
  box-shadow: var(--shadow-md);
}

.header.scrolled .logo {
  color: var(--color-primary);
}

.header.scrolled .logo span {
  color: var(--color-secondary);
}

.header.scrolled .nav-link {
  color: var(--color-gray-dark);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--color-primary);
}

.header.scrolled .btn-contact {
  background: var(--color-primary);
  color: var(--color-white);
}

.header.scrolled .nav-toggle span {
  background-color: var(--color-gray-dark);
}

/* Logo visible when header scrolled (remove white filter) */
.header.scrolled .logo-img {
  filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--space-md);
}

/* Ensure proper order on mobile: logo - nav - toggle */
.header-inner > .logo {
  order: 1;
}

.header-inner > .nav {
  order: 3;
}

.header-inner > .nav-toggle {
  order: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  z-index: 1002;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  flex-shrink: 0;
}


.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE NAVIGATION - Ultraslim Side Panel
   ============================================ */

@media (max-width: 768px) {
  /* Overlay backdrop */
  body.nav-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.nav-open {
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  padding: 0;
  z-index: 1001;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav.nav-open {
  right: 0;
  pointer-events: auto;
}

/* Nav header with close area */
.nav::before {
  content: '';
  display: block;
  height: 70px;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
  flex: 1;
}

.nav-list li {
  border-bottom: 1px solid var(--color-gray-light);
}

.nav-list li:last-child {
  border-bottom: none;
}

.nav-link {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-dark);
  padding: var(--space-md) var(--space-sm);
  position: relative;
  transition: all 0.2s ease;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(20px);
}

.nav.nav-open .nav-link {
  opacity: 1;
  transform: translateX(0);
}

/* Override transparent header styles for mobile menu */
.header.header-transparent .nav.nav-open .nav-link,
.header .nav.nav-open .nav-link {
  color: var(--color-gray-dark);
}

/* Staggered animation delays */
.nav.nav-open .nav-list li:nth-child(1) .nav-link { transition-delay: 0.05s; }
.nav.nav-open .nav-list li:nth-child(2) .nav-link { transition-delay: 0.1s; }
.nav.nav-open .nav-list li:nth-child(3) .nav-link { transition-delay: 0.15s; }
.nav.nav-open .nav-list li:nth-child(4) .nav-link { transition-delay: 0.2s; }
.nav.nav-open .nav-list li:nth-child(5) .nav-link { transition-delay: 0.25s; }

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-gray-lightest);
  padding-left: var(--space-md);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* Active link accent - side bar */
.nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 0 2px 2px 0;
}

.nav-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--color-gray-light);
  background: var(--color-gray-lightest);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0s;
}

.nav.nav-open .nav-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Mobile nav language switcher */
.nav .lang-switch {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  align-self: center;
}

.nav .lang-btn {
  color: var(--color-gray);
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.nav .lang-btn:hover {
  color: var(--color-primary);
}

.nav .lang-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Mobile nav CTA button */
.nav .nav-actions .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  justify-content: center;
}

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

/* Nav toggle animation enhancement */
  .nav-toggle.active span {
    background-color: var(--color-primary);
  }
}

/* Language Switcher - Enhanced Visibility */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-btn {
  position: relative;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background: transparent;
}

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

.lang-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(27, 67, 50, 0.3);
}

/* Transparent header lang switch */
.header.header-transparent .lang-switch {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.header.header-transparent .lang-btn {
  color: rgba(255, 255, 255, 0.85);
}

.header.header-transparent .lang-btn:hover {
  color: var(--color-white);
}

.header.header-transparent .lang-btn.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Scrolled header lang switch */
.header.scrolled .lang-switch {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
}

.header.scrolled .lang-btn {
  color: var(--color-gray-dark);
}

.header.scrolled .lang-btn:hover {
  color: var(--color-primary);
}

.header.scrolled .lang-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background-color: rgba(44, 85, 48, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-title span {
  display: block;
  color: var(--color-primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-gray-light);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image {
  display: none;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--space-3xl) 0;
  background-color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-description {
  color: var(--color-gray);
}

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

.feature-card {
  padding: var(--space-lg);
  background-color: var(--color-off-white);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  margin-bottom: var(--space-xs);
}

.feature-description {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   HOUSE MODELS SECTION
   ============================================ */
.models {
  padding: var(--space-3xl) 0;
  background-color: var(--color-off-white);
}

.models-grid {
  display: grid;
  gap: var(--space-lg);
}

.model-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.model-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.model-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.model-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.model-content {
  padding: var(--space-lg);
}

.model-name {
  margin-bottom: var(--space-xs);
}

.model-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gray-light);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-gray);
}

.spec-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.model-description {
  font-size: 0.9375rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-md);
}

.model-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 500;
  transition: gap var(--transition-fast);
}

.model-link:hover {
  gap: var(--space-sm);
}

.model-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SUSTAINABILITY SECTION
   ============================================ */
.sustainability {
  padding: var(--space-3xl) 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.sustainability .section-label {
  color: var(--color-accent);
}

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

.sustainability .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.sustainability-grid {
  display: grid;
  gap: var(--space-lg);
}

.sustainability-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.sustainability-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: var(--radius-md);
}

.sustainability-icon svg {
  width: 24px;
  height: 24px;
}

.sustainability-content h4 {
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

.sustainability-content p {
  color: var(--color-gray-dark);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: var(--space-3xl) 0;
  background-color: var(--color-white);
}

.process-steps {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-left: 70px;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 60px;
  width: 2px;
  height: calc(100% + var(--space-lg) - 60px);
  background-color: var(--color-gray-light);
}

.process-step:last-child::after {
  display: none;
}

.process-step h4 {
  margin-bottom: var(--space-xs);
}

.process-step p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   PROCESS V2 SECTION (Cohesive Design)
   ============================================ */
.process-v2 {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);
}

/* Timeline container */
.process-v2-timeline {
  position: relative;
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .process-v2-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .process-v2-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Connector line - horizontal on desktop */
.timeline-connector {
  display: none;
}

@media (min-width: 1024px) {
  .timeline-connector {
    display: block;
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--color-gray-light);
  }

  .timeline-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transition: width 1.5s ease;
  }

  .process-v2:hover .timeline-connector::after {
    width: 100%;
  }
}

/* Process step */
.process-v2-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Step number */
.step-number {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.step-number span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.process-v2-step:hover .step-number {
  background: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.process-v2-step:hover .step-number span {
  color: var(--color-white);
}

/* Step content */
.step-content {
  padding: 0 var(--space-sm);
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
  transition: color var(--transition-base);
}

.process-v2-step:hover .step-content h4 {
  color: var(--color-primary);
}

.step-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: var(--space-sm);
}

.step-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(27, 67, 50, 0.08);
  border-radius: 100px;
}

/* Summary stats */
.process-v2-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .process-v2-summary {
    flex-wrap: nowrap;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
  }
}

.summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .summary-item {
    border-right: 1px solid var(--color-gray-light);
    padding-right: var(--space-xl);
  }

  .summary-item:last-of-type {
    border-right: none;
  }
}

.summary-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.summary-label {
  font-size: 0.8125rem;
  color: var(--color-gray);
}

.summary-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  margin-left: auto;
}

.summary-link:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.summary-link svg {
  transition: transform var(--transition-base);
}

.summary-link:hover svg {
  transform: translateX(3px);
}

/* Staggered animation for steps */
.process-v2-step {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.process-v2-step:nth-child(2) { animation-delay: 0.1s; }
.process-v2-step:nth-child(3) { animation-delay: 0.2s; }
.process-v2-step:nth-child(4) { animation-delay: 0.3s; }
.process-v2-step:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   MODELS V2 - COHESIVE DESIGN
   ============================================ */
.models-v2 {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 50%, var(--color-off-white) 100%);
}

.models-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

/* Model Card */
.model-v2-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.06);
  border: 1px solid rgba(27, 67, 50, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 67, 50, 0.12);
  border-color: var(--color-accent);
}

/* Premium Card Variant */
.model-v2-card--premium {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(212, 163, 115, 0.05) 100%);
  border-color: var(--color-accent);
}

.model-v2-card--premium .model-v2-image {
  height: 100%;
  min-height: 320px;
}

.model-v2-card--premium .model-v2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}

/* Development Card */
.model-v2-card--development {
  opacity: 0.85;
}

.model-v2-card--development:hover {
  transform: none;
  box-shadow: var(--shadow-lg);
}

.model-v2-badge--development {
  background-color: var(--color-gray-light);
  color: var(--color-gray-dark);
}

.model-v2-badge--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.model-v2-development-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 220px;
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-gray-light) 100%);
  color: var(--color-gray);
}

.model-v2-development-placeholder svg {
  opacity: 0.5;
}

.model-v2-development-placeholder span {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.model-v2-development-notice {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-gray-light);
  font-size: 0.875rem;
  color: var(--color-gray);
  text-align: center;
}

/* Image Container */
.model-v2-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.model-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-v2-card:hover .model-v2-image img {
  transform: scale(1.08);
}

/* Overlay with CTA */
.model-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.9) 0%, rgba(27, 67, 50, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.model-v2-card:hover .model-v2-overlay {
  opacity: 1;
}

.model-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.model-v2-card:hover .model-v2-cta {
  transform: translateY(0);
}

.model-v2-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.model-v2-cta svg {
  transition: transform 0.3s ease;
}

.model-v2-cta:hover svg {
  transform: translateX(3px);
}

/* Content Area */
.model-v2-content {
  padding: var(--space-lg);
}

.model-v2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.model-v2-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(27, 67, 50, 0.08);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
}

.model-v2-badge--popular {
  background: var(--color-primary);
  color: var(--color-white);
}

.model-v2-badge--premium {
  background: linear-gradient(135deg, var(--color-accent) 0%, #C4936A 100%);
  color: var(--color-white);
}

.model-v2-surface {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
}

.model-v2-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
  transition: color 0.3s ease;
}

.model-v2-card:hover .model-v2-name {
  color: var(--color-primary);
}

.model-v2-desc {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Specs Grid */
.model-v2-specs {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(27, 67, 50, 0.1);
}

.model-v2-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.model-v2-spec .spec-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.model-v2-spec .spec-label {
  font-size: 0.75rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Footer CTA */
.models-v2-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(27, 67, 50, 0.1);
}

.models-v2-footer p {
  color: var(--color-gray);
  font-size: 1rem;
  margin: 0;
}

/* Staggered Animation */
.model-v2-card {
  opacity: 0;
  transform: translateY(30px);
  animation: modelCardIn 0.6s ease forwards;
}

.model-v2-card:nth-child(1) { animation-delay: 0.1s; }
.model-v2-card:nth-child(2) { animation-delay: 0.2s; }
.model-v2-card:nth-child(3) { animation-delay: 0.3s; }
.model-v2-card:nth-child(4) { animation-delay: 0.4s; }
.model-v2-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes modelCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .models-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-v2-card--premium {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .models-v2-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .model-v2-card--premium {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .model-v2-card--premium .model-v2-image {
    min-height: 220px;
  }

  .models-v2-footer {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .model-v2-image {
    height: 200px;
  }
}

/* ============================================
   FEATURES V2 - COHESIVE DESIGN
   ============================================ */
.features-v2 {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.features-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.feature-v2-card {
  background: var(--color-off-white);
  border-radius: 16px;
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.feature-v2-card:hover {
  transform: translateY(-6px);
  background: var(--color-white);
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.1);
  border-color: rgba(27, 67, 50, 0.1);
}

.feature-v2-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: transform 0.3s ease;
}

.feature-v2-card:hover .feature-v2-icon {
  transform: scale(1.1);
}

.feature-v2-icon svg {
  color: var(--color-white);
}

.feature-v2-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.feature-v2-desc {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Staggered Animation */
.feature-v2-card {
  opacity: 0;
  transform: translateY(20px);
  animation: featureCardIn 0.5s ease forwards;
}

.feature-v2-card:nth-child(1) { animation-delay: 0.1s; }
.feature-v2-card:nth-child(2) { animation-delay: 0.2s; }
.feature-v2-card:nth-child(3) { animation-delay: 0.3s; }
.feature-v2-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes featureCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .features-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-v2-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SUSTAINABILITY V2 - COHESIVE DESIGN
   ============================================ */
.sustainability-v2 {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.sustainability-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.sustainability-v2-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(27, 67, 50, 0.06);
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.04);
}

.sustainability-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 67, 50, 0.1);
  border-color: var(--color-accent);
}

.sustainability-v2-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(27, 67, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sustainability-v2-card:hover .sustainability-v2-icon {
  background: var(--color-primary);
}

.sustainability-v2-icon svg {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.sustainability-v2-card:hover .sustainability-v2-icon svg {
  color: var(--color-white);
}

.sustainability-v2-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

.sustainability-v2-content p {
  color: var(--color-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Staggered Animation */
.sustainability-v2-card {
  opacity: 0;
  transform: translateY(20px);
  animation: sustainCardIn 0.5s ease forwards;
}

.sustainability-v2-card:nth-child(1) { animation-delay: 0.05s; }
.sustainability-v2-card:nth-child(2) { animation-delay: 0.1s; }
.sustainability-v2-card:nth-child(3) { animation-delay: 0.15s; }
.sustainability-v2-card:nth-child(4) { animation-delay: 0.2s; }
.sustainability-v2-card:nth-child(5) { animation-delay: 0.25s; }
.sustainability-v2-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes sustainCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .sustainability-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sustainability-v2-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FINANCING V2 - COHESIVE DESIGN
   ============================================ */
.financing-v2 {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.financing-v2-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.03) 0%, rgba(212, 163, 115, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.financing-v2-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  flex: 1;
}

.financing-v2-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.financing-v2-feature:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.08);
}

.financing-v2-feature svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.financing-v2-feature span {
  font-size: 0.9375rem;
  color: var(--color-black);
  font-weight: 500;
}

.financing-v2-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.financing-v2-partner {
  font-size: 0.8125rem;
  color: var(--color-gray);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .financing-v2-content {
    flex-direction: column;
    text-align: center;
  }

  .financing-v2-features {
    grid-template-columns: 1fr;
  }

  .financing-v2-feature {
    justify-content: center;
  }
}

/* ============================================
   CTA V2 - COHESIVE DESIGN
   ============================================ */
.cta-v2 {
  padding: var(--space-3xl) 0;
  background: var(--color-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-v2-content {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.cta-v2-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-v2-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.cta-v2-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* Responsive */
@media (max-width: 640px) {
  .cta-v2-title {
    font-size: 1.875rem;
  }

  .cta-v2-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta,
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #6B3544 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-nav h5 {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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

/* ============================================
   MOBILE OPTIMIZATIONS (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  /* Better touch targets */
  .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }

  /* Hero section mobile - FIXED VERTICAL CENTERING */
  .hero,
  .home-hero,
  .home-hero-new,
  .page-hero,
  .page-hero-new {
    min-height: 100vh;
    min-height: 100svh; /* svh para mejor soporte móvil */
    height: auto;
    display: flex;
    align-items: center; /* Centrar verticalmente */
    padding-top: 70px; /* Espacio para header */
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .page-hero-new .container,
  .home-hero-new .container,
  .sustainability-hero-new .container,
  .contact-hero-new .container,
  .hero .container,
  .page-hero .container,
  .home-hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    width: 100%;
    gap: clamp(0.75rem, 2vh, 1.25rem);
    padding: var(--space-md) 0;
  }

  /* Reducir espaciado entre elementos del hero en móvil */
  .hero-badge {
    margin-bottom: var(--space-xs);
  }

  .hero-title {
    margin-bottom: var(--space-xs);
  }

  .hero-description {
    margin-bottom: var(--space-sm);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: var(--space-sm);
    gap: var(--space-sm);
  }

  /* Feature cards */
  .hero-feature {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
  }

  .hero-feature-icon {
    width: 28px;
    height: 28px;
  }

  .hero-features,
  .home-hero .hero-features,
  .page-hero .hero-features,
  .page-hero-new .hero-features {
    display: none !important;
  }

  /* Section spacing mobile */
  .section,
  section {
    padding: var(--space-2xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-lg);
  }

  /* Cards grid mobile */
  .features-grid,
  .models-grid,
  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Model cards mobile */
  .model-card {
    margin-bottom: var(--space-sm);
  }

  .model-card-image {
    height: 200px;
  }

  /* Model specs grid mobile - prevent overflow */
  .model-specs-grid {
    gap: var(--space-xs);
  }

  .spec-box {
    padding: var(--space-sm);
  }

  .spec-value {
    font-size: 1.25rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .spec-name {
    font-size: 0.7rem;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  /* Process steps mobile */
  .process-step {
    padding: var(--space-md);
  }

  /* Hide decorative elements on mobile */
  .hero-scroll-indicator {
    display: none;
  }

  /* Stats mobile */
  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .hero-stat {
    flex: 1 1 calc(33.333% - var(--space-sm));
    min-width: 80px;
  }

  /* Page hero badge */
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

/* ============================================
   TABLET OPTIMIZATIONS (481px - 767px)
   ============================================ */
@media (min-width: 481px) and (max-width: 767px) {
  /* Two column grids on tablet-ish screens */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Better footer layout */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  /* Hero adjustments */
  .hero-buttons {
    flex-direction: row;
    width: auto;
  }

  .hero-buttons .btn {
    width: auto;
  }
}

/* ============================================
   RESPONSIVE - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  /* Header Desktop - Reset mobile nav styles */
  .header-inner > .nav {
    order: 2;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    overflow: visible;
    flex: 1;
    justify-content: flex-end;
    clip-path: none;
    pointer-events: auto;
    transition: none;
  }

  .nav::before,
  .nav::after {
    display: none;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    padding: 0;
    text-align: left;
    position: static;
    z-index: auto;
  }

  .nav-list li {
    overflow: visible;
    border-bottom: none;
    list-style: none;
  }

  .nav-link {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: var(--space-xs) 0;
    color: var(--color-gray-dark);
    letter-spacing: 0;
    transform: none;
    opacity: 1;
    transition: color var(--transition-fast);
  }

  .nav-link::before {
    display: none;
  }

  .nav-link::after {
    display: none;
  }

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

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }

  .nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    margin-top: 0;
    padding: 0;
    border-top: none;
    margin-left: 0;
    opacity: 1;
    transform: none;
    transition: none;
    background: transparent;
  }

  /* Reset mobile nav button styles */
  .nav .nav-actions .btn,
  .nav-actions .btn {
    width: auto;
    min-width: auto;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: none;
  }

  .nav .nav-actions .btn:hover,
  .nav-actions .btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
  }

  /* Reset mobile lang switch */
  .nav .lang-switch {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav .lang-btn {
    color: var(--color-gray-dark);
    padding: 6px 14px;
    font-size: 0.8125rem;
  }

  .nav .lang-btn:hover {
    color: var(--color-primary);
  }

  .nav .lang-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(27, 67, 50, 0.3);
  }

  /* Header transparent on desktop - white text over hero */
  .header.header-transparent .nav-link {
    color: rgba(255, 255, 255, 0.9);
  }

  .header.header-transparent .nav-link:hover,
  .header.header-transparent .nav-link.active {
    color: var(--color-white);
  }

  .header.header-transparent .nav .lang-switch {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header.header-transparent .nav .lang-btn {
    color: rgba(255, 255, 255, 0.8);
  }

  .header.header-transparent .nav .lang-btn:hover {
    color: var(--color-white);
  }

  .header.header-transparent .nav .lang-btn.active {
    background: var(--color-white);
    color: var(--color-primary);
  }

  .header.header-transparent .nav-actions .btn {
    background: var(--color-white);
    color: var(--color-primary);
  }

  .header.header-transparent .nav-actions .btn:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
  }

  /* Hero */
  .hero-content {
    max-width: 50%;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-stats {
    max-width: 400px;
  }

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

  .stat-label {
    font-size: 0.8125rem;
  }

  .hero-image {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    box-shadow: var(--shadow-xl);
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Models */
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sustainability */
  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .process-step::after {
    display: none;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: row;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   RESPONSIVE - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  /* Features */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-card {
    padding: var(--space-xl);
  }

  /* Models */
  .models-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .model-image {
    height: 200px;
  }

  /* Sustainability */
  .sustainability-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Process */
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
  padding: calc(70px + var(--space-3xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-title {
  margin-bottom: var(--space-md);
}

.page-hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  margin-bottom: 0;
}

/* ============================================
   MODELS DETAIL PAGE
   ============================================ */
.models-detail {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.model-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.model-detail-card:last-child {
  border-bottom: none;
}

.model-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Clickable gallery link */
a.model-detail-gallery.model-card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  cursor: pointer;
}

a.model-detail-gallery.model-card-link::after {
  content: 'Ver galeria completa';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(27, 67, 50, 0.95);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

a.model-detail-gallery.model-card-link:hover::after {
  opacity: 1;
}

a.model-detail-gallery.model-card-link:hover .model-main-image img {
  transform: scale(1.05);
}

.model-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.model-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.model-thumbnails img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity var(--transition-fast), transform 0.3s ease;
}

.model-thumbnails img:hover {
  opacity: 0.8;
}

/* Clickable title link */
.model-title-link {
  display: inline-block;
  transition: color 0.3s ease;
}

.model-title-link h2 {
  transition: color 0.3s ease;
}

.model-title-link:hover h2 {
  color: var(--color-primary);
}

.model-detail-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xs);
}

.model-tagline {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
}

.model-badge-popular {
  background-color: var(--color-primary);
}

.model-badge-premium {
  background-color: var(--color-accent);
  color: var(--color-black);
}

/* Models In Development */
.model-badge-development {
  background-color: var(--color-gray-light);
  color: var(--color-gray-dark);
}

.model-in-development {
  overflow: hidden;
  min-width: 0;
}

.model-in-development .model-detail-gallery {
  pointer-events: none;
}

.model-in-development .model-detail-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.model-in-development .model-detail-content p {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.model-placeholder {
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-gray-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-radius: var(--radius-lg);
}

.development-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-gray);
}

.development-overlay svg {
  opacity: 0.5;
}

.development-overlay span {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
}

.model-development-text {
  color: var(--color-gray);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.model-in-development .model-thumbnails {
  display: none;
}

.model-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.spec-box {
  padding: var(--space-md);
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  text-align: center;
}

.spec-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.spec-unit {
  font-size: 1rem;
  color: var(--color-primary);
}

.spec-name {
  display: block;
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-top: var(--space-xs);
}

.model-features {
  margin-bottom: var(--space-lg);
}

.model-features h4 {
  margin-bottom: var(--space-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
}

.model-features ul {
  display: grid;
  gap: var(--space-xs);
}

.model-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  color: var(--color-gray-dark);
  font-size: 0.9375rem;
}

.model-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin-top: 0.5em;
  flex-shrink: 0;
}

.model-price {
  padding: var(--space-md);
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.price-from {
  display: block;
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: var(--space-xs);
}

.price-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray);
  margin-top: var(--space-xs);
}

.model-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Customization CTA */
.customization-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
}

.customization-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.customization-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SUSTAINABILITY PAGE
   ============================================ */

/* New Sustainability Hero */
.sustainability-hero-new {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 15;
  padding-top: 70px; /* Header height */
  box-sizing: border-box;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.92) 0%,
    rgba(26, 58, 30, 0.88) 50%,
    rgba(44, 85, 48, 0.85) 100%
  );
}

.sustainability-hero-new .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100dvh - 70px - 2rem);
  width: 100%;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.25rem, 3vh, 2rem);
  width: 100%;
  flex: 1;
  min-height: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: clamp(0.4rem, 0.8vh, 0.6rem) clamp(0.875rem, 1.5vw, 1.25rem);
  background: rgba(196, 163, 90, 0.2);
  border: 1px solid var(--color-accent);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, #E8D5A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #D4B86A 100%);
  border-radius: var(--radius-sm);
  color: var(--color-primary-dark);
}

.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.625rem, 1.2vh, 0.875rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  text-decoration: none;
  transition: all var(--transition-base);
}

.hero-scroll-btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.hero-scroll-btn svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}

/* Decorative leaves */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.leaf {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(196, 163, 90, 0.3) 0%, rgba(196, 163, 90, 0.1) 100%);
  border-radius: 0 70% 0 70%;
  animation: float 6s ease-in-out infinite;
}

.leaf-1 {
  top: 15%;
  right: 10%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.leaf-2 {
  bottom: 20%;
  right: 5%;
  width: 120px;
  height: 120px;
  animation-delay: 2s;
  opacity: 0.6;
}

.leaf-3 {
  top: 40%;
  right: 15%;
  width: 60px;
  height: 60px;
  animation-delay: 4s;
  opacity: 0.4;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Page Hero Base - Shared styles for all page heroes */
.page-hero-new {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 15;
  padding-top: 70px; /* Header height */
  box-sizing: border-box;
}

.page-hero-new .hero-background,
.page-hero-new .hero-bg-image,
.page-hero-new .hero-overlay,
.page-hero-new .container,
.page-hero-new .hero-content,
.page-hero-new .hero-badge,
.page-hero-new .hero-title,
.page-hero-new .hero-description,
.page-hero-new .hero-features,
.page-hero-new .hero-feature,
.page-hero-new .hero-feature-icon,
.page-hero-new .hero-scroll-btn,
.page-hero-new .hero-decoration,
.page-hero-new .leaf {
  /* Inherits from sustainability-hero-new styles */
}

/* Consistent hero container for all hero types */
.page-hero-new .container,
.home-hero-new .container,
.sustainability-hero-new .container,
.contact-hero-new .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100dvh - 70px - 2rem);
  width: 100%;
  padding-top: clamp(1rem, 3vh, 2rem);
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
}

/* Models Hero - Blue/Teal accent */
.models-hero-new .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.90) 0%,
    rgba(26, 58, 30, 0.85) 50%,
    rgba(44, 85, 48, 0.80) 100%
  );
}

/* Process Hero - Orange/Warm accent */
.process-hero-new .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.88) 0%,
    rgba(139, 69, 87, 0.75) 100%
  );
}

/* Process Total Time Section */
.process-total-time {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  text-align: center;
}

.process-total-time h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.process-total-time p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* About Hero - Purple/Deep accent */
.about-hero-new .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.85) 0%,
    rgba(26, 58, 30, 0.90) 100%
  );
}

/* Home Hero - Primary green with depth */
.home-hero-new .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.92) 0%,
    rgba(44, 85, 48, 0.85) 50%,
    rgba(27, 67, 50, 0.90) 100%
  );
}

.home-hero-new .hero-content {
  max-width: 900px;
}

.home-hero-new .hero-title {
  font-size: clamp(2.75rem, 7vw, 5rem);
}

.home-hero-new .hero-description {
  max-width: 700px;
}

/* Hero buttons styling */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-buttons .btn-accent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
}

.hero-buttons .btn-accent:hover {
  background: #e8c89a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4);
}

.hero-buttons .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
}

.hero-buttons .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* Contact Hero - Compact version */
.contact-hero-new {
  min-height: auto;
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
}

.contact-hero-new .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(139, 69, 87, 0.88) 0%,
    rgba(107, 53, 68, 0.92) 100%
  );
}

.contact-hero-new .hero-badge {
  background: rgba(196, 163, 90, 0.25);
}

.contact-hero-new .hero-content {
  padding-bottom: var(--space-md);
}

.contact-hero-new .hero-decoration {
  display: none;
}

/* Hero title spans white for page heroes */
.page-hero-new .hero-title span:not(.text-gradient) {
  color: var(--color-white);
}

/* Models hero title - two lines with two words each */
.models-hero-new .hero-title span {
  display: block;
}

/* Allow hero title to wrap on mobile */
@media (max-width: 480px) {
  .models-hero-new .hero-title span {
    white-space: normal;
    word-wrap: break-word;
  }
}

.models-hero-new .hero-title span:first-child {
  color: var(--color-white);
}

/* Old hero styles (kept for backwards compatibility) */
.sustainability-hero {
  position: relative;
  padding: calc(70px + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.sustainability-hero .section-label {
  color: var(--color-accent);
}

.sustainability-hero h1 {
  color: var(--color-white);
}

.sustainability-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.sustainability-section {
  padding: var(--space-3xl) 0;
}

.sustainability-section:nth-child(even) {
  background-color: var(--color-off-white);
}

.sustainability-intro {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.sustainability-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sustainability-intro-image img {
  width: 100%;
  height: auto;
}

.cert-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.cert-card {
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.cert-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-off-white);
  border-radius: 50%;
}

.cert-card h4 {
  margin-bottom: var(--space-xs);
}

.cert-card p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   PROCESS PAGE
   ============================================ */
.process-timeline {
  padding: var(--space-3xl) 0;
}

.timeline {
  position: relative;
}

.timeline-item {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  width: 2px;
  height: calc(100% - 50px);
  background-color: var(--color-gray-light);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-content {
  padding-left: 60px;
  margin-top: -44px;
}

.timeline-content h3 {
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  color: var(--color-gray-dark);
  margin-bottom: var(--space-sm);
}

.timeline-duration {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-off-white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--space-3xl) 0;
}

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

.contact-section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.contact-info h1 {
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: var(--color-gray-dark);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-method h4 {
  margin-bottom: var(--space-xs);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.contact-method p,
.contact-method a {
  color: var(--color-gray-dark);
  margin-bottom: 0;
}

.contact-method a:hover {
  color: var(--color-primary);
}

.contact-form-wrapper {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-black);
  background-color: var(--color-off-white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-form .btn {
  width: 100%;
  margin-top: var(--space-sm);
}

/* Map Section - Minimalista */
.map-section {
  padding: var(--space-xl) 0 var(--space-3xl);
  background-color: var(--color-off-white);
}

.map-container {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-gray-light);
}

.map-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.map-info {
  flex: 1;
}

.map-info h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}

.map-info p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.map-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.625rem 1rem;
  background-color: var(--color-off-white);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.map-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.map-wrapper {
  position: relative;
  line-height: 0;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 300px;
}

@media (max-width: 640px) {
  .map-header {
    flex-wrap: wrap;
  }

  .map-link {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: calc(70px + var(--space-3xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.about-section {
  padding: var(--space-3xl) 0;
}

.about-section:nth-child(even) {
  background-color: var(--color-off-white);
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
}

.values-grid {
  display: grid;
  gap: var(--space-lg);
}

.value-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.value-card h4 {
  margin-bottom: var(--space-xs);
}

.value-card p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  gap: var(--space-lg);
}

.team-card {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
}

.team-card h4 {
  margin-bottom: var(--space-xs);
}

/* Mission Stats */
.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-gray-light);
}

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

.mission-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-xs);
}

.mission-label {
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* Values Section */
.values-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-off-white);
}

/* Team Section */
.team-section {
  padding: var(--space-3xl) 0;
}

.team-expertise-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

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

.team-expertise-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.team-expertise-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border-radius: 50%;
}

.team-expertise-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.team-expertise-card p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.team-trust-message {
  margin-top: var(--space-2xl);
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(139, 195, 74, 0.1) 100%);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.team-trust-message p {
  font-size: 1.0625rem;
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* About Certifications */
.about-certifications {
  padding: var(--space-3xl) 0;
  background-color: var(--color-off-white);
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.cert-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cert-badge-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.cert-badge-icon:hover {
  transform: scale(1.1);
}

.cert-badge-icon.verde {
  background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
}

.cert-badge-icon.fsc {
  background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
}

.cert-badge-icon.pefc {
  background: linear-gradient(135deg, #6a1b9a 0%, #ab47bc 100%);
}

.cert-badge-icon.iso {
  background: linear-gradient(135deg, #e65100 0%, #ff9800 100%);
}

.cert-badge-item span {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-dark);
}

.team-role {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-card p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   SUSTAINABILITY PAGE
   ============================================ */
.sustainability-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.sustainability-stats {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white);
  margin-top: calc(-1 * var(--space-xl));
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--color-off-white);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  font-family: var(--font-heading);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 500;
}

.sustainability-section {
  padding: var(--space-3xl) 0;
}

.sustainability-section:nth-child(even) {
  background-color: var(--color-off-white);
}

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

.sustainability-text .section-label {
  color: var(--color-primary);
}

.sustainability-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sustainability-image img {
  width: 100%;
  height: auto;
  display: block;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Certifications Section */
.certifications-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);
}

.certifications-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.certification-card {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base);
}

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

.certification-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
}

.certification-badge.verde {
  background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
}

.certification-badge.fsc {
  background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
}

.certification-card h3 {
  margin-bottom: var(--space-sm);
}

.certification-card > p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.certification-features {
  list-style: none;
  text-align: left;
}

.certification-features li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.certification-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Energy Features */
.energy-features {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

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

.energy-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffc107 100%);
  color: var(--color-dark);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.energy-feature h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.energy-feature p {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Impact Section */
.impact-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-dark);
  color: var(--color-white);
}

.impact-section .section-label {
  color: var(--color-accent);
}

.impact-section .section-title,
.impact-section .section-description {
  color: var(--color-white);
}

.impact-section .section-description {
  opacity: 0.9;
}

.impact-comparison {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.impact-item {
  padding: var(--space-md);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.impact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.impact-label {
  font-weight: 600;
  font-size: 1rem;
}

.impact-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.impact-bar {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.impact-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 4px;
  transition: width 1s ease-out;
}

.impact-description {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Healthy Section */
.healthy-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #fff8e1 0%, var(--color-white) 100%);
}

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

.healthy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.healthy-card {
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base);
}

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

.healthy-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
  color: var(--color-white);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
}

.healthy-card h4 {
  margin-bottom: var(--space-xs);
}

.healthy-card p {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

/* ============================================
   FINANCING SECTION
   ============================================ */
.financing {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.financing-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.financing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  width: 100%;
}

.financing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.financing-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.financing-feature svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.financing-feature span {
  font-weight: 500;
  color: var(--color-dark);
}

.financing-cta {
  text-align: center;
  margin-top: var(--space-md);
}

.financing-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.financing-partner {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 500;
}

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

/* ============================================
   RESPONSIVE - Pages (768px+)
   ============================================ */
@media (min-width: 768px) {
  .page-hero {
    padding: calc(70px + var(--space-3xl)) 0 var(--space-xl);
  }

  .model-detail-card {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .model-specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .model-actions {
    flex-direction: row;
  }

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

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

  .timeline-item::before {
    left: 22px;
  }

  .timeline-content {
    padding-left: 0;
    margin-top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid.reverse {
    direction: rtl;
  }

  .about-grid.reverse > * {
    direction: ltr;
  }

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

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

  .sustainability-intro {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sustainability-content {
    grid-template-columns: 1fr 1fr;
  }

  .sustainability-section.reversed .sustainability-content {
    direction: rtl;
  }

  .sustainability-section.reversed .sustainability-content > * {
    direction: ltr;
  }

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

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

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

  .healthy-content {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }

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

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

/* Animation Classes - Only apply when JS is available */
/* By default content is visible, JS adds .js-enabled to enable animations */
.js-enabled .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled .fade-in.visible,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in from left */
.js-enabled .fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled .fade-in-left.visible,
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.js-enabled .fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled .fade-in-right.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up animation */
.js-enabled .scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled .scale-in.visible,
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Subtle float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Pulse animation for CTAs */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(45, 106, 79, 0); }
}

.btn-primary:hover {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Parallax scroll effect placeholder */
.parallax {
  will-change: transform;
}

/* Smooth image reveal */
.img-reveal {
  overflow: hidden;
}

.img-reveal img {
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-reveal.visible img {
  transform: scale(1);
}

/* Counter animation for stats */
.count-up {
  display: inline-block;
}

/* Line draw animation */
@keyframes line-draw {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

/* Subtle background animation for hero */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Placeholder for images */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-off-white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
}

/* ============================================
   HERO V2 - COHESIVE IMMERSIVE DESIGN
   ============================================ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-v2-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v2-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.85) 0%,
    rgba(27, 67, 50, 0.7) 50%,
    rgba(27, 67, 50, 0.6) 100%
  );
}

.hero-v2 .container {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-v2-content {
  max-width: 720px;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: var(--space-lg);
}

.hero-v2-badge svg {
  color: var(--color-accent);
}

.hero-v2-badge span {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero-v2-title > span {
  display: block;
}

.hero-v2-title-accent {
  color: var(--color-accent);
  font-style: italic;
}

.hero-v2-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero-v2-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-v2-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.hero-v2-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-v2-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v2-feature-icon svg {
  color: var(--color-white);
}

.hero-v2-feature span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.hero-v2-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent);
}

.btn-accent:hover {
  background: #C4936A;
  border-color: #C4936A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.3);
}

.btn-accent svg {
  transition: transform 0.3s ease;
}

.btn-accent:hover svg {
  transform: translateX(3px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-v2-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hero-v2-scroll:hover {
  color: var(--color-white);
}

.hero-v2-scroll svg {
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Stats Panel */
.hero-v2-stats {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
}

.hero-v2-stats-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.15);
}

.hero-v2-stat {
  text-align: center;
}

.hero-v2-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.hero-v2-stat-label {
  font-size: 0.75rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-v2-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(27, 67, 50, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-v2-stats {
    position: static;
    margin-top: var(--space-xl);
  }

  .hero-v2-stats-inner {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-v2-title {
    font-size: 2.25rem;
  }

  .hero-v2-features {
    flex-direction: column;
  }

  .hero-v2-buttons {
    flex-direction: column;
  }

  .hero-v2-stats-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .hero-v2-stat-divider {
    display: none;
  }
}

/* ============================================
   HOME PAGE HERO - IMMERSIVE DESIGN (LEGACY)
   ============================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 15;
  padding-top: 70px; /* Header height */
  box-sizing: border-box;
}

.home-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-hero .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.home-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.92) 0%,
    rgba(8, 28, 21, 0.88) 40%,
    rgba(27, 67, 50, 0.85) 100%
  );
}

.home-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100dvh - 70px - 2rem);
  width: 100%;
  padding-top: clamp(1rem, 3vh, 2rem);
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
}

.home-hero .hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.25rem, 3vh, 2rem);
  width: 100%;
  flex: 1;
  min-height: 0;
}

.home-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: clamp(0.4rem, 0.8vh, 0.6rem) clamp(0.875rem, 1.5vw, 1.25rem);
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid var(--color-accent);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
}

.home-hero .hero-badge svg {
  flex-shrink: 0;
}

.home-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.home-hero .hero-title > span:first-child {
  display: block;
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
}

.home-hero .text-gradient {
  display: block;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.home-hero .hero-description {
  font-size: clamp(0.9375rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  font-weight: 400;
}

.home-hero .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.home-hero .hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.home-hero .hero-feature:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.home-hero .hero-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #E8C170 100%);
  border-radius: var(--radius-sm);
  color: var(--color-primary-dark);
}

.home-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.home-hero .btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.home-hero .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  background: var(--color-off-white);
}

.home-hero .btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.9375rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.home-hero .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

.home-hero .hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.home-hero .hero-scroll-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.home-hero .hero-scroll-btn svg {
  animation: bounce 2s infinite;
}

/* Decorative Elements */
.home-hero .hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.home-hero .leaf {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.25) 0%, rgba(212, 163, 115, 0.08) 100%);
  border-radius: 0 70% 0 70%;
  animation: float 8s ease-in-out infinite;
}

.home-hero .leaf-1 {
  top: 12%;
  right: 8%;
  width: 90px;
  height: 90px;
  animation-delay: 0s;
}

.home-hero .leaf-2 {
  bottom: 18%;
  right: 4%;
  width: 140px;
  height: 140px;
  animation-delay: 2.5s;
  opacity: 0.5;
}

.home-hero .leaf-3 {
  top: 45%;
  right: 12%;
  width: 70px;
  height: 70px;
  animation-delay: 5s;
  opacity: 0.35;
}

/* Floating Stats Panel */
.hero-stats-panel {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-lg);
  z-index: 10;
  display: none;
}

.stats-panel-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-panel-item {
  text-align: center;
}

.stat-panel-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-panel-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-panel-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .hero-stats-panel {
    display: block;
  }

  .home-hero .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-stats-panel {
    bottom: var(--space-2xl);
    right: var(--space-2xl);
  }

  .stats-panel-inner {
    padding: var(--space-lg) var(--space-2xl);
  }

  .stat-panel-number {
    font-size: 2rem;
  }
}

/* ============================================
   ENHANCED SECTIONS - MODERN DESIGN
   ============================================ */

/* Section Intro Animation Line */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: var(--space-md) auto 0;
  border-radius: 3px;
}

.section-header.text-left::after {
  margin-left: 0;
}

/* Enhanced Feature Cards */
.features {
  padding: var(--space-3xl) 0;
  background: var(--color-cream);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-light), transparent);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

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

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-black);
}

.feature-description {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Enhanced Models Section */
.models {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.model-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
  border-color: var(--color-primary);
}

.model-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover .model-image img {
  transform: scale(1.08);
}

.model-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.3);
}

.model-content {
  padding: var(--space-lg);
}

.model-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-black);
}

.model-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.model-link:hover {
  gap: 0.875rem;
  color: var(--color-primary-dark);
}

/* ============================================
   SUSTAINABILITY SECTION - Modern Organic Design
   ============================================ */
.sustainability {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, #f8f6f3 0%, #f0ebe4 100%);
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(27, 67, 50, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(196, 163, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sustainability .section-header {
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.sustainability .section-label {
  color: var(--color-primary);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sustainability .section-title {
  color: #1a2f23;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.sustainability .section-description {
  color: #5a6b5e;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.sustainability .section-header::after {
  display: none;
}

/* Sustainability Grid - Organic Asymmetric Layout */
.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .sustainability-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }
}

/* Sustainability Cards - Clean Modern Style */
.sustainability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  border: none;
  box-shadow:
    0 2px 8px rgba(27, 67, 50, 0.04),
    0 12px 32px rgba(27, 67, 50, 0.06);
  overflow: hidden;
}

/* Subtle top accent line */
.sustainability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2c5530, #4a7d4f);
  border-radius: 0 0 3px 3px;
  opacity: 0.8;
}

/* Sustainability Icon - Clean Circle Style */
.sustainability-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2c5530 0%, #1a3a1e 100%);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.25);
}

.sustainability-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

/* Sustainability Content */
.sustainability-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sustainability-content h4 {
  color: #1a2f23;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sustainability-content p {
  color: #5a6b5e;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Visual variety with icon colors */
.sustainability-card:nth-child(1) .sustainability-icon {
  background: linear-gradient(145deg, #2c5530 0%, #1a3a1e 100%);
}

.sustainability-card:nth-child(2) .sustainability-icon {
  background: linear-gradient(145deg, #3a6940 0%, #2c5530 100%);
}

.sustainability-card:nth-child(3) .sustainability-icon {
  background: linear-gradient(145deg, #4a7a50 0%, #3a6940 100%);
}

.sustainability-card:nth-child(4) .sustainability-icon {
  background: linear-gradient(145deg, #3a6940 0%, #2c5530 100%);
}

.sustainability-card:nth-child(5) .sustainability-icon {
  background: linear-gradient(145deg, #2c5530 0%, #1a3a1e 100%);
}

.sustainability-card:nth-child(6) .sustainability-icon {
  background: linear-gradient(145deg, #4a7a50 0%, #3a6940 100%);
}

/* Enhanced Process Section */
.process {
  padding: var(--space-3xl) 0;
  background: var(--color-cream);
}

.process-step {
  position: relative;
  padding-left: 80px;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-black);
}

.process-step p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Enhanced CTA Section */
.cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #6B3544 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-nav h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* ============================================
   CLT SECTION - Editorial Redesign
   ============================================ */
.clt-section-new {
  padding: var(--space-3xl) 0;
  background: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.clt-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-light), transparent);
}

/* Header */
.clt-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .clt-header {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: end;
  }
}

.clt-header-content {
  position: relative;
}

.clt-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.clt-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.clt-title-accent {
  color: var(--color-primary);
  position: relative;
}

.clt-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: var(--color-accent);
  opacity: 0.6;
  transform: skewX(-12deg);
}

.clt-subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gray);
  letter-spacing: 0.05em;
}

.clt-intro {
  position: relative;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-accent);
}

.clt-intro p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-gray-dark);
  margin: 0;
}

/* Bento Grid */
.clt-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .clt-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .clt-bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
  }

  .clt-bento-main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .clt-card-wide {
    grid-column: span 2;
  }

  .clt-bento-image {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Main Visual - CLT Layers */
.clt-bento-main {
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.clt-bento-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.clt-layers-visual {
  display: flex;
  flex-direction: column;
  gap: 6px;
  perspective: 1000px;
  margin-bottom: var(--space-lg);
}

.clt-layer {
  width: 180px;
  height: 28px;
  background: linear-gradient(90deg, #c9a66b 0%, #a67c52 50%, #c9a66b 100%);
  border-radius: 4px;
  position: relative;
  transform: rotateX(45deg) rotateZ(-5deg);
  box-shadow:
    0 4px 0 rgba(0,0,0,0.2),
    0 8px 20px rgba(0,0,0,0.3);
  animation: layerFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 0.15s);
  overflow: hidden;
}

@keyframes layerFloat {
  0%, 100% { transform: rotateX(45deg) rotateZ(-5deg) translateY(0); }
  50% { transform: rotateX(45deg) rotateZ(-5deg) translateY(-3px); }
}

.layer-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.layer-grain.horizontal {
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(139, 90, 43, 0.3) 8px,
    rgba(139, 90, 43, 0.3) 10px
  );
}

.layer-grain.vertical {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(139, 90, 43, 0.3) 8px,
    rgba(139, 90, 43, 0.3) 10px
  );
}

.clt-layers-info {
  text-align: center;
  color: var(--color-white);
}

.layers-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.layers-desc {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Feature Cards */
.clt-bento-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-light);
}

.clt-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.clt-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-off-white) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.clt-bento-card:hover .clt-card-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.clt-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  transition: all var(--transition-base);
}

.clt-bento-card:hover .clt-card-icon svg {
  stroke: var(--color-white);
}

.clt-bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.clt-bento-card p {
  font-size: 0.9375rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

/* Card Stats */
.clt-card-stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-gray-light);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--color-gray);
}

/* Card Badge */
.clt-card-badge {
  display: inline-flex;
  margin-top: auto;
}

.clt-card-badge span {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

/* Wide Card */
.clt-card-wide .clt-card-content {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.clt-card-wide .clt-card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.clt-card-wide h3 {
  margin-bottom: var(--space-xs);
}

.clt-card-wide p {
  margin-bottom: 0;
}

.clt-comparison {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  margin-top: auto;
}

.comparison-item {
  flex: 1;
  text-align: center;
}

.comparison-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.comparison-label {
  font-size: 0.8125rem;
  color: var(--color-gray);
}

.comparison-divider {
  width: 1px;
  height: 40px;
  background: var(--color-gray-light);
}

/* Certifications */
.clt-certifications {
  display: flex;
  gap: var(--space-xs);
  margin-top: auto;
}

.cert-badge {
  background: var(--color-cream);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-light);
}

/* Image Card */
.clt-bento-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.clt-bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}

.clt-bento-image:hover img {
  transform: scale(1.05);
}

.clt-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.clt-image-overlay span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

/* =====================================================
   PROCESS TIMELINE SECTION - Vertical Scroll Timeline
   ===================================================== */

.process-timeline {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--color-cream);
  position: relative;
}

/* Timeline Header */
.timeline-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.timeline-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.15) 0%, rgba(212, 163, 115, 0.05) 100%);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(212, 163, 115, 0.3);
  margin-bottom: var(--space-md);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.timeline-title .title-accent {
  color: var(--color-accent);
  position: relative;
}

.timeline-title .title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0.5;
}

.timeline-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 500px;
  margin: 0 auto;
}

.timeline-subtitle strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Vertical Timeline Container */
.vertical-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

/* Main Timeline Line (background) */
.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gray-light);
  z-index: 0;
}

/* Progress Line (animated on scroll) */
.timeline-progress-line {
  position: absolute;
  left: 32px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transition: height 0.1s ease-out;
  z-index: 0;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Timeline Marker */
.timeline-marker {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--color-white);
  border: 2px solid var(--color-gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.timeline-item.is-visible .timeline-marker {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.15);
}

.marker-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray);
  transition: color 0.4s ease;
}

.timeline-item.is-visible .marker-number {
  color: var(--color-primary);
}

/* Timeline Content Card */
.timeline-content {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.04);
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: all 0.4s ease;
}

.timeline-item.is-visible .timeline-content {
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.1);
}

/* Content Header */
.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.phase-duration {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(212, 163, 115, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
}

.phase-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d5a47 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.timeline-content:hover .phase-icon {
  transform: rotate(-5deg) scale(1.05);
}

.phase-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
}

/* Content Typography */
.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Phase Checklist */
.phase-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-checklist li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.8;
}

.phase-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Dual Columns for Phase 4 */
.dual-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.dual-columns .column {
  background: var(--color-cream);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.column-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
}

/* Final Celebration */
.final-celebration {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-gray-light);
}

.celebration-icon {
  font-size: 1.75rem;
  animation: celebrateBounce 2s ease-in-out infinite;
}

@keyframes celebrateBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.1); }
}

.celebration-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .process-timeline {
    padding: var(--space-2xl) 0;
  }

  .vertical-timeline {
    padding-left: 0;
  }

  .timeline-line,
  .timeline-progress-line {
    left: 24px;
  }

  .timeline-marker {
    width: 48px;
    height: 48px;
  }

  .marker-number {
    font-size: 1rem;
  }

  .timeline-content {
    padding: 30px;
  }

  .timeline-content h3 {
    font-size: 1.125rem;
  }

  .content-header {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .phase-icon {
    display: none;
  }

  .dual-columns {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .timeline-line,
  .timeline-progress-line {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .timeline-marker {
    align-self: flex-start;
  }
}

/* ============================================
   MOBILE HERO OPTIMIZATIONS
   Must be at end to override base hero styles
   ============================================ */
@media (max-width: 767px) {
  /* All hero sections - use svh for better mobile support */
  .home-hero,
  .home-hero-new,
  .page-hero-new,
  .models-hero-new,
  .process-hero-new,
  .about-hero-new,
  .sustainability-hero-new,
  .contact-hero-new {
    min-height: 100svh !important;
    min-height: 100dvh !important; /* Fallback */
    display: flex !important;
    flex-direction: column !important; /* Stack children vertically */
    justify-content: center !important; /* Center container vertically */
    align-items: stretch !important; /* Container takes full width */
    padding-top: 70px !important; /* Header height */
    padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Container fills hero and centers content */
  .page-hero-new .container,
  .home-hero .container,
  .home-hero-new .container,
  .models-hero-new .container,
  .process-hero-new .container,
  .about-hero-new .container,
  .sustainability-hero-new .container,
  .contact-hero-new .container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: -25px !important; /* Shift up slightly to balance header visually */
  }

  /* Hero content - natural sizing, parent handles centering */
  .hero-content,
  .home-hero .hero-content,
  .home-hero-new .hero-content,
  .page-hero-new .hero-content,
  .models-hero-new .hero-content,
  .process-hero-new .hero-content,
  .about-hero-new .hero-content,
  .sustainability-hero-new .hero-content,
  .contact-hero-new .hero-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    flex: 0 0 auto !important; /* No grow, no shrink, auto basis */
    width: 100% !important;
    gap: clamp(0.875rem, 2.5vh, 1.5rem) !important; /* slightly more spacing */
    margin: 0 !important; /* Section handles vertical centering */
  }

  /* Badge - compact spacing */
  .hero-badge,
  .home-hero .hero-badge,
  .home-hero-new .hero-badge,
  .page-hero .hero-badge,
  .page-hero-new .hero-badge,
  .models-hero-new .hero-badge,
  .process-hero-new .hero-badge,
  .about-hero-new .hero-badge,
  .sustainability-hero-new .hero-badge,
  .contact-hero-new .hero-badge {
    padding: 5px 10px !important;
    gap: 5px !important;
    font-size: 0.65rem !important; /* smaller badge */
    margin-bottom: 0 !important; /* Gap handles spacing */
  }

  .hero-badge svg,
  .home-hero .hero-badge svg,
  .page-hero-new .hero-badge svg,
  .models-hero-new .hero-badge svg,
  .process-hero-new .hero-badge svg,
  .about-hero-new .hero-badge svg,
  .sustainability-hero-new .hero-badge svg,
  .contact-hero-new .hero-badge svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* Title - responsive sizing */
  .hero-title,
  .home-hero .hero-title,
  .home-hero-new .hero-title,
  .page-hero .hero-title,
  .page-hero-new .hero-title,
  .models-hero-new .hero-title,
  .process-hero-new .hero-title,
  .about-hero-new .hero-title,
  .sustainability-hero-new .hero-title,
  .contact-hero-new .hero-title {
    font-size: clamp(2rem, 7vw, 2.75rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0 !important; /* Gap handles spacing */
  }

  /* Description - responsive sizing */
  .hero-description,
  .home-hero .hero-description,
  .home-hero-new .hero-description,
  .page-hero .hero-description,
  .page-hero-new .hero-description,
  .models-hero-new .hero-description,
  .process-hero-new .hero-description,
  .about-hero-new .hero-description,
  .sustainability-hero-new .hero-description,
  .contact-hero-new .hero-description {
    font-size: clamp(0.96rem, 2.75vw, 1.1rem) !important; /* +10% */
    line-height: 1.5 !important;
    margin-bottom: 0 !important; /* Gap handles spacing */
  }

  /* Buttons - ensure they never get cut off */
  .hero-buttons,
  .home-hero .hero-buttons,
  .home-hero-new .hero-buttons,
  .page-hero-new .hero-buttons,
  .models-hero-new .hero-buttons,
  .process-hero-new .hero-buttons,
  .about-hero-new .hero-buttons,
  .sustainability-hero-new .hero-buttons,
  .contact-hero-new .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
    margin-top: clamp(0.875rem, 2.5vh, 1.5rem) !important; /* double spacing before buttons */
    margin-bottom: 0 !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-accent,
  .hero-buttons .btn-outline-white,
  .home-hero .hero-buttons .btn,
  .page-hero-new .hero-buttons .btn {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
  }

  /* Scroll button - compact */
  .hero-scroll-btn {
    padding: 8px 16px !important;
    font-size: 0.89rem !important; /* +10% from 0.8125rem */
    margin-top: var(--space-xs) !important;
  }

  /* ============================================
     MOBILE LANGUAGE TOGGLE FIX
     Override transparent header styles in mobile nav
     ============================================ */
  .header.header-transparent .nav .lang-switch,
  .header .nav .lang-switch {
    background: var(--color-white) !important;
    border: 1px solid var(--color-gray-light) !important;
  }

  .header.header-transparent .nav .lang-btn,
  .header .nav .lang-btn {
    color: var(--color-gray) !important;
  }

  .header.header-transparent .nav .lang-btn:hover,
  .header .nav .lang-btn:hover {
    color: var(--color-primary) !important;
  }

  .header.header-transparent .nav .lang-btn.active,
  .header .nav .lang-btn.active {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
  }

  /* ============================================
     NAV TOGGLE ICON COLORS
     White when closed, black when open (active)
     ============================================ */
  .header.header-transparent .nav-toggle span {
    background-color: var(--color-white) !important;
  }

  .header.header-transparent .nav-toggle.active span,
  .header .nav-toggle.active span {
    background-color: var(--color-black) !important;
  }
}

/* ============================================
   SHORT SCREEN HEIGHT OPTIMIZATIONS
   For screens with limited vertical space (iPhone SE, etc.)
   ============================================ */
@media (max-width: 767px) and (max-height: 700px) {
  .home-hero,
  .home-hero-new,
  .page-hero-new,
  .models-hero-new,
  .process-hero-new,
  .about-hero-new,
  .sustainability-hero-new,
  .contact-hero-new {
    padding-top: 70px !important;
    padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Container uses natural sizing - section handles centering */
  .page-hero-new .container,
  .home-hero .container,
  .home-hero-new .container,
  .models-hero-new .container,
  .process-hero-new .container,
  .about-hero-new .container,
  .sustainability-hero-new .container,
  .contact-hero-new .container {
    min-height: auto !important;
    height: auto !important;
  }

  /* Tighter gaps on short screens */
  .hero-content,
  .home-hero .hero-content,
  .home-hero-new .hero-content,
  .page-hero-new .hero-content,
  .models-hero-new .hero-content,
  .process-hero-new .hero-content,
  .about-hero-new .hero-content,
  .sustainability-hero-new .hero-content,
  .contact-hero-new .hero-content {
    gap: clamp(0.5rem, 1.5vh, 1rem) !important;
  }

  .hero-title,
  .home-hero .hero-title,
  .home-hero-new .hero-title,
  .page-hero-new .hero-title,
  .models-hero-new .hero-title,
  .process-hero-new .hero-title,
  .about-hero-new .hero-title,
  .sustainability-hero-new .hero-title,
  .contact-hero-new .hero-title {
    font-size: clamp(1.625rem, 5.5vw, 2rem) !important;
    line-height: 1.1 !important;
  }

  .hero-description,
  .home-hero .hero-description,
  .home-hero-new .hero-description,
  .page-hero-new .hero-description,
  .models-hero-new .hero-description,
  .process-hero-new .hero-description,
  .about-hero-new .hero-description,
  .sustainability-hero-new .hero-description,
  .contact-hero-new .hero-description {
    font-size: clamp(0.8125rem, 2vw, 0.9375rem) !important;
    line-height: 1.4 !important;
  }

  .hero-badge,
  .home-hero .hero-badge,
  .page-hero-new .hero-badge,
  .models-hero-new .hero-badge,
  .process-hero-new .hero-badge,
  .about-hero-new .hero-badge,
  .sustainability-hero-new .hero-badge,
  .contact-hero-new .hero-badge {
    font-size: 0.65rem !important;
    padding: 5px 10px !important;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-accent,
  .hero-buttons .btn-outline-white {
    padding: 10px 18px !important;
    font-size: 0.75rem !important;
  }

  .hero-scroll-btn {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
  }
}

/* Very short screens - hero becomes scrollable, use compact layout */
@media (max-width: 767px) and (max-height: 550px) {
  .home-hero,
  .home-hero-new,
  .page-hero-new,
  .models-hero-new,
  .process-hero-new,
  .about-hero-new,
  .sustainability-hero-new,
  .contact-hero-new {
    min-height: auto !important;
    height: auto !important;
    padding: 75px 0 calc(var(--space-sm) + env(safe-area-inset-bottom, 0px)) !important;
    align-items: flex-start !important;
  }

  /* Container no longer needs min-height on very short screens */
  .page-hero-new .container,
  .home-hero .container,
  .home-hero-new .container,
  .models-hero-new .container,
  .process-hero-new .container,
  .about-hero-new .container,
  .sustainability-hero-new .container,
  .contact-hero-new .container {
    min-height: auto !important;
    justify-content: flex-start !important;
  }

  /* Use compact gap layout on very short screens */
  .hero-content,
  .home-hero .hero-content,
  .home-hero-new .hero-content,
  .page-hero-new .hero-content,
  .models-hero-new .hero-content,
  .process-hero-new .hero-content,
  .about-hero-new .hero-content,
  .sustainability-hero-new .hero-content,
  .contact-hero-new .hero-content {
    flex: none !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
  }

  .hero-title,
  .home-hero .hero-title,
  .page-hero-new .hero-title,
  .models-hero-new .hero-title,
  .process-hero-new .hero-title,
  .about-hero-new .hero-title,
  .sustainability-hero-new .hero-title,
  .contact-hero-new .hero-title {
    font-size: clamp(1.5rem, 5vw, 1.875rem) !important;
  }

  .hero-description,
  .home-hero .hero-description,
  .page-hero-new .hero-description,
  .models-hero-new .hero-description,
  .process-hero-new .hero-description,
  .about-hero-new .hero-description,
  .sustainability-hero-new .hero-description,
  .contact-hero-new .hero-description {
    font-size: 0.75rem !important;
  }

  .hero-scroll-btn {
    padding: 6px 12px !important;
    font-size: 0.7rem !important;
  }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .home-hero,
  .home-hero-new,
  .page-hero-new,
  .models-hero-new,
  .process-hero-new,
  .about-hero-new,
  .sustainability-hero-new,
  .contact-hero-new {
    min-height: auto !important;
    padding: 75px 0 calc(var(--space-sm) + env(safe-area-inset-bottom, 0px)) !important;
  }

  .hero-content,
  .home-hero .hero-content,
  .page-hero-new .hero-content,
  .models-hero-new .hero-content,
  .process-hero-new .hero-content,
  .about-hero-new .hero-content,
  .sustainability-hero-new .hero-content,
  .contact-hero-new .hero-content {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 1rem !important;
  }

  .hero-badge,
  .home-hero .hero-badge,
  .page-hero-new .hero-badge,
  .models-hero-new .hero-badge,
  .process-hero-new .hero-badge,
  .about-hero-new .hero-badge,
  .sustainability-hero-new .hero-badge,
  .contact-hero-new .hero-badge {
    order: -1 !important;
    width: 100% !important;
  }

  .hero-title,
  .home-hero .hero-title,
  .page-hero-new .hero-title,
  .models-hero-new .hero-title,
  .process-hero-new .hero-title,
  .about-hero-new .hero-title,
  .sustainability-hero-new .hero-title,
  .contact-hero-new .hero-title {
    flex: 1 1 50% !important;
    font-size: clamp(1.375rem, 4vw, 1.75rem) !important;
  }

  .hero-description,
  .home-hero .hero-description,
  .page-hero-new .hero-description,
  .models-hero-new .hero-description,
  .process-hero-new .hero-description,
  .about-hero-new .hero-description,
  .sustainability-hero-new .hero-description,
  .contact-hero-new .hero-description {
    flex: 1 1 40% !important;
    font-size: 0.7rem !important;
    max-width: none !important;
  }

  .hero-buttons,
  .home-hero .hero-buttons,
  .page-hero-new .hero-buttons,
  .models-hero-new .hero-buttons,
  .process-hero-new .hero-buttons,
  .about-hero-new .hero-buttons,
  .sustainability-hero-new .hero-buttons,
  .contact-hero-new .hero-buttons {
    width: 100% !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 0.75rem !important;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-accent,
  .hero-buttons .btn-outline-white {
    width: auto !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
  }
}
