/* ============================================
   NATOUR ENERGY — STYLES
   ============================================ */

:root {
  /* Brand Colors */
  --c-primary: #c80000;
  --c-primary-light: #dc0a0a;
  --c-primary-lighter: #e10000;
  --c-accent: #ffffff;
  --c-accent-dark: #f5f5f5;
  --c-green: #e10000;
  --c-green-light: #fff0f0;
  --c-text: #1a1a1a;
  --c-text-light: #5a5a5a;
  --c-text-muted: #8a8a8a;
  --c-bg: #ffffff;
  --c-bg-alt: #fafafa;
  --c-bg-dark: #c80000;
  --c-border: #e8e8e8;
  --c-white: #ffffff;

  /* Fonts */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(200, 0, 0, 0.06);
  --shadow: 0 8px 30px rgba(200, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(200, 0, 0, 0.15);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 100px;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-green);
  color: var(--c-white);
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(225, 0, 0, 0.3);
}
.btn--primary:hover {
  background: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(225, 0, 0, 0.4);
}

.btn--gold {
  background: var(--c-white);
  color: var(--c-primary);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}
.btn--gold:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  padding: 14px 28px;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--c-primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar__item { display: flex; align-items: center; gap: 4px; }
.topbar__phone {
  margin-left: auto;
  color: var(--c-accent);
  font-weight: 600;
  transition: color var(--transition);
}
.topbar__phone:hover { color: var(--c-white); }

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--c-primary);
  flex-shrink: 0;
}
.nav__logo-icon { color: var(--c-accent); display: flex; }
.nav__logo-text { letter-spacing: -0.02em; }
.nav__logo-accent { color: var(--c-green); }
.nav__logo--footer { color: var(--c-white); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text);
  padding: 10px 16px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}
.nav__link:hover {
  background: var(--c-bg-alt);
  color: var(--c-primary);
}

.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 340px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__dropdown-menu--right { right: 0; left: auto; }
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav__dropdown-item:hover { background: var(--c-green-light); }
.nav__dropdown-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-alt);
  border-radius: 10px;
  flex-shrink: 0;
}
.nav__dropdown-item strong { display: block; font-size: 0.95rem; color: var(--c-text); }
.nav__dropdown-item span { font-size: 0.82rem; color: var(--c-text-muted); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 24px;
  height: 2.5px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("hero-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(15, 15, 15, 0.78) 0%, rgba(15, 15, 15, 0.55) 40%, rgba(15, 15, 15, 0.3) 80%, rgba(15, 15, 15, 0.15) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.35) 0%, rgba(15, 15, 15, 0.15) 30%, rgba(15, 15, 15, 0.4) 80%, rgba(15, 15, 15, 0.7) 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px),
              repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--c-white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 24px;
}
.hero__title-accent {
  background: linear-gradient(135deg, #ffffff, #ffcccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  z-index: 2;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ USP ============ */
.usp {
  background: var(--c-white);
  padding: 0 0 80px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  border: 1px solid var(--c-border);
}
.usp__item { text-align: center; }
.usp__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.usp__item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.usp__item p {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.5;
}

/* ============ SECTION HEAD ============ */
.section-head {
  margin-bottom: 56px;
  max-width: 640px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-green);
  margin-bottom: 12px;
}
.section-head__eyebrow--light { color: var(--c-accent); }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.15rem;
  color: var(--c-text-light);
}

/* ============ PRODUCTS ============ */
.products {
  padding: 100px 0;
  background: var(--c-bg-alt);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__bg {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.product-card__bg--solar {
  background: linear-gradient(135deg, #ffffff 0%, #ffe5e5 100%);
}
.product-card__bg--battery {
  background: linear-gradient(135deg, #e10000 0%, #ff2222 100%);
}
.product-card__bg--wallbox {
  background: linear-gradient(135deg, #c80000 0%, #e10000 100%);
}
.product-card__bg--heatpump {
  background: linear-gradient(135deg, #e10000 0%, #ffffff 100%);
}
.product-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.product-card__body {
  padding: 28px 24px;
}
.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-primary);
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.product-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 0.92rem;
  color: var(--c-text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}
.product-card__list {
  margin-bottom: 20px;
}
.product-card__list li {
  font-size: 0.88rem;
  color: var(--c-text);
  padding: 5px 0;
  border-top: 1px solid var(--c-border);
}
.product-card__list li:first-child { border-top: none; }

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--c-green);
  font-size: 0.95rem;
  transition: gap var(--transition), color var(--transition);
}
.product-card__cta:hover { gap: 12px; color: var(--c-primary); }

/* ============ PROCESS ============ */
.process {
  padding: 100px 0;
  background: var(--c-white);
}
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-border) 0, var(--c-border) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-accent);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--c-white);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.process__step:hover .process__num { transform: scale(1.1); background: var(--c-green); }
.process__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.process__step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.process__step p {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

/* ============ CALCULATOR ============ */
.calculator {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--c-primary) 0%, #dc0a0a 100%);
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(225, 0, 0, 0.15) 0%, transparent 40%);
}
.calculator__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.calculator__content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.calculator__content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.calculator__widget {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
}
.calc-field { margin-bottom: 24px; }
.calc-field label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-weight: 500;
}
.calc-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--c-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
  transition: transform 0.2s;
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; background: var(--c-accent);
  border: none; border-radius: 50%; cursor: pointer;
}
.calc-field__row {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-top: 8px;
  font-family: var(--font-head);
}

.calc-result {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}
.calc-result__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.calc-result__item:last-child { border-bottom: none; }
.calc-result__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.calc-result__value {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-accent);
}

/* Calculator Visual */
.calculator__visual { display: flex; justify-content: center; }
.calc-visual-card {
  width: 100%;
  max-width: 420px;
  height: 420px;
  background: linear-gradient(180deg, #87ceeb 0%, #b8e0d2 60%, #fff0f0 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.calc-visual-card__sun {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #ffffff 0%, #ffe5e5 50%, rgba(249,178,52,0.3) 70%, transparent 100%);
  border-radius: 50%;
  animation: sunGlow 3s ease-in-out infinite;
}
@keyframes sunGlow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}
.calc-visual-card__roof {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 80px;
  background: #2d2d2d;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 50px;
  gap: 4px;
}
.calc-visual-card__panel {
  width: 50px;
  height: 30px;
  background: linear-gradient(135deg, #1a3a5c, #2a5a8c, #1a3a5c);
  border: 1.5px solid #4a7ab0;
  border-radius: 2px;
}
.calc-visual-card__house {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 140px;
  background: #e8e0d4;
  border-radius: 8px 8px 0 0;
}
.calc-visual-card__door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 70px;
  background: #8b6f47;
  border-radius: 4px 4px 0 0;
}
.calc-visual-card__window {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: #87ceeb;
  border: 3px solid #e8e0d4;
  border-radius: 4px;
}
.calc-visual-card__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.calc-label {
  position: absolute;
  background: var(--c-white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.calc-label--sun { top: 20px; left: 20px; color: #ffffff; }
.calc-label--energy { bottom: 20px; right: 20px; color: var(--c-green); }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 0;
  background: var(--c-bg-alt);
}
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


.testimonial-card {
  min-width: 0;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 0 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-green);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-top-color: var(--c-primary); }

/* Decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--c-green);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__stars {
  color: var(--c-green);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
  padding-top: 24px;
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.testimonial-card__author strong {
  font-size: 1rem;
  color: var(--c-primary);
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card__author strong svg.lucide { width: 14px; height: 14px; color: var(--c-green); }
.testimonial-card__author span {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card__author span svg.lucide { width: 12px; height: 12px; }
.testimonial-card__author strong { display: block; font-size: 0.95rem; color: var(--c-primary); }
.testimonial-card__author span { font-size: 0.82rem; color: var(--c-text-muted); }

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--c-primary);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__btn:hover { background: var(--c-primary); color: var(--c-accent); border-color: var(--c-primary); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-border); cursor: pointer; transition: all var(--transition);
  border: none;
}
.testimonials__dot.active { background: var(--c-green); width: 24px; border-radius: 4px; }

/* ============ AWARDS ============ */
.awards {
  padding: 80px 0;
  background: var(--c-white);
}
.awards__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.award-badge {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-sm);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.award-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-green);
}
.award-badge__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.award-badge span {
  font-size: 0.82rem;
  color: var(--c-text-light);
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background: var(--c-bg-alt);
}
.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about__text > p {
  font-size: 1.1rem;
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about__feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-green-light);
  border-radius: 12px;
}
.about__feature strong { display: block; font-size: 0.95rem; color: var(--c-primary); margin-bottom: 4px; }
.about__feature p { font-size: 0.85rem; color: var(--c-text-muted); margin: 0; }

.about__visual { display: flex; justify-content: center; }
.about__visual-card {
  background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about__visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.about__visual-stat {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about__visual-stat:last-child { border-bottom: none; }
.about__visual-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about__visual-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 0;
  background: var(--c-white);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq__item[open] {
  border-color: var(--c-green);
  box-shadow: var(--shadow-sm);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-primary);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  margin-left: 16px;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-green);
  transition: all var(--transition);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  padding: 0 24px 20px;
}
.faq__a p {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

/* ============ CTA ============ */
.cta {
  padding: 100px 0;
  background: var(--c-bg-alt);
}
.cta__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-white);
  border: 1px solid var(--c-border);
}
.cta__card-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(225, 0, 0, 0.15) 0%, transparent 50%);
}
.cta__card-content {
  position: relative;
  z-index: 1;
  padding: 64px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta__card-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta__card-content > p {
  color: var(--c-text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.cta__input {
  flex: 1 1 200px;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.cta__input::placeholder { color: var(--c-text-muted); }
.cta__input:focus {
  outline: none;
  border-color: var(--c-green);
  background: var(--c-white);
}
.cta__note {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

/* ============ FOOTER ============ */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__col--brand p {
  font-size: 0.9rem;
  margin: 16px 0;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--c-white); }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--c-accent); }
.footer__address {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(255, 255, 255, 0.5); transition: color var(--transition); }
.footer__legal a:hover { color: var(--c-accent); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .awards__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 1100px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  .nav__menu.active { transform: translateX(0); }
  .nav__burger { display: flex; }
  .nav__actions .btn { display: none; }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
  }
  .nav__dropdown:hover .nav__dropdown-menu { display: block; }

  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(2, 1fr); }
  .process__timeline::before { display: none; }
  .calculator__inner { grid-template-columns: 1fr; }
  .calculator__visual { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 85%; }
}

@media (max-width: 600px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 0; }
  .topbar__inner { gap: 12px; font-size: 0.75rem; }
  .topbar__item:nth-child(3) { display: none; }
  
  .hero { min-height: 80vh; padding: 100px 0 60px; }
  .hero__stats { gap: 24px; }
  .hero__stat-num { font-size: 1.6rem; }
  
  .usp__grid { grid-template-columns: 1fr; padding: 32px 20px; }
  .process__timeline { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .awards__grid { grid-template-columns: repeat(2, 1fr); }
  .about__features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta__card-content { padding: 40px 24px; }
  .cta__form { flex-direction: column; }
  .cta__input { flex: 1 1 100%; }
  .calculator__widget { padding: 20px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   LUCIDE ICONS
   ============================================ */
[data-lucide] { display: inline-flex; vertical-align: middle; }
svg.lucide { stroke-width: 2; flex-shrink: 0; display: inline-block; vertical-align: middle; }

/* Context-specific icon sizes */
.topbar__item svg.lucide { width: 16px; height: 16px; }
.topbar__phone svg.lucide { width: 16px; height: 16px; }
.nav__dropdown-icon svg.lucide { width: 22px; height: 22px; }
.usp__icon svg.lucide { width: 48px; height: 48px; }
.product-card__icon svg.lucide { width: 40px; height: 40px; }
.process__icon svg.lucide { width: 36px; height: 36px; }
.award-badge__icon svg.lucide { width: 40px; height: 40px; }
.about__feature-icon svg.lucide { width: 24px; height: 24px; }
.cta__note svg.lucide { width: 14px; height: 14px; display: inline-flex; vertical-align: middle; margin-right: 4px; }
.footer__col a svg.lucide { width: 16px; height: 16px; display: inline-flex; vertical-align: middle; margin-right: 6px; }
.product-card__list svg.lucide { width: 16px; height: 16px; display: inline-flex; vertical-align: middle; margin-right: 6px; color: var(--c-green); }
.hero__badge svg.lucide { width: 16px; height: 16px; margin-right: 4px; }

/* Social icons (inline SVG, not Lucide) */
.footer__social a svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.6); transition: fill var(--transition); }
.footer__social a:hover svg { fill: var(--c-primary); }

/* Subpage icon sizes (pages.css additions) */
.benefit-item svg.lucide { width: 32px; height: 32px; color: var(--c-green); }
.job-listing__meta svg.lucide { width: 14px; height: 14px; display: inline-flex; vertical-align: middle; margin-right: 3px; }
.press-item__logo svg.lucide { width: 32px; height: 32px; color: var(--c-green); }
.blog-card__date svg.lucide { width: 14px; height: 14px; display: inline-flex; vertical-align: middle; margin-right: 4px; }
.placeholder-section svg.lucide { width: 36px; height: 36px; color: var(--c-text-muted); margin-bottom: 12px; }
.partner-form + .placeholder-section svg.lucide { color: var(--c-text-muted); }
.legal-content svg.lucide { width: 14px; height: 14px; display: inline-flex; vertical-align: middle; margin-right: 4px; }

/* Job listing CTA icon */
.job-listing .product-card__cta svg.lucide { width: 14px; height: 14px; }
.press-item__link svg.lucide, .blog-card__cta svg.lucide { width: 14px; height: 14px; }

/* Inline icon alignment in text */
.topbar__item svg.lucide, .topbar__phone svg.lucide { vertical-align: middle; margin-right: 2px; }
.hero__badge svg.lucide { vertical-align: middle; margin-right: 6px; }
.cta__note svg.lucide { vertical-align: middle; margin-right: 4px; }
.footer__col a svg.lucide { vertical-align: middle; margin-right: 6px; }

/* ============================================
   NEW SECTIONS — PV CONTENT (no pricing)
   ============================================ */

/* Why PV Section */
.why-pv {
  padding: 100px 0;
  background: var(--c-bg-alt);
}
.why-pv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.why-pv__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}
.why-pv__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-green);
}
.why-pv__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--c-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-pv__card-icon svg.lucide { width: 28px; height: 28px; color: var(--c-green); }
.why-pv__card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.why-pv__card p {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.why-pv__card-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-green-light);
  color: var(--c-green);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.why-pv__card-stat svg.lucide { width: 14px; height: 14px; }

/* Roof Types Section */
.roof-types {
  padding: 100px 0;
  background: var(--c-white);
}
.roof-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.roof-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.roof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-green);
}
.roof-card__visual {
  height: 140px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.roof-card__visual--pitched {
  background: linear-gradient(180deg, #b8e0d2 0%, #fff0f0 100%);
}
.roof-card__visual--flat {
  background: linear-gradient(180deg, #d4e8d0 0%, #fff0f0 100%);
}
.roof-card__visual--tile {
  background: linear-gradient(180deg, #e8d4c0 0%, #f5ece2 100%);
}
.roof-card__visual--metal {
  background: linear-gradient(180deg, #c0d0d8 0%, #e0eaf0 100%);
}
.roof-card__roof {
  width: 80px;
  height: 50px;
  position: relative;
  margin-bottom: 20px;
}
.roof-card__roof--pitched {
  width: 100px;
  height: 60px;
  background: #2d4a3a;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: relative;
}
.roof-card__roof--pitched::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 25px;
  width: 50px;
  height: 30px;
  background: repeating-linear-gradient(90deg, #1a3a5c 0 10px, #2a5a8c 10px 11px);
}
.roof-card__roof--flat {
  width: 100px;
  height: 8px;
  background: #2d4a3a;
  position: relative;
}
.roof-card__roof--flat::after {
  content: '';
  position: absolute;
  top: -25px;
  left: 15px;
  width: 70px;
  height: 25px;
  background: repeating-linear-gradient(90deg, #1a3a5c 0 12px, #2a5a8c 12px 13px);
  transform: perspective(100px) rotateX(40deg);
}
.roof-card__roof--tile {
  width: 100px;
  height: 55px;
  background: #b85e3a;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: relative;
}
.roof-card__roof--tile::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 25px;
  width: 50px;
  height: 28px;
  background: repeating-linear-gradient(90deg, #1a3a5c 0 10px, #2a5a8c 10px 11px);
}
.roof-card__roof--metal {
  width: 100px;
  height: 55px;
  background: #5a7a8a;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: relative;
}
.roof-card__roof--metal::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 25px;
  width: 50px;
  height: 28px;
  background: repeating-linear-gradient(90deg, #1a3a5c 0 10px, #2a5a8c 10px 11px);
}
.roof-card__body {
  padding: 24px 20px;
}
.roof-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.roof-card__body p {
  font-size: 0.88rem;
  color: var(--c-text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.roof-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.roof-card__badge--ideal { background: var(--c-green-light); color: var(--c-green); }
.roof-card__badge--good { background: #fff0f0; color: #c89a1a; }
.roof-card__badge--possible { background: #e6f0fa; color: #2a6ab0; }

/* Orientation Grid */
.roof-orientation {
  margin-top: 56px;
}
.roof-orientation h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--c-primary);
  margin-bottom: 24px;
  text-align: center;
}
.roof-orientation__compass {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.orient-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: all var(--transition);
}
.orient-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-green);
}
.orient-item__dir {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.orient-item__label {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.orient-item__bar {
  margin-top: 12px;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--c-border);
  overflow: hidden;
}
.orient-item__bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}
.orient-item__percent {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: 4px;
}

/* Technology Section */
.technology {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--c-primary) 0%, #dc0a0a 100%);
  position: relative;
  overflow: hidden;
}
.technology::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}
.technology .container { position: relative; z-index: 1; }
.technology .section-head h2 { color: var(--c-white); }
.technology .section-head p { color: rgba(255,255,255,0.7); }
.technology .section-head__eyebrow { color: var(--c-accent); }
.technology .text-accent { color: #ffffff; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.tech-card:hover {
  background: var(--c-white);
  border-color: var(--c-green);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.tech-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--c-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.tech-card__icon svg.lucide { width: 26px; height: 26px; color: var(--c-green); }
.tech-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.tech-card p {
  font-size: 0.92rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}
.tech-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-card__spec {
  font-size: 0.78rem;
  color: var(--c-text);
  background: var(--c-bg-alt);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}

/* Projects Gallery */
.projects {
  padding: 100px 0;
  background: var(--c-bg-alt);
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.project-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card__img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.project-card__img--1 { background: linear-gradient(135deg, #dc0a0a 0%, #e10000 50%, #ff2222 100%); }
.project-card__img--2 { background: linear-gradient(135deg, #c80000 0%, #e10000 50%, #e10000 100%); }
.project-card__img--3 { background: linear-gradient(135deg, #e10000 0%, #e10000 50%, #ff2222 100%); }
.project-card__img--4 { background: linear-gradient(135deg, #dc0a0a 0%, #e10000 50%, #dc0a0a 100%); }
.project-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.project-card__img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(200, 0, 0, 0.8);
  color: var(--c-accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.project-card__body {
  padding: 24px;
}
.project-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.project-card__body p {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-card__tag {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.project-card__tag svg.lucide { width: 12px; height: 12px; }

/* Blog Teaser */
.blog-teaser {
  padding: 100px 0;
  background: var(--c-white);
}
.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-teaser__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-teaser__head .section-head { margin-bottom: 0; }

/* CTA Banner (replacement for calculator) */
.cta-banner {
  padding: 80px 0;
  background: var(--c-white);
}
.cta-banner__inner {
  background: linear-gradient(135deg, var(--c-green) 0%, #c80000 100%);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.cta-banner__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner__inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-banner__inner .btn {
  position: relative;
  z-index: 1;
}

/* Stats Band */
.stats-band {
  background: var(--c-primary);
  padding: 60px 0;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-band__item {
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-band__item:last-child { border-right: none; }
.stats-band__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-band__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .roof-orientation__compass { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__item:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .roof-orientation { padding: 24px 16px; }
  .tech-grid { grid-template-columns: 1fr; }
  .roof-orientation__compass { grid-template-columns: 1fr 1fr; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { padding: 36px 20px; }
}

/* Hero image overlay — mobile adjustment */
@media (max-width: 900px) {
  .hero__bg::before {
    background: 
      linear-gradient(180deg, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.45) 40%, rgba(15, 15, 15, 0.7) 80%, rgba(15, 15, 15, 0.85) 100%) !important;
  }
}
@media (max-width: 600px) {
  .hero__bg {
    background-position: center 30%;
  }
  .hero__bg::before {
    background: rgba(15, 15, 15, 0.75) !important;
  }
}

/* Logo Slogan */
.nav__logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-slogan {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  margin-top: 3px;
  text-transform: none;
}
.nav__logo--footer .nav__logo-slogan {
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   CARD SYMMETRY — badges/tags aligned at bottom
   ============================================ */

/* Why PV cards */
.why-pv__card {
  display: flex;
  flex-direction: column;
}
.why-pv__card p {
  flex-grow: 1;
}
.why-pv__card-stat {
  margin-top: auto;
}

/* Roof cards */
.roof-card {
  display: flex;
  flex-direction: column;
}
.roof-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.roof-card__body p {
  flex-grow: 1;
}
.roof-card__badge {
  margin-top: auto;
  align-self: flex-start;
}

/* Tech cards */
.tech-card {
  display: flex;
  flex-direction: column;
}
.tech-card p {
  flex-grow: 1;
}
.tech-card__specs {
  margin-top: auto;
}

/* Project cards */
.project-card {
  display: flex;
  flex-direction: column;
}
.project-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-card__body p {
  flex-grow: 1;
}
.project-card__tags {
  margin-top: auto;
}
.project-card__cta {
  margin-top: auto;
}

/* Product cards (if still used) */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card__body > p:last-of-type {
  flex-grow: 1;
}
.product-card__cta {
  margin-top: auto;
}
.product-card__list {
  flex-grow: 1;
}

/* Blog teaser cards (reuse project-card but with CTA) */
.blog-teaser .project-card__body p {
  flex-grow: 1;
}
.blog-teaser .project-card__body .product-card__cta {
  margin-top: auto;
}

/* PV feature cards */
.pv-features > div {
  display: flex;
  flex-direction: column;
}
.pv-features > div > p {
  flex-grow: 1;
}

/* Contact form column mode — inputs don't stretch vertically */
.cta__form[style*="column"] .cta__input {
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.cta__form[style*="column"] .cta__input:not(textarea) {
  height: 40px;
}
.cta__form[style*="column"] textarea {
  min-height: 60px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-banner.show { transform: translateY(0); }

.cookie-banner__bar {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-banner__text {
  flex: 1 1 400px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.cookie-banner__text a { color: var(--c-accent); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--c-green);
  color: #fff;
}
.cookie-banner__btn--accept:hover { background: var(--c-primary); }
.cookie-banner__btn--necessary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-banner__btn--necessary:hover { background: rgba(255, 255, 255, 0.1); }
.cookie-banner__btn--settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  border: none;
  padding: 10px 8px;
}
.cookie-banner__btn--settings:hover { color: #fff; }

/* Settings panel */
.cookie-banner__settings {
  display: none;
  padding: 0 24px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-banner__settings.show { display: block; }
.cookie-banner__settings h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  margin: 20px 0 12px;
}
.cookie-banner__category {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 10px;
}
.cookie-banner__category-info { flex: 1; }
.cookie-banner__category-info strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 4px;
}
.cookie-banner__category-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}
/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--c-green); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.5; cursor: not-allowed; }

/* Settings actions */
.cookie-banner__settings-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Cookie settings link in footer */
.cookie-settings-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 12px;
  padding: 0;
  font-family: var(--font-body);
}
.cookie-settings-link:hover { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 600px) {
  .cookie-banner__bar { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__btn { width: 100%; text-align: center; }
}

/* ============================================
   FORM SUCCESS OVERLAY
   ============================================ */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.success-overlay.show {
  opacity: 1;
  visibility: visible;
}
.success-overlay__card {
  background: var(--c-white);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.success-overlay.show .success-overlay__card {
  transform: scale(1);
}
.success-overlay__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-overlay__icon svg.lucide {
  width: 36px;
  height: 36px;
  color: var(--c-green);
}
.success-overlay__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.success-overlay__text {
  font-size: 1rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.success-overlay__summary {
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
}
.success-overlay__summary-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.success-overlay__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--c-border);
}
.success-overlay__summary-row:last-child { border-bottom: none; }
.success-overlay__summary-label {
  color: var(--c-text-muted);
  flex-shrink: 0;
}
.success-overlay__summary-value {
  color: var(--c-text);
  font-weight: 600;
  text-align: right;
}
.success-overlay__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}
.success-overlay__hint svg.lucide { width: 16px; height: 16px; }
.success-overlay__close {
  width: 100%;
  padding: 14px;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.success-overlay__close:hover { background: var(--c-green); }

/* ============================================
   ACCESSIBILITY TOOLBAR (Barrierefreiheit)
   ============================================ */
.a11y-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0;
}
.a11y-btn:hover {
  background: var(--c-green);
  transform: scale(1.08);
}
.a11y-btn svg {
  width: 26px;
  height: 26px;
}
.a11y-btn::after {
  content: 'Barrierefreiheit';
  position: absolute;
  left: 62px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.a11y-btn:hover::after { opacity: 1; }

.a11y-panel {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid var(--c-border);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 85vh;
  overflow-y: auto;
}
.a11y-panel.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.a11y-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--c-border);
}
.a11y-panel__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.a11y-panel__title svg { width: 20px; height: 20px; color: var(--c-green); }
.a11y-panel__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--c-text-muted);
  transition: color 0.2s;
}
.a11y-panel__close:hover { color: var(--c-primary); }
.a11y-panel__close svg { width: 20px; height: 20px; }

.a11y-panel__body { padding: 16px 20px 20px; }
.a11y-section { margin-bottom: 20px; }
.a11y-section:last-child { margin-bottom: 0; }
.a11y-section__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.a11y-btn-group {
  display: flex;
  gap: 8px;
}
.a11y-option {
  flex: 1;
  padding: 10px 8px;
  border: 2px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-white);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.a11y-option:hover { border-color: var(--c-green); background: var(--c-green-light); }
.a11y-option.active {
  border-color: var(--c-green);
  background: var(--c-green);
  color: #fff;
}
.a11y-option svg { width: 16px; height: 16px; }
.a11y-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 2px solid var(--c-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
}
.a11y-toggle:hover { border-color: var(--c-green); }
.a11y-toggle.active { border-color: var(--c-green); background: var(--c-green-light); }
.a11y-toggle__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.a11y-toggle__label svg { width: 18px; height: 18px; color: var(--c-text-muted); }
.a11y-toggle.active .a11y-toggle__label svg { color: var(--c-green); }

.a11y-reset {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.a11y-reset:hover { background: var(--c-green); }
.a11y-reset svg { width: 16px; height: 16px; }

/* Accessibility modes */
body.a11y-font-large { font-size: 18px; }
body.a11y-font-xl { font-size: 20px; }
body.a11y-contrast {
  --c-primary: #000000;
  --c-text: #000000;
  --c-text-light: #1a1a1a;
  --c-text-muted: #333333;
  --c-bg: #ffffff;
  --c-bg-alt: #ffff00;
  --c-border: #000000;
  --c-green: #0000ee;
  --c-green-light: #ffff00;
  --c-accent: #ffffff;
  background: #fff !important;
}
body.a11y-contrast *:not(svg):not(path):not(circle):not(line) {
  background-color: transparent !important;
  color: #000 !important;
  border-color: #000 !important;
}
body.a11y-contrast .nav, body.a11y-contrast .footer, body.a11y-contrast .topbar,
body.a11y-contrast .hero, body.a11y-contrast .stats-band, body.a11y-contrast .technology,
body.a11y-contrast .cta__card, body.a11y-contrast .about__visual-card {
  background: #000 !important;
  color: #ff0 !important;
}
body.a11y-contrast .nav *, body.a11y-contrast .footer *, body.a11y-contrast .topbar *,
body.a11y-contrast .hero *, body.a11y-contrast .stats-band *, body.a11y-contrast .technology * {
  color: #ff0 !important;
}
body.a11y-contrast a { color: #ffff00 !important; text-decoration: underline !important; }
body.a11y-contrast .btn--primary { background: #ff0 !important; color: #000 !important; border: 2px solid #000 !important; }
body.a11y-contrast .btn--gold { background: #ff0 !important; color: #000 !important; border: 2px solid #000 !important; }

body.a11y-grayscale { filter: grayscale(100%); }

body.a11y-links a:not(.a11y-btn):not(.a11y-option):not(.a11y-toggle):not(.a11y-reset):not(.a11y-panel__close) {
  text-decoration: underline !important;
  font-weight: 700 !important;
}

body.a11y-reading *:focus {
  outline: 3px solid #c80000 !important;
  outline-offset: 2px !important;
}

@media (max-width: 600px) {
  .a11y-btn { bottom: 16px; left: 16px; width: 44px; height: 44px; }
  .a11y-panel { bottom: 16px; left: 16px; right: 16px; width: auto; }
  .a11y-btn::after { display: none; }
}

/* Footer AI badge */
.footer__made-with {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 12px 0 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__made-with svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.footer__made-with:hover svg { opacity: 0.8; }
.footer__made-with a { color: rgba(255, 255, 255, 0.4); text-decoration: underline; }
.footer__made-with a:hover { color: rgba(255, 255, 255, 0.7); }

/* PNG Logo */
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__logo--footer img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1); /* Makes the red logo white for dark footer */
}
@media (max-width: 600px) {
  .nav__logo img { height: 32px; }
  .nav__logo--footer img { height: 28px; }
}
