/* ============================
   WOFUHU NIHURO - MAIN STYLESHEET
   Candy Gradient Design System
   Full Production Version
   ============================ */


:root {
  --candy-pink: #f472b6;
  --candy-purple: #a855f7;
  --candy-blue: #60a5fa;
  --candy-teal: #2dd4bf;
  --candy-peach: #fb923c;
  --grad-main: linear-gradient(135deg, #f472b6 0%, #a855f7 35%, #60a5fa 70%, #2dd4bf 100%);
  --grad-soft: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 50%, #eff6ff 100%);
  --grad-card: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(168,85,247,0.06) 100%);
  --text-dark: #1e1b2e;
  --text-mid: #4a4560;
  --text-light: #7c6f9a;
  --surface: #fefcff;
  --surface-2: #f8f4ff;
  --border: rgba(168, 85, 247, 0.12);
  --shadow-sm: 0 2px 8px rgba(168,85,247,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(168,85,247,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 48px rgba(168,85,247,0.16), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(168,85,247,0.2), 0 8px 24px rgba(168,85,247,0.12);
  --nav-h: 72px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 50px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--candy-purple);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--candy-pink);
}

ul {
  list-style: none;
}

button {
  font-family: 'Inter', sans-serif;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  width: 100%;
}


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

.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--candy-purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.4;
}

.eyebrow-label--light {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.92);
}

.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  margin-top: 0.75rem;
  letter-spacing: -0.01em;
}

.section-heading--light {
  color: #fff;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.72;
}

.section-subtext--light {
  color: rgba(255, 255, 255, 0.82);
}

.subsection-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}

.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.body-text--large {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.72;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(254, 252, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  position: relative;
  z-index: 100;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: var(--candy-purple);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--grad-main);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.45);
  color: #fff;
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav__hamburger:hover {
  background: rgba(168, 85, 247, 0.08);
}


.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(254, 252, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 99;
}

.nav__mobile-menu.is-open {
  max-height: 440px;
}

.nav__mobile-menu a {
  display: block;
  padding: 14px clamp(1rem, 4vw, 3rem);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 85, 247, 0.07);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.nav__mobile-menu a:hover {
  background: rgba(168, 85, 247, 0.06);
  color: var(--candy-purple);
  padding-left: calc(clamp(1rem, 4vw, 3rem) + 6px);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) 0 0;
  position: relative;
  overflow: hidden;
  background: var(--grad-soft);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: -6%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.11) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

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

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--candy-purple);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero__title span {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}


.hero-cards-wrap {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0 3rem;
  position: relative;
}

.hero-cards-wrap::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to left, rgba(253,242,248,0.95), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-cards {
  display: flex;
  gap: 1.25rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem) 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.hero-cards::-webkit-scrollbar {
  display: none;
}

.hero-cards:active {
  cursor: grabbing;
}

.mini-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  text-decoration: none;
  color: var(--text-dark);
  scroll-snap-align: start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform-style: preserve-3d;
}

.mini-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.mini-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(168, 85, 247, 0.2);
  color: var(--text-dark);
}

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

.mini-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.mini-card__icon--wind {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--candy-blue);
}

.mini-card__icon--solar {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  color: var(--candy-peach);
}

.mini-card__icon--biomass {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
  color: #16a34a;
}

.mini-card__icon--method {
  background: linear-gradient(135deg, #fdf4ff, #f3e8ff);
  color: var(--candy-purple);
}

.mini-card__icon--coop {
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  color: var(--candy-teal);
}

.mini-card__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.mini-card__desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
}

.mini-card__arrow {
  font-size: 0.75rem;
  color: var(--candy-purple);
  transition: transform 0.25s ease;
  margin-top: 0.25rem;
  display: inline-block;
}

.mini-card:hover .mini-card__arrow {
  transform: translateX(5px);
}

/* ============================
   WAVE DIVIDERS
   ============================ */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin: -1px 0;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  display: block;
}

.wave-divider--flip {
  transform: scaleY(-1);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
  line-height: 1.2;
}

.btn--primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35), 0 2px 8px rgba(168, 85, 247, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.45), 0 4px 12px rgba(168, 85, 247, 0.25);
  color: #fff;
}

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

.btn--outline:hover {
  background: var(--candy-purple);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gradient {
  background: var(--grad-main);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--gradient:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn--white {
  background: #fff;
  color: var(--candy-purple);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  background: #f3e8ff;
  transform: translateY(-2px);
  color: var(--candy-purple);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.btn--submit {
  justify-content: center;
  font-size: 1rem;
  padding: 14px 32px;
  width: 100%;
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section--gradient-bg {
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
}

.section--gradient-bg::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section--gradient-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section--light-gradient {
  background: var(--grad-soft);
}

.section--cta-banner {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--map {
  padding-top: 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  background: var(--grad-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.page-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.page-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================
   INTRO GRID (homepage)
   ============================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

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

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(30, 27, 46, 0.15));
  pointer-events: none;
}

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

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

.image-frame__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--candy-purple);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

/* ============================
   ENERGY CARDS (homepage)
   ============================ */
.energy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

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

.card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card--energy:hover .card__image-wrap img {
  transform: scale(1.07);
}

.card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(96, 165, 250, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.card__tag--solar {
  background: rgba(251, 146, 60, 0.92);
}

.card__tag--biomass {
  background: rgba(45, 212, 191, 0.92);
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card__text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 1.25rem;
}

.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--candy-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
  position: relative;
}

.card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--candy-pink);
  transition: width 0.3s ease;
}

.card__link:hover {
  gap: 10px;
  color: var(--candy-pink);
}

.card__link:hover::after {
  width: 100%;
}

/* ============================
   PROCESS STEPS (homepage)
   ============================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-main);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(168, 85, 247, 0.22);
  transform: translateY(-3px);
}

.step:hover::before {
  transform: scaleY(1);
}

.step__number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 54px;
}

.step__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ============================
   FEATURE SPLIT
   ============================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.feature-split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feature-split__image::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--grad-main);
  border-radius: calc(var(--radius-xl) + 3px);
  z-index: -1;
  opacity: 0.35;
}

.feature-split__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
  transition: transform 0.5s ease;
}

.feature-split__image:hover img {
  transform: scale(1.04);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: var(--candy-teal);
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
}

/* ============================
   COOP HIGHLIGHT
   ============================ */
.coop-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.coop-highlight__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.coop-highlight__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.coop-highlight__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.coop-highlight__image:hover img {
  transform: scale(1.04);
}

/* ============================
   TOPICS GRID
   ============================ */
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: default;
  user-select: none;
}

.topic-chip i {
  color: var(--candy-purple);
  font-size: 0.9rem;
}

.topic-chip:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.28);
  color: var(--candy-purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================
   WHAT MAKES US DIFFERENT PAGE
   ============================ */
.diff-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.principle-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
}

.principle-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.principle-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.principle-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.principle-card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.76;
}

/* ============================
   AUDIENCE CARDS
   ============================ */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.2);
}

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

.audience-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--candy-purple);
  margin-bottom: 1rem;
  transition: background 0.25s ease;
}

.audience-card:hover .audience-card__icon {
  background: rgba(168, 85, 247, 0.15);
}

.audience-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.audience-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ============================
   GET STARTED PAGE - TECH SECTIONS
   ============================ */
.tech-section {
  position: relative;
}

.tech-section__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tech-section__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.tech-section__icon--wind {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--candy-blue);
}

.tech-section__icon--solar {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  color: var(--candy-peach);
}

.tech-section__icon--biomass {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
  color: #16a34a;
}

.tech-section__intro {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.tech-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.tech-content-grid__main > *:first-child {
  margin-top: 0;
}

.sidebar-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.sidebar-card:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-card--gradient {
  background: var(--grad-soft);
  border-color: rgba(168, 85, 247, 0.14);
}

.sidebar-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card__title i {
  color: var(--candy-purple);
}

.sidebar-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.term-list {
  list-style: none;
}

.term-list dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0.8rem;
}

.term-list dt:first-child {
  margin-top: 0;
}

.term-list dd {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-left: 0;
  padding-left: 0;
}

/* ============================
   METHODOLOGY PAGE
   ============================ */
.methodology-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.methodology-layers {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.layer-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.layer-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.layer-card__number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  transition: color 0.3s ease;
}

.layer-card:hover .layer-card__number {
  color: rgba(255, 255, 255, 0.4);
}

.layer-card__content {
  flex: 1;
}

.layer-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.layer-card__text {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.76;
  margin-bottom: 1rem;
}

.layer-card__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tool-tag {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease;
}

.tool-tag:hover {
  background: rgba(255, 255, 255, 0.25);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.standard-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.standard-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.standard-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.standard-item:hover::after {
  transform: scaleX(1);
}

.standard-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--candy-purple);
  margin-bottom: 1rem;
  transition: background 0.25s ease;
}

.standard-item:hover .standard-item__icon {
  background: rgba(168, 85, 247, 0.16);
}

.standard-item__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.standard-item__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.form-required {
  color: var(--candy-pink);
  margin-left: 2px;
}

.form-input {
  padding: 12px 16px;
  border: 1.5px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--surface);
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
  min-height: 44px;
}

.form-input:focus {
  border-color: var(--candy-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
  background: #fff;
}

.form-input:hover:not(:focus) {
  border-color: rgba(168, 85, 247, 0.3);
}

.form-input::placeholder {
  color: var(--text-light);
}

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

.form-group--checkbox {
  flex-direction: row;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.form-checkbox-label input[type="checkbox"] {
  display: none;
}

.form-checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(168, 85, 247, 0.25);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s ease;
  position: relative;
  background: var(--surface);
  cursor: pointer;
}

.form-checkbox-label:hover .form-checkbox-custom {
  border-color: var(--candy-purple);
}

.form-checkbox-label input:checked + .form-checkbox-custom {
  background: var(--candy-purple);
  border-color: var(--candy-purple);
}

.form-checkbox-label input:checked + .form-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox-label a {
  color: var(--candy-purple);
  font-weight: 500;
}

.form-error {
  background: rgba(244, 114, 182, 0.1);
  border: 1px solid rgba(244, 114, 182, 0.3);
  color: #be185d;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.contact-info-card {
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--candy-purple);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-info-item a:hover {
  color: var(--candy-purple);
}

.accessibility-note {
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.accessibility-note__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accessibility-note__title i {
  color: var(--candy-purple);
}

.accessibility-note p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.72;
}

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

/* ============================
   LEGAL PAGES
   ============================ */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.legal-page__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}

.legal-page__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.legal-page__meta {
  font-size: 0.875rem;
  color: var(--text-light);
}

.legal-intro {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--grad-soft);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--candy-purple);
}

.legal-intro-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--grad-soft);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--candy-purple);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.25rem 0 0.5rem;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 0.75rem;
}

.legal-section a {
  color: var(--candy-purple);
  font-weight: 500;
}

.legal-section a:hover {
  color: var(--candy-pink);
}

.legal-bullets {
  list-style: none;
  margin: 0.75rem 0;
}

.legal-bullets li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.72;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.legal-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--candy-purple);
  border-radius: 50%;
}

.terms-section p {
  margin-bottom: 0.6rem;
}

.cookie-subheading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.6rem;
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--surface);
  min-width: 540px;
}

.cookie-table th {
  background: rgba(168, 85, 247, 0.08);
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cookie-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) td {
  background: rgba(168, 85, 247, 0.025);
}

.cookie-table code {
  background: rgba(168, 85, 247, 0.1);
  color: var(--candy-purple);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-family: 'Courier New', monospace;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}

.footer__brand .nav__logo-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
}

.footer__address {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__address i {
  color: var(--candy-purple);
  width: 14px;
  flex-shrink: 0;
}

.footer__address a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__address a:hover {
  color: var(--candy-pink);
}

.footer__nav-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer__nav ul {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 0.6rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer__nav a:hover {
  color: var(--candy-pink);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
}

/* ============================
   BACK TO TOP BUTTON
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--grad-main);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================
   SCROLL REVEAL ANIMATION
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


.energy-cards .card:nth-child(2).reveal { transition-delay: 0.1s; }
.energy-cards .card:nth-child(3).reveal { transition-delay: 0.2s; }
.principles-grid .principle-card:nth-child(2).reveal { transition-delay: 0.1s; }
.principles-grid .principle-card:nth-child(3).reveal { transition-delay: 0.15s; }
.principles-grid .principle-card:nth-child(4).reveal { transition-delay: 0.2s; }
.audience-cards .audience-card:nth-child(2).reveal { transition-delay: 0.1s; }
.audience-cards .audience-card:nth-child(3).reveal { transition-delay: 0.15s; }
.audience-cards .audience-card:nth-child(4).reveal { transition-delay: 0.2s; }
.standards-grid .standard-item:nth-child(2).reveal { transition-delay: 0.1s; }
.standards-grid .standard-item:nth-child(3).reveal { transition-delay: 0.15s; }
.standards-grid .standard-item:nth-child(4).reveal { transition-delay: 0.2s; }

/* ============================
   COOKIE CONSENT
   ============================ */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 60px rgba(30, 27, 46, 0.18),
    0 8px 24px rgba(168, 85, 247, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 9999;
  overflow: hidden;
  transform: translateY(130%);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
  border: 1px solid rgba(168, 85, 247, 0.12);
}

.cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent__icon {
  width: 100%;
  background: var(--grad-main);
  padding: 1.25rem;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1;
}

.cookie-consent__body {
  padding: 1.25rem;
}

.cookie-consent__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cookie-consent__text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.62;
  margin-bottom: 1rem;
}

.cookie-consent__text a {
  color: var(--candy-purple);
  font-weight: 500;
}

.cookie-consent__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-consent__btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  min-height: 40px;
}

.cookie-consent__btn--accept {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.cookie-consent__btn--accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.4);
}

.cookie-consent__btn--necessary {
  background: rgba(168, 85, 247, 0.08);
  color: var(--candy-purple);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.cookie-consent__btn--necessary:hover {
  background: rgba(168, 85, 247, 0.14);
}

.cookie-consent__btn--customize {
  background: none;
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 6px;
}

.cookie-consent__btn--customize:hover {
  color: var(--candy-purple);
}

.cookie-consent__toggles {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cookie-consent__toggles.is-open {
  max-height: 320px;
}

.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.cookie-toggle-item__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.cookie-toggle-item__desc {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle-switch input {
  display: none;
}

.toggle-switch__track {
  position: absolute;
  inset: 0;
  background: rgba(168, 85, 247, 0.18);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.toggle-switch input:checked + .toggle-switch__track {
  background: var(--candy-purple);
}

.toggle-switch input:disabled + .toggle-switch__track {
  background: rgba(168, 85, 247, 0.5);
  cursor: not-allowed;
}

.toggle-switch__track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.toggle-switch input:checked + .toggle-switch__track::after {
  transform: translateX(18px);
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */


@media (max-width: 1024px) {
  .nav__links {
    gap: 1.25rem;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .tech-content-grid__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .layer-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
  }

  .layer-card__number {
    font-size: 2rem;
    width: auto;
  }

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


@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

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

  .intro-grid__image {
    order: -1;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .coop-highlight {
    grid-template-columns: 1fr;
  }

  .coop-highlight__image {
    order: -1;
  }

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

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

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

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  .tech-section__header {
    flex-direction: column;
    gap: 1rem;
  }

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

  .image-frame img {
    height: 260px;
  }

  .feature-split__image img {
    height: 260px;
  }

  .coop-highlight__image img {
    height: 260px;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .cookie-consent {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__actions {
    gap: 0.75rem;
  }

  .layer-card {
    padding: 1.25rem 1.5rem;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .legal-page {
    padding: 2rem 1rem;
  }
}


@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mini-card {
    flex: 0 0 190px;
  }

  .step {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step__number {
    width: auto;
  }

  .topics-grid {
    gap: 0.625rem;
  }

  .topic-chip {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .page-hero__title {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .nav {
    border-bottom-width: 0.5px;
  }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}


@media print {
  .nav__hamburger,
  .nav__mobile-menu,
  .back-to-top,
  .cookie-consent,
  .wave-divider {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section--gradient-bg {
    background: #f5f5f5 !important;
  }
}