﻿/* ============================================================
   MyEnergyClaim â€” Direction B: Modern Financial / Data-Driven
   Fonts: Syne (display headings) + DM Sans (body) + Space Grotesk (labels)
   No serifs. Geometric, confident, fintech-adjacent.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0E0E0E;
  --black-2:     #161616;
  --black-3:     #1c1c1c;
  --cream:       #F2EFE9;
  --cream-2:     #EDEAE3;
  --white:       #ffffff;
  --green:       #1F5F3A;
  --green-light: #2a7a4c;
  --green-pale:  rgba(31,95,58,0.09);
  --green-border:rgba(31,95,58,0.22);
  --green-glow:  rgba(31,95,58,0.14);
  --text-primary:#0E0E0E;
  --text-muted:  #5a5a5a;
  --hairline:    rgba(14,14,14,0.1);
  --font-display:'Plus Jakarta Sans', system-ui, sans-serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --font-label:  'Space Grotesk', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--green); color: #fff;
  padding: 0.5rem 1rem; font-size: 0.875rem;
  font-family: var(--font-sans); z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.5rem; }

/* ---- Typography â€” NO SERIFS ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.7rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); letter-spacing: -0.01em; }

p { font-size: 17px; line-height: 1.75; }
strong { font-weight: 600; }

a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--green-light); }
a:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px; }

/* ---- Eyebrow â€” pill badge ---- */
.eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  display: inline-block;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hr { border: none; border-top: 1px solid var(--hairline); }

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV â€” cream background, clean geometric
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; padding-block: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta {
  font-size: 0.8rem; font-weight: 600;
  padding: 0.5rem 1.1rem;
  background: var(--green); color: #fff;
  text-decoration: none; border-radius: 3px;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--green-light); color: #fff; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0; }

/* ============================================================
   HERO â€” dot-grid texture, not grain paper
   ============================================================ */
.hero {
  background: var(--black);
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  position: relative;
  overflow: hidden;
}
/* Hero background video */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}
/* Dot grid â€” fintech/data aesthetic (vs. Direction A paper grain) */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
/* Green glow from bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 50%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(31,95,58,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  position: relative; z-index: 2;
  position: relative; z-index: 1;
}

.hero .eyebrow {
  background: rgba(31,95,58,0.2);
  border-color: rgba(31,95,58,0.4);
  color: #6fd9a0;
}
.hero h1 { color: var(--cream); margin-bottom: 1.5rem; max-width: 16ch; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(242,239,233,0.72);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.trust-pills { display: flex; flex-wrap: wrap; gap: 0; }
.trust-pills li {
  list-style: none;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(242,239,233,0.5);
  padding-right: 1.25rem; margin-right: 1.25rem;
  border-right: 1px solid rgba(242,239,233,0.12);
  line-height: 1.4;
}
.trust-pills li:last-child { border-right: none; }
.trust-pills li strong {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
}

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
  background: var(--cream);
  border: 1.5px solid rgba(31,95,58,0.35);
  border-radius: 6px;
  padding: 1.75rem 1.6rem;
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.form-group { margin-bottom: 0.65rem; }
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.form-group input,
.form-group select {
  width: 100%; height: 50px; padding: 0 0.8rem;
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--black);
  background: #fff; border: 1px solid rgba(14,14,14,0.15);
  border-radius: 4px; outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center;
  padding-right: 2rem;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green); background: #fff; }
.form-group.consent { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 0.2rem; }
.form-group.consent input[type="checkbox"] { width: 17px; height: 17px; min-width: 17px; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.form-group.consent label { font-family: var(--font-sans); font-size: 0.73rem; letter-spacing: 0; text-transform: none; color: var(--text-muted); line-height: 1.5; }
.hp-field { display: none !important; }

.btn-submit {
  width: 100%; height: 50px;
  background: var(--green); color: #fff; border: none; border-radius: 4px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer; transition: background 0.2s; margin-top: 0.4rem;
}
.btn-submit:hover { background: var(--green-light); }
.btn-submit:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
.form-assurance {
  font-family: var(--font-label); font-size: 0.63rem;
  color: var(--text-muted); text-align: center;
  margin-top: 0.6rem; letter-spacing: 0.03em;
}
.form-message {
  padding: 0.75rem 1rem; border-radius: 4px; font-size: 0.875rem;
  margin-top: 0.75rem; display: none;
}
.form-message.success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-message.error { background: #fdecea; color: #b71c1c; border: 1px solid #f5c6c6; }
.form-message.visible { display: block; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding-block: clamp(4rem, 7vw, 7rem); }
.section-dark { background: var(--black); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(242,239,233,0.75); }
.section-dark .eyebrow {
  background: rgba(31,95,58,0.2); border-color: rgba(31,95,58,0.4); color: #6fd9a0;
}
.section-dark .hr { border-color: rgba(255,255,255,0.1); }
/* White (not cream-2) for mid sections â€” sharper contrast than Direction A */
.section-mid { background: var(--white); }

/* ============================================================
   SCALE â€” intro + STATS DASHBOARD PANEL
   ============================================================ */
.scale-intro { max-width: 72ch; margin-bottom: 3.5rem; }
.scale-intro p + p { margin-top: 1rem; }
.scale-img { margin-top: 2.5rem; margin-bottom: 3rem; border-radius: 6px; overflow: hidden; }
.scale-img img { width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block; }

/* â”€â”€ Stats: dark rounded dashboard panel â”€â”€ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
  padding: 2.5rem 2rem 2.75rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-item:last-child { border-right: none; }

/* Featured first tile â€” green tint */
.stat-item:first-child {
  background: linear-gradient(135deg, rgba(31,95,58,0.35) 0%, rgba(31,95,58,0.12) 100%);
  border-right-color: rgba(31,95,58,0.3);
}

.stat-unit {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(242,239,233,0.38);
  margin-bottom: 0.6rem;
}
.stat-item:first-child .stat-unit { color: rgba(111,217,160,0.7); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.stat-item:first-child .stat-number { color: #6fd9a0; }

.stat-label {
  font-size: 0.875rem;
  color: rgba(242,239,233,0.5);
  line-height: 1.5;
  margin-top: auto;
}
.stat-item:first-child .stat-label { color: rgba(242,239,233,0.7); }

/* ============================================================
   MIS-SELL LIST
   ============================================================ */
.missell-item {
  display: grid; grid-template-columns: 150px 1fr;
  gap: 2rem; padding-block: 2rem;
  border-top: 1px solid var(--hairline); align-items: start;
}
.missell-item:last-child { border-bottom: 1px solid var(--hairline); }
.missell-num {
  font-family: var(--font-label); font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.09em; color: var(--green); padding-top: 0.15rem;
}
.missell-heading {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.missell-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   ELIGIBILITY
   ============================================================ */
.checklist { list-style: none; margin-bottom: 2rem; }
.checklist li {
  display: flex; gap: 1rem; padding-block: 1rem;
  border-bottom: 1px solid var(--hairline);
  font-size: 1rem; line-height: 1.5;
  color: var(--text-primary);
}
.checklist li:first-child { border-top: 1px solid var(--hairline); }
.checklist-mark {
  width: 20px; min-width: 20px; height: 20px;
  border: 1.5px solid var(--green); border-radius: 4px;
  margin-top: 2px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.checklist-mark svg { width: 10px; height: 10px; }

/* ============================================================
   PROCESS STEPS â€” oversized step numbers
   ============================================================ */
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
}
.step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--hairline);
  background: var(--white);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-pale);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  /* layered behind text */
  color: rgba(31,95,58,0.12);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  color: var(--black);
}
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   WHY US
   ============================================================ */
.why-points { max-width: 72ch; }
.why-point { padding-block: 1.5rem; border-top: 1px solid var(--hairline); }
.why-point:last-child { border-bottom: 1px solid var(--hairline); }
.why-point p { font-size: 1rem; line-height: 1.7; }

/* ============================================================
   SECTORS
   ============================================================ */
.sectors-grid { columns: 2; column-gap: 3rem; margin-block: 1.5rem 1.75rem; }
.sectors-grid li { list-style: none; padding-block: 0.65rem; border-bottom: 1px solid var(--hairline); break-inside: avoid; }
.sectors-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 2.5rem; }
.sectors-mosaic-item { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 5px; }
.sectors-mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.sectors-mosaic-item:hover img { transform: scale(1.05); }
.sectors-mosaic-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(14,14,14,0.75) 0%, transparent 100%); color: #fff; font-family: var(--font-label); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem 0.75rem 0.55rem; }

/* ============================================================
   PULL QUOTE â€” bold sans statement, not italic serif
   ============================================================ */
.pull-quote-section {
  background-color: var(--green);
  background-image: url('../envato-assets/energy%20infrastructure%20pipes%20cables%20industrial%20abstract.jpg');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  padding-block: clamp(4rem, 7vw, 7rem);
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  font-style: normal;
  color: #fff;
  max-width: 20ch;
  margin-inline: auto;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
}
.pull-quote-attr {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-top: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { max-width: 860px; }
.accordion-item { border-top: 1px solid var(--hairline); }
.accordion-item:last-child { border-bottom: 1px solid var(--hairline); }
.accordion-btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding-block: 1.3rem; background: none; border: none;
  cursor: pointer; text-align: left; gap: 1rem;
}
.accordion-btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.accordion-question {
  font-family: var(--font-sans); font-size: 0.97rem; font-weight: 600;
  color: var(--black); line-height: 1.4;
}
.accordion-icon {
  width: 20px; min-width: 20px; height: 20px;
  position: relative; flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
  content: ''; position: absolute; background: var(--green);
  border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.accordion-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion-btn[aria-expanded="true"] .accordion-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-body p { padding-bottom: 1.4rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; max-width: 72ch; }

/* dark accordion */
.section-dark .accordion-item { border-color: rgba(255,255,255,0.1); }
.section-dark .accordion-question { color: var(--cream); }
.section-dark .accordion-body p { color: rgba(242,239,233,0.65); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section-grid {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.cta-contact-block { padding-top: 1rem; }
.cta-contact-block h3 {
  font-family: var(--font-label); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(242,239,233,0.5); margin-bottom: 0.5rem;
}
.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #6fd9a0; text-decoration: none;
  display: block; margin-block: 0.25rem 0.5rem;
}
.cta-phone:hover { color: #8aeab5; }
.cta-hours {
  font-family: var(--font-label); font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(242,239,233,0.4);
  text-transform: uppercase; line-height: 1.6; display: block;
}
.cta-email { display: inline-block; font-size: 0.9rem; color: rgba(242,239,233,0.65); margin-top: 0.4rem; }

/* dark form */
.form-card-dark {
  background: rgba(242,239,233,0.05);
  border-color: rgba(31,95,58,0.45);
}
.form-card-dark .form-card-title { color: var(--cream); }
.form-card-dark .form-group label { color: rgba(242,239,233,0.45); }
.form-card-dark .form-group input,
.form-card-dark .form-group select {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); color: var(--cream);
}
.form-card-dark .form-group input::placeholder { color: rgba(242,239,233,0.28); }
.form-card-dark .form-group input:focus,
.form-card-dark .form-group select:focus { border-color: var(--green-light); background: rgba(255,255,255,0.1); }
.form-card-dark .form-group.consent label { color: rgba(242,239,233,0.45); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black-2); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-logo {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--cream); text-decoration: none; display: inline-block;
  margin-bottom: 0.75rem; letter-spacing: -0.03em;
}
.footer-logo span { color: #6fd9a0; }
.footer-desc { font-size: 0.875rem; color: rgba(242,239,233,0.45); line-height: 1.65; margin-bottom: 0.75rem; max-width: 32ch; }
.footer-address { font-family: var(--font-label); font-size: 0.67rem; font-weight: 400; letter-spacing: 0.04em; color: rgba(242,239,233,0.3); line-height: 1.8; font-style: normal; }
.footer-nav-heading { font-family: var(--font-label); font-size: 0.63rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,239,233,0.3); margin-bottom: 1rem; }
.footer-nav ul { list-style: none; }
.footer-nav ul li + li { margin-top: 0.5rem; }
.footer-nav a { font-size: 0.875rem; color: rgba(242,239,233,0.55); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--cream); }
.footer-contact p { font-size: 0.875rem; color: rgba(242,239,233,0.55); line-height: 1.7; margin: 0; }
.footer-contact a { color: rgba(242,239,233,0.55); text-decoration: none; }
.footer-contact a:hover { color: var(--cream); }
.footer-bottom { padding-block: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; }
.footer-legal { font-family: var(--font-label); font-size: 0.61rem; letter-spacing: 0.03em; color: rgba(242,239,233,0.28); line-height: 1.7; }
.footer-legal a { color: rgba(242,239,233,0.38); text-decoration: none; }
.footer-legal a:hover { color: rgba(242,239,233,0.6); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(242,239,233,0.28); line-height: 1.65; padding-block: 1.25rem; border-top: 1px solid rgba(255,255,255,0.04); max-width: 90ch; }

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 1.25rem; z-index: 200;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.sticky-cta-phone { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--cream); text-decoration: none; letter-spacing: -0.02em; }
.sticky-cta-link { background: var(--green); color: #fff; font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; padding: 0.55rem 1rem; border-radius: 3px; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.sticky-cta-link:hover { background: var(--green-light); color: #fff; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
  z-index: 300; font-size: 0.8rem; color: rgba(242,239,233,0.6);
  line-height: 1.5; transform: translateY(100%); transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner a { color: #6fd9a0; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-accept { padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 600; border-radius: 3px; cursor: pointer; border: none; background: var(--green); color: #fff; font-family: var(--font-sans); }
.btn-reject { padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 600; border-radius: 3px; cursor: pointer; background: transparent; color: rgba(242,239,233,0.55); border: 1px solid rgba(255,255,255,0.15); font-family: var(--font-sans); }
.btn-reject:hover { color: var(--cream); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.blog-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.5rem;
  border: 1px solid var(--hairline);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.blog-card:hover { border-color: var(--green-border); box-shadow: 0 4px 24px rgba(31,95,58,0.06); }
.blog-card-img { margin: -1.5rem -1.5rem 1.1rem; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.about-team-img { border-radius: 6px; overflow: hidden; margin-bottom: 2rem; }
.about-team-img img { width: 100%; height: auto; max-height: 400px; object-fit: cover; display: block; }
.blog-card-meta { font-family: var(--font-label); font-size: 0.63rem; font-weight: 500; letter-spacing: 0.07em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.65rem; display: flex; gap: 0.75rem; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; font-family: var(--font-display); letter-spacing: -0.02em; }
.blog-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.blog-card a.read-more { font-family: var(--font-label); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green); text-decoration: none; }
.blog-card a.read-more:hover { text-decoration: underline; }

/* PAGE HEADER */
.page-header { background: var(--black); padding-block: clamp(3rem, 5vw, 5.5rem); }
.page-header h1 { color: var(--cream); max-width: 22ch; }
.page-header p { color: rgba(242,239,233,0.65); max-width: 52ch; margin-top: 1rem; }

.breadcrumb { display: flex; gap: 0.5rem; list-style: none; font-family: var(--font-label); font-size: 0.67rem; font-weight: 500; letter-spacing: 0.06em; color: rgba(242,239,233,0.38); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(242,239,233,0.45); text-decoration: none; }
.breadcrumb a:hover { color: #6fd9a0; }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.3; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  border-left: 4px solid var(--green);
  padding-left: 1.5rem;
  margin-block: 2.5rem;
  line-height: 1.25;
  max-width: 24ch;
  letter-spacing: -0.025em;
}

/* FAQ categories */
.faq-category { margin-bottom: 3.5rem; }
.faq-category-title { font-family: var(--font-label); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
.faq-category h2 { margin-bottom: 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; border-radius: 6px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
  .steps-row { grid-template-columns: 1fr 1fr; border-radius: 6px; }
  .step { border-right: none; border-bottom: 1px solid var(--hairline); }
  .step:nth-child(odd)  { }
  .step:nth-child(even) { border-left: 1px solid var(--hairline); }
  .cta-section-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta-bar { display: flex; }
  .missell-item { grid-template-columns: 110px 1fr; }
}

@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--hairline);
    gap: 1rem; z-index: 99;
  }
  .steps-row { grid-template-columns: 1fr; border-radius: 4px; }
  .step { border-left: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sectors-grid { columns: 1; }
  .sectors-mosaic { grid-template-columns: repeat(2, 1fr); }
  .form-card .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .missell-item { grid-template-columns: 1fr; gap: 0.35rem; }
  .trust-pills { flex-direction: column; gap: 0.5rem; }
  .trust-pills li { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid rgba(242,239,233,0.1); padding-bottom: 0.5rem; }
  .trust-pills li:last-child { border-bottom: none; }
}
