/* ============================================
   ZEJOZU - GRADIENT ATMOSPHERE CSS
   Custom Properties & Color System
============================================ */

:root {
  --color-primary: oklch(55% 0.22 220);
  --color-secondary: oklch(62% 0.20 280);
  --color-accent: oklch(70% 0.22 180);
  --color-accent-warm: oklch(72% 0.20 30);

  --color-primary-light: color-mix(in oklch, var(--color-primary), white 40%);
  --color-primary-dark: color-mix(in oklch, var(--color-primary), black 20%);
  --color-primary-subtle: color-mix(in oklch, var(--color-primary), white 85%);
  --color-primary-glow: color-mix(in oklch, var(--color-primary), transparent 60%);

  --color-secondary-light: color-mix(in oklch, var(--color-secondary), white 40%);
  --color-secondary-dark: color-mix(in oklch, var(--color-secondary), black 20%);
  --color-secondary-subtle: color-mix(in oklch, var(--color-secondary), white 88%);

  --color-accent-light: color-mix(in oklch, var(--color-accent), white 35%);
  --color-accent-subtle: color-mix(in oklch, var(--color-accent), white 85%);

  --color-surface: oklch(98% 0.005 220);
  --color-surface-elevated: oklch(99.5% 0.002 220);
  --color-surface-tinted: color-mix(in oklch, var(--color-primary), white 94%);

  --color-text-primary: oklch(18% 0.02 240);
  --color-text-secondary: oklch(42% 0.04 240);
  --color-text-muted: oklch(62% 0.03 240);
  --color-text-on-dark: oklch(97% 0.005 220);

  --color-border: color-mix(in oklch, var(--color-primary), white 80%);
  --color-border-subtle: color-mix(in oklch, var(--color-primary), white 92%);

  --gradient-hero: linear-gradient(135deg, oklch(28% 0.18 240) 0%, oklch(35% 0.22 270) 40%, oklch(30% 0.20 200) 100%);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  --gradient-warm: linear-gradient(135deg, var(--color-accent-warm) 0%, var(--color-secondary) 100%);
  --gradient-text: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
  --gradient-section: linear-gradient(180deg, oklch(96% 0.01 220) 0%, oklch(94% 0.015 240) 100%);
  --gradient-card-hover: linear-gradient(135deg, color-mix(in oklch, var(--color-primary), white 90%) 0%, color-mix(in oklch, var(--color-secondary), white 90%) 100%);

  --shadow-xs: 0 1px 3px color-mix(in oklch, var(--color-primary), transparent 90%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--color-primary), transparent 85%), 0 1px 3px color-mix(in oklch, var(--color-primary), transparent 92%);
  --shadow-md: 0 4px 20px color-mix(in oklch, var(--color-primary), transparent 80%), 0 2px 8px color-mix(in oklch, var(--color-primary), transparent 88%);
  --shadow-lg: 0 8px 40px color-mix(in oklch, var(--color-primary), transparent 75%), 0 4px 16px color-mix(in oklch, var(--color-primary), transparent 85%);
  --shadow-xl: 0 16px 60px color-mix(in oklch, var(--color-primary), transparent 70%), 0 8px 24px color-mix(in oklch, var(--color-primary), transparent 80%);
  --shadow-glow: 0 0 30px color-mix(in oklch, var(--color-primary), transparent 55%), 0 0 60px color-mix(in oklch, var(--color-secondary), transparent 70%);
  --shadow-card: 0 2px 12px color-mix(in oklch, var(--color-primary), transparent 88%), 0 8px 32px color-mix(in oklch, var(--color-primary), transparent 93%);
  --shadow-button: 0 4px 16px color-mix(in oklch, var(--color-primary), transparent 70%), 0 2px 6px color-mix(in oklch, var(--color-primary), transparent 80%);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-wide: 1400px;
}

/* ============================================
   RESET & BASE
============================================ */

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

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

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

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

ul {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY SCALE
============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }

p {
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
============================================ */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
============================================ */

.main-navigation-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-surface-elevated);
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.main-navigation-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.main-navigation-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.main-navigation-logo-image {
  height: 40px;
  width: auto;
}

.main-navigation-menu-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  justify-content: flex-end;
}

.main-navigation-menu-item {
  position: relative;
}

.main-navigation-menu-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.main-navigation-menu-link:hover,
.main-navigation-menu-link.active {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}

.main-navigation-chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.main-navigation-has-megamenu:hover .main-navigation-chevron {
  transform: rotate(180deg);
}

.main-navigation-cta-link {
  background: var(--gradient-primary) !important;
  color: var(--color-text-on-dark) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-button);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease !important;
}

.main-navigation-cta-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  opacity: 0.92;
}

.main-navigation-megamenu-panel {
  position: absolute;
  top: calc(100% + var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-6);
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  transform: translateX(-50%) translateY(-8px);
}

.main-navigation-has-megamenu:hover .main-navigation-megamenu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.main-navigation-megamenu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.main-navigation-megamenu-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.main-navigation-megamenu-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  margin-bottom: var(--space-1);
}

.main-navigation-megamenu-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  transform: translateX(4px);
}

.main-navigation-megamenu-link i {
  color: var(--color-primary);
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
}

.main-navigation-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.main-navigation-hamburger-button:hover {
  background: var(--color-primary-subtle);
}

.main-navigation-hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-navigation-mobile-accordion {
  display: none;
  background: var(--color-surface-elevated);
  border-top: 1px solid var(--color-border-subtle);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation-mobile-accordion.is-open {
  max-height: 600px;
}

.main-navigation-mobile-list {
  padding: var(--space-4) var(--space-6) var(--space-6);
}

.main-navigation-mobile-item {
  border-bottom: 1px solid var(--color-border-subtle);
}

.main-navigation-mobile-item:last-child {
  border-bottom: none;
}

.main-navigation-mobile-link {
  display: block;
  padding: var(--space-4) var(--space-2);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color 0.2s ease;
}

.main-navigation-mobile-link:hover {
  color: var(--color-primary);
}

.main-navigation-mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-2);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  background: none;
  border: none;
  transition: color 0.2s ease;
}

.main-navigation-mobile-submenu-toggle i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.main-navigation-mobile-submenu-toggle.is-expanded i {
  transform: rotate(180deg);
}

.main-navigation-mobile-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  background: var(--color-surface-tinted);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}

.main-navigation-mobile-submenu.is-open {
  max-height: 300px;
}

.main-navigation-mobile-sublink {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.main-navigation-mobile-sublink:hover {
  color: var(--color-primary);
}

/* ============================================
   HERO SECTION
============================================ */

.homepage-hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.homepage-hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, color-mix(in oklch, var(--color-secondary), transparent 60%) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, color-mix(in oklch, var(--color-accent), transparent 70%) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, color-mix(in oklch, var(--color-primary), transparent 65%) 0%, transparent 50%);
  pointer-events: none;
}

.homepage-hero-content-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.homepage-hero-eyebrow-label {
  display: inline-block;
  background: color-mix(in oklch, var(--color-accent), transparent 75%);
  color: var(--color-accent-light);
  border: 1px solid color-mix(in oklch, var(--color-accent), transparent 65%);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.homepage-hero-main-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--color-text-on-dark);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.homepage-hero-gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.homepage-hero-description-text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 25%);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.homepage-hero-cta-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.homepage-hero-primary-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--gradient-text);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.homepage-hero-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.homepage-hero-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: color-mix(in oklch, var(--color-text-on-dark), transparent 85%);
  color: var(--color-text-on-dark);
  border: 1px solid color-mix(in oklch, var(--color-text-on-dark), transparent 70%);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.homepage-hero-secondary-button:hover {
  background: color-mix(in oklch, var(--color-text-on-dark), transparent 75%);
  transform: translateY(-2px);
}

.homepage-hero-visual-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage-hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.homepage-hero-featured-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.homepage-hero-image-glow {
  position: absolute;
  inset: -20px;
  background: var(--gradient-primary);
  filter: blur(40px);
  opacity: 0.35;
  border-radius: var(--radius-xl);
  z-index: -1;
}

.homepage-hero-floating-card {
  position: absolute;
  background: color-mix(in oklch, var(--color-surface-elevated), transparent 10%);
  backdrop-filter: blur(16px);
  border: 1px solid color-mix(in oklch, var(--color-text-on-dark), transparent 80%);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.homepage-hero-floating-card--water {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.homepage-hero-floating-card--energy {
  bottom: 15%;
  right: -5%;
  animation-delay: 1.5s;
}

.homepage-hero-floating-card i {
  color: var(--color-accent-light);
  font-size: 1rem;
}

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

.homepage-hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 40%);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================
   INTRO SECTION
============================================ */

.homepage-intro-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.homepage-intro-content-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.homepage-intro-section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
}

.homepage-intro-lead-paragraph {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.homepage-intro-body-paragraph {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.homepage-intro-learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.homepage-intro-learn-more-link:hover {
  gap: var(--space-4);
  color: var(--color-primary-dark);
}

.homepage-intro-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.homepage-intro-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.homepage-intro-image-wrapper:hover .homepage-intro-image {
  transform: scale(1.04);
}

.homepage-intro-accent-card {
  background: var(--gradient-primary);
  color: var(--color-text-on-dark);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-md);
}

.homepage-intro-accent-card i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.homepage-intro-accent-card p {
  color: var(--color-text-on-dark);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   PILLARS SECTION
============================================ */

.homepage-pillars-section {
  padding: var(--space-24) var(--space-6);
  background: var(--gradient-section);
}

.homepage-pillars-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.homepage-pillars-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.homepage-pillars-main-heading {
  margin-bottom: var(--space-4);
}

.homepage-pillars-subtitle-text {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.homepage-pillars-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.homepage-pillar-card-item {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.homepage-pillar-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}

.homepage-pillar-card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-5);
}

.homepage-pillar-card-icon--blue {
  background: color-mix(in oklch, var(--color-primary), white 85%);
  color: var(--color-primary);
}

.homepage-pillar-card-icon--purple {
  background: color-mix(in oklch, var(--color-secondary), white 85%);
  color: var(--color-secondary);
}

.homepage-pillar-card-icon--orange {
  background: color-mix(in oklch, var(--color-accent-warm), white 85%);
  color: var(--color-accent-warm);
}

.homepage-pillar-card-heading {
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
}

.homepage-pillar-card-body {
  font-size: 0.9rem;
  margin-bottom: var(--space-5);
  line-height: 1.75;
}

.homepage-pillar-card-list {
  list-style: none;
  padding: 0;
}

.homepage-pillar-card-list li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.homepage-pillar-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  flex-shrink: 0;
}

.homepage-pillar-card-list li:last-child {
  border-bottom: none;
}

/* ============================================
   TABBED SECTION
============================================ */

.homepage-tabbed-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.homepage-tabbed-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.homepage-tabbed-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.homepage-tabbed-main-heading {
  margin-bottom: var(--space-4);
}

.homepage-tabbed-gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.homepage-tabbed-subtitle {
  max-width: 520px;
  margin: 0 auto;
}

.homepage-tabbed-interface {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.homepage-tab-buttons-row {
  display: flex;
  background: var(--color-surface-tinted);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}

.homepage-tab-button-item {
  flex: 1;
  min-width: 120px;
  padding: var(--space-5) var(--space-6);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  white-space: nowrap;
}

.homepage-tab-button-item:hover {
  color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary), transparent 92%);
}

.homepage-tab-button-item.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background: var(--color-surface-elevated);
}

.homepage-tab-panels-wrapper {
  background: var(--color-surface-elevated);
}

.homepage-tab-panel-content {
  display: none;
  animation: fadeInPanel 0.35s ease;
}

.homepage-tab-panel-content.active {
  display: block;
}

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

.homepage-tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.homepage-tab-panel-text-side {
  padding: var(--space-10) var(--space-10);
}

.homepage-tab-panel-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-5);
  color: var(--color-text-primary);
}

.homepage-tab-panel-body {
  font-size: 0.93rem;
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.homepage-tab-panel-visual-side {
  overflow: hidden;
}

.homepage-tab-panel-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.homepage-tab-panel-visual-side:hover .homepage-tab-panel-image {
  transform: scale(1.03);
}

/* ============================================
   KNOWLEDGE SECTION
============================================ */

.homepage-knowledge-section {
  padding: var(--space-24) var(--space-6);
  position: relative;
  overflow: hidden;
}

.homepage-knowledge-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(25% 0.15 240) 0%, oklch(30% 0.18 270) 50%, oklch(22% 0.12 200) 100%);
  z-index: 0;
}

.homepage-knowledge-content-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.homepage-knowledge-header-block {
  text-align: center;
  margin-bottom: var(--space-16);
}

.homepage-knowledge-main-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-5);
}

.homepage-knowledge-intro-text {
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 30%);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.homepage-knowledge-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.homepage-knowledge-card-item {
  background: var(--color-primary);
  backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklch, var(--color-text-on-dark), transparent 85%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepage-knowledge-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.homepage-knowledge-card-visual {
  overflow: hidden;
  height: 200px;
}

.homepage-knowledge-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.homepage-knowledge-card-item:hover .homepage-knowledge-card-image {
  transform: scale(1.06);
}

.homepage-knowledge-card-text {
  padding: var(--space-6);
}

.homepage-knowledge-card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-light);
  margin-bottom: var(--space-3);
}

.homepage-knowledge-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.homepage-knowledge-card-excerpt {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 35%);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.homepage-knowledge-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.25s ease;
}

.homepage-knowledge-card-link:hover {
  gap: var(--space-4);
}

/* ============================================
   CTA SECTION
============================================ */

.homepage-cta-section {
  padding: var(--space-24) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.homepage-cta-gradient-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  z-index: 0;
}

.homepage-cta-content-block {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.homepage-cta-main-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-5);
}

.homepage-cta-body-text {
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 25%);
  font-size: 1.05rem;
  margin-bottom: var(--space-8);
}

.homepage-cta-buttons-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.homepage-cta-primary-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: var(--color-surface-elevated);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.homepage-cta-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.homepage-cta-outline-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: transparent;
  color: var(--color-text-on-dark);
  border: 2px solid color-mix(in oklch, var(--color-text-on-dark), transparent 60%);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.homepage-cta-outline-button:hover {
  background: color-mix(in oklch, var(--color-text-on-dark), transparent 85%);
  border-color: var(--color-text-on-dark);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT STRIP
============================================ */

.homepage-contact-strip-section {
  padding: var(--space-20) var(--space-6);
  background: var(--gradient-section);
}

.homepage-contact-strip-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.homepage-contact-strip-intro {
  text-align: center;
  margin-bottom: var(--space-10);
}

.homepage-contact-strip-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-3);
}

.homepage-contact-strip-text {
  color: var(--color-text-muted);
}

.homepage-contact-strip-form {
  background: var(--color-surface-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-card);
}

.homepage-contact-strip-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.homepage-contact-strip-second-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   FORM COMPONENTS (Floating Labels)
============================================ */

.contact-form-field-group {
  position: relative;
}

.contact-form-input-field,
.contact-form-textarea-field {
  width: 100%;
  padding: var(--space-5) var(--space-4) var(--space-2);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.93rem;
  color: var(--color-text-primary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: none;
}

.contact-form-input-field:focus,
.contact-form-textarea-field:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-subtle);
}

.contact-form-floating-label {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, transform 0.2s ease;
  background: transparent;
}

.contact-form-field-group--textarea .contact-form-floating-label {
  top: var(--space-4);
  transform: none;
}

.contact-form-input-field:focus + .contact-form-floating-label,
.contact-form-input-field:not(:placeholder-shown) + .contact-form-floating-label {
  top: var(--space-2);
  transform: none;
  font-size: 0.72rem;
  color: var(--color-primary);
  font-weight: 600;
}

.contact-form-textarea-field:focus + .contact-form-floating-label,
.contact-form-textarea-field:not(:placeholder-shown) + .contact-form-floating-label {
  top: var(--space-2);
  font-size: 0.72rem;
  color: var(--color-primary);
  font-weight: 600;
}

.contact-form-privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.83rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.contact-form-privacy-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.contact-form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--gradient-primary);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-button);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.contact-form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   INNER PAGE HERO
============================================ */

.inner-page-hero-section {
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-16);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.inner-page-hero--about {
  background: linear-gradient(135deg, oklch(30% 0.18 240) 0%, oklch(36% 0.20 270) 100%);
}

.inner-page-hero--consultation {
  background: linear-gradient(135deg, oklch(28% 0.20 200) 0%, oklch(35% 0.22 240) 100%);
}

.inner-page-hero--faq {
  background: linear-gradient(135deg, oklch(32% 0.18 270) 0%, oklch(28% 0.15 220) 100%);
}

.inner-page-hero--contact {
  background: linear-gradient(135deg, oklch(26% 0.16 200) 0%, oklch(33% 0.20 260) 100%);
}

.inner-page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.inner-page-hero-eyebrow {
  display: inline-block;
  background: color-mix(in oklch, var(--color-accent), transparent 75%);
  color: var(--color-accent-light);
  border: 1px solid color-mix(in oklch, var(--color-accent), transparent 65%);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.inner-page-hero-heading {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-5);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.inner-page-hero-gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inner-page-hero-subtext {
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 25%);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   ABOUT PAGE
============================================ */

.about-mission-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.about-mission-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-mission-heading {
  margin-bottom: var(--space-6);
}

.about-mission-lead {
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.about-mission-body {
  margin-bottom: var(--space-4);
}

.about-mission-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-mission-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-mission-image-frame:hover .about-mission-image {
  transform: scale(1.04);
}

.about-approach-section {
  padding: var(--space-24) var(--space-6);
  background: var(--gradient-section);
}

.about-approach-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-approach-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.about-approach-heading {
  margin-bottom: var(--space-5);
}

.about-approach-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.about-approach-point-card {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-approach-point-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-approach-point-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
}

.about-approach-point-heading {
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
}

.about-approach-point-body {
  font-size: 0.9rem;
  line-height: 1.75;
}

.about-rest-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.about-rest-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about-rest-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-rest-accent-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--gradient-primary);
  color: var(--color-text-on-dark);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.about-rest-heading {
  margin-bottom: var(--space-5);
}

.about-rest-lead {
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
}

.about-rest-body {
  margin-bottom: var(--space-4);
}

.about-rest-checklist {
  list-style: none;
  padding: 0;
  margin-top: var(--space-5);
}

.about-rest-checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.about-rest-checklist li:last-child { border-bottom: none; }

.about-rest-checklist li i {
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.about-energy-section {
  padding: var(--space-24) var(--space-6);
  background: var(--gradient-section);
}

.about-energy-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-energy-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.about-energy-heading {
  margin-bottom: var(--space-4);
}

.about-energy-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-energy-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
}

.about-energy-timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  align-items: start;
}

.about-energy-timeline-marker {
  display: flex;
  justify-content: flex-end;
  padding-right: var(--space-6);
  position: relative;
}

.about-energy-timeline-marker::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-surface);
}

.about-energy-timeline-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-energy-timeline-content {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-energy-timeline-content:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.about-energy-timeline-content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-3);
}

.about-energy-timeline-content p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* ============================================
   CONSULTATION PAGE
============================================ */

.consultation-what-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.consultation-what-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.consultation-what-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.consultation-what-heading {
  margin-bottom: var(--space-5);
}

.consultation-what-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.consultation-step-card {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.consultation-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.consultation-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.consultation-step-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.consultation-step-heading {
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}

.consultation-step-body {
  font-size: 0.9rem;
  line-height: 1.75;
}

.consultation-topics-section {
  padding: var(--space-24) var(--space-6);
  position: relative;
}

.consultation-topics-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(93% 0.02 220) 0%, oklch(91% 0.03 260) 100%);
}

.consultation-topics-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.consultation-topics-heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.consultation-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.consultation-topic-item {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.consultation-topic-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.consultation-topic-icon {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-4);
}

.consultation-topic-title {
  font-size: 1rem;
  margin-bottom: var(--space-3);
}

.consultation-topic-desc {
  font-size: 0.85rem;
  line-height: 1.7;
}

.consultation-form-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.consultation-form-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}

.consultation-form-heading {
  margin-bottom: var(--space-5);
}

.consultation-form-body {
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

.consultation-contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.consultation-contact-detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.consultation-contact-detail-item i {
  color: var(--color-primary);
  width: 20px;
  text-align: center;
}

.consultation-contact-detail-item a {
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.consultation-contact-detail-item a:hover {
  color: var(--color-primary-dark);
}

.consultation-booking-form {
  background: var(--color-surface-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-lg);
}

.consultation-form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.consultation-form-full-width {
  grid-column: 1 / -1;
}

.consultation-form-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   FAQ PAGE
============================================ */

.faq-main-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.faq-main-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-category-block {
  margin-bottom: var(--space-12);
}

.faq-category-heading {
  font-size: 1.3rem;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-border);
}

.faq-category-heading i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-accordion-item {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-accordion-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-accordion-question:hover {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}

.faq-accordion-question[aria-expanded="true"] {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}

.faq-accordion-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.faq-accordion-question[aria-expanded="true"] .faq-accordion-icon {
  transform: rotate(180deg);
}

.faq-accordion-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-accordion-answer.is-open {
  max-height: 400px;
}

.faq-accordion-answer p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-cta-section {
  padding: var(--space-20) var(--space-6);
  background: var(--gradient-section);
  text-align: center;
}

.faq-cta-container {
  max-width: 560px;
  margin: 0 auto;
}

.faq-cta-heading {
  margin-bottom: var(--space-4);
}

.faq-cta-body {
  margin-bottom: var(--space-8);
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: var(--gradient-primary);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-button);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT PAGE
============================================ */

.contact-main-section {
  padding: var(--space-24) var(--space-6);
  background: var(--color-surface);
}

.contact-main-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info-card-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card-text h3 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-card-text p,
.contact-info-card-text a {
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-info-card-text a {
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.contact-info-card-text a:hover {
  color: var(--color-primary-dark);
}

.contact-form-section-heading {
  margin-bottom: var(--space-6);
  font-size: 1.5rem;
}

.contact-main-form {
  background: var(--color-surface-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--
color-border-subtle);
  box-shadow: var(--shadow-lg);
}

.contact-page-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.contact-page-form-full-width {
  grid-column: 1 / -1;
}

.contact-page-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.contact-map-section {
  padding: 0 var(--space-6) var(--space-16);
  background: var(--color-surface);
}

.contact-map-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
}

.contact-news-section {
  padding: var(--space-20) var(--space-6) var(--space-24);
  background: var(--gradient-section);
}

.contact-news-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-news-heading {
  margin-bottom: var(--space-4);
}

.contact-news-intro {
  margin-bottom: var(--space-10);
  max-width: 540px;
}

.contact-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.contact-news-card-item {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-news-card-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.contact-news-card-item:hover::after {
  transform: scaleX(1);
}

.contact-news-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.contact-news-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  line-height: 1.4;
  color: var(--color-text-primary);
}

.contact-news-card-excerpt {
  font-size: 0.87rem;
  line-height: 1.75;
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
}

.contact-news-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.25s ease;
}

.contact-news-card-link:hover {
  gap: var(--space-4);
}

/* ============================================
   THANKS PAGE
============================================ */

.thanks-page-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 200px);
  padding: var(--space-16) var(--space-6);
}

.thanks-page-hero-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-page-content-wrapper {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--color-surface-elevated);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-xl);
}

.thanks-page-icon-wrapper {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-6);
  display: block;
}

.thanks-page-main-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: var(--space-4);
}

.thanks-page-body-text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  font-size: 1.05rem;
}

.thanks-page-countdown-block {
  background: var(--color-surface-tinted);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-8);
}

.thanks-page-redirect-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.thanks-page-countdown-number {
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.thanks-page-countdown-bar-wrapper {
  background: var(--color-border);
  border-radius: var(--radius-full);
  height: 6px;
  overflow: hidden;
}

.thanks-page-countdown-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  width: 100%;
  transition: width 1s linear;
}

.thanks-page-return-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--gradient-primary);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-button);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.thanks-page-return-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   LEGAL PAGES
============================================ */

.legal-page-hero-section {
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-6) var(--space-12);
  background: linear-gradient(135deg, oklch(30% 0.15 240) 0%, oklch(35% 0.18 270) 100%);
  text-align: center;
}

.legal-page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-page-hero-heading {
  color: var(--color-text-on-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-3);
}

.legal-page-last-updated {
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 40%);
  font-size: 0.88rem;
}

.legal-page-content-section {
  padding: var(--space-16) var(--space-6) var(--space-24);
  background: var(--color-surface);
}

.legal-page-content-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page-narrative-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border-subtle);
}

.legal-page-narrative-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: var(--space-5);
  color: var(--color-text-secondary);
}

.legal-page-narrative-body strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ============================================
   FOOTER
============================================ */

.main-site-footer {
  background: oklch(14% 0.02 240);
  color: var(--color-text-on-dark);
  margin-top: auto;
}

.main-site-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6) var(--space-12);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

.main-site-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
}

.main-site-footer-brand-description {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 45%);
  line-height: 1.75;
  max-width: 280px;
}

.main-site-footer-column-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 40%);
  margin-bottom: var(--space-5);
}

.main-site-footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.main-site-footer-nav-link {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 40%);
  transition: color 0.2s ease;
}

.main-site-footer-nav-link:hover {
  color: var(--color-text-on-dark);
}

.main-site-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.main-site-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 40%);
  line-height: 1.5;
}

.main-site-footer-contact-list li i {
  color: var(--color-primary-light);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.main-site-footer-bottom-bar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid color-mix(in oklch, var(--color-text-on-dark), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.main-site-footer-copyright-text {
  font-size: 0.8rem;
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 55%);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-5);
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: color-mix(in oklch, var(--color-text-on-dark), transparent 55%);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--color-text-on-dark);
}

/* ============================================
   COOKIE CONSENT
============================================ */

.cookie-consent-trigger-link {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.cookie-consent-trigger-link:hover {
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cookie-consent-trigger-link.cookie-trigger-pulse {
  animation: cookiePulse 2s ease-in-out 3;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 6px var(--color-primary-subtle), var(--shadow-sm); }
}

.cookie-consent-modal-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, oklch(10% 0.02 240), transparent 40%);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}

.cookie-consent-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-consent-modal-panel {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent-modal-overlay.is-visible .cookie-consent-modal-panel {
  transform: translateY(0) scale(1);
}

.cookie-consent-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.cookie-consent-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-primary);
}

.cookie-consent-modal-title i {
  color: var(--color-primary);
}

.cookie-consent-modal-close-button {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: var(--color-surface-tinted);
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.85rem;
}

.cookie-consent-modal-close-button:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

.cookie-consent-modal-description {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.cookie-consent-category-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.cookie-consent-category-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-surface-tinted);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
}

.cookie-consent-category-info {
  flex: 1;
}

.cookie-consent-category-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.cookie-consent-category-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-consent-toggle-wrapper {
  flex-shrink: 0;
}

.cookie-consent-toggle-input {
  position: relative;
  width: 40px;
  height: 22px;
  appearance: none;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s ease;
  outline: none;
}

.cookie-consent-toggle-input:checked {
  background: var(--gradient-primary);
}

.cookie-consent-toggle-input::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-consent-toggle-input:checked::after {
  transform: translateX(18px);
}

.cookie-consent-toggle-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-consent-modal-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cookie-consent-accept-all-button {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  background: var(--gradient-primary);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-button);
}

.cookie-consent-accept-all-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-consent-save-button {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--color-primary-light);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-consent-save-button:hover {
  background: var(--color-primary-subtle);
  transform: translateY(-2px);
}

.cookie-consent-reject-button {
  padding: var(--space-3) var(--space-4);
  background: none;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-reject-button:hover {
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */

@media (max-width: 1024px) {
  .homepage-hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }

  .homepage-hero-visual-block {
    max-width: 480px;
    margin: 0 auto;
  }

  .homepage-hero-cta-group {
    justify-content: center;
  }

  .homepage-hero-description-text {
    margin-left: auto;
    margin-right: auto;
  }

  .homepage-pillars-grid-layout {
    grid-template-columns: 1fr 1fr;
  }

  .homepage-knowledge-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .homepage-tabbed-section .homepage-tab-panel-inner {
    grid-template-columns: 1fr;
  }

  .homepage-tab-panel-visual-side {
    display: none;
  }

  .about-mission-container,
  .about-rest-container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .consultation-form-container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .contact-main-container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

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

  .main-site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .main-navigation-menu-list {
    display: none;
  }

  .main-navigation-hamburger-button {
    display: flex;
  }

  .main-navigation-mobile-accordion {
    display: block;
  }

  .homepage-hero-content-wrapper {
    padding: var(--space-10) var(--space-4);
    gap: var(--space-8);
  }

  .homepage-hero-floating-card--water {
    left: 0;
    top: 5%;
  }

  .homepage-hero-floating-card--energy {
    right: 0;
    bottom: 5%;
  }

  .homepage-hero-featured-image {
    height: 300px;
  }

  .homepage-intro-content-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .homepage-pillars-grid-layout {
    grid-template-columns: 1fr;
  }

  .homepage-knowledge-cards-grid {
    grid-template-columns: 1fr;
  }

  .homepage-contact-strip-fields-row {
    grid-template-columns: 1fr;
  }

  .homepage-contact-strip-second-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .homepage-tab-buttons-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .homepage-tab-button-item {
    min-width: 110px;
    font-size: 0.82rem;
    padding: var(--space-4);
  }

  .homepage-tab-panel-text-side {
    padding: var(--space-6);
  }

  .about-energy-timeline::before {
    left: 60px;
  }

  .about-energy-timeline-item {
    grid-template-columns: 70px 1fr;
    gap: var(--space-5);
  }

  .consultation-what-steps-grid {
    grid-template-columns: 1fr;
  }

  .consultation-topics-grid {
    grid-template-columns: 1fr;
  }

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

  .consultation-form-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-page-form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .faq-main-container {
    padding: 0;
  }

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

  .homepage-cta-primary-button,
  .homepage-cta-outline-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .main-site-footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-10) var(--space-5) var(--space-8);
  }

  .main-site-footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    padding: var(--space-5);
    gap: var(--space-3);
  }

  .thanks-page-content-wrapper {
    padding: var(--space-10) var(--space-6);
  }

  .inner-page-hero-section {
    padding: calc(var(--nav-height) + var(--space-10)) var(--space-4) var(--space-10);
  }

  .legal-page-hero-section {
    padding: calc(var(--nav-height) + var(--space-8)) var(--space-4) var(--space-8);
  }

  .legal-page-content-section {
    padding: var(--space-10) var(--space-4) var(--space-16);
  }

  .homepage-intro-section,
  .homepage-pillars-section,
  .homepage-tabbed-section,
  .homepage-knowledge-section,
  .homepage-cta-section,
  .about-mission-section,
  .about-approach-section,
  .about-rest-section,
  .about-energy-section,
  .consultation-what-section,
  .consultation-topics-section,
  .consultation-form-section,
  .faq-main-section,
  .contact-main-section,
  .contact-news-section {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    padding-top: var(--space-14);
    padding-bottom: var(--space-14);
  }

  .homepage-contact-strip-section {
    padding: var(--space-12) var(--space-4);
  }

  .homepage-contact-strip-form {
    padding: var(--space-5);
  }
}

@media (max-width: 480px) {
  .homepage-hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .homepage-hero-primary-button,
  .homepage-hero-secondary-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about-energy-timeline::before {
    display: none;
  }

  .about-energy-timeline-item {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .about-energy-timeline-marker::after {
    display: none;
  }

  .about-energy-timeline-marker {
    justify-content: flex-start;
    padding-right: 0;
  }

  .cookie-consent-modal-actions {
    flex-direction: column;
  }

  .cookie-consent-accept-all-button,
  .cookie-consent-save-button,
  .cookie-consent-reject-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}