/* =========================================================================
   AliquaWeb Theme — Custom Stylesheet
   Fonts: Urbanist + Open Sans (self-hosted variable fonts)
   Design reference: Marchetti Design v10
   ========================================================================= */

/* -------------------------------------------------------------------------
   0. Self-hosted variable fonts (replaces Google Fonts CDN)
   ------------------------------------------------------------------------- */
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/urbanist-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/urbanist-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/open-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/open-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* -------------------------------------------------------------------------
   1. CSS Variables
   ------------------------------------------------------------------------- */
:root {
  --bg:          #f2f6f2;
  --nav-bg:      #e3e9e2;
  --text:        #272424;
  --text-muted:  #5e5757;
  --white:       #ffffff;
  --green:       #3de99e;
  --green-dark:  #01794d;
  --green-hover: #2cffa3;
  --yellow:      #f4db49;
  --pink:        #ff536d;
  --dark:        #1a1a1a;
  --border:      rgba(39,36,36,.1);
  --avatar-border: #786d60;

  --radius-nav:    10px;
  --radius-btn:    5px;
  --radius-badge:  20px;
  --radius-card:   40px;
  --radius-card-sm:20px;

  --font: 'Urbanist', sans-serif;

  --container-max: 1440px;
  --container-pad: 72px;
}

/* -------------------------------------------------------------------------
   2. Base
   ------------------------------------------------------------------------- */
.bi-icon { display: inline-block; width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; }
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin: 0 0 20px;
}

p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; padding: 0; margin: 0; }

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.aw-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.aw-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* -------------------------------------------------------------------------
   4. Navbar
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 0 15px;
}

.nav-frame {
  max-width: 1404px;
  margin: 15px auto 0;
  background: var(--nav-bg);
  border-radius: var(--radius-nav);
  padding: 0 24px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  flex-shrink: 0;
  display: block;
}

.brand-name-wrap {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
}

.brand-text {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
}

.brand-version {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 24px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover {
  color: var(--green-dark);
  background: rgba(255,255,255,.35);
}
.nav-menu .nav-cta a {
  color: var(--green-dark);
  font-weight: 800;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn-aw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 0;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, filter .15s;
  line-height: 1;
  min-height: 48px;
}
.btn-aw:hover { transform: translateY(-1px); filter: brightness(1.06); }

.btn-green  { background: var(--green);  color: var(--text); }
.btn-yellow { background: var(--yellow); color: var(--text); }
.btn-dark   { background: var(--text);   color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 2px var(--text);
}

/* -------------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------------- */
.hero {
  padding-top: clamp(110px, 14vw, 165px);
  padding-bottom: clamp(80px, 15vh, 140px);
}

.hero-grid {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero-title {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: .97;
  margin-bottom: 26px;
  max-width: 17ch;
}

.hero-copy {
  font-size: 18px;
  line-height: 1.6;
  color: #353131;
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 36px;
}

/* Proof row */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.avatars-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.avatars-row {
  display: flex;
  align-items: center;
}
.avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--avatar-border);
  box-shadow: 0 0 0 2px var(--bg);
  object-fit: cover;
  margin-left: 4px;
}
.avatar-img:first-child { margin-left: 0; }
.proof-stars {
  font-size: 16px;
  color: #f5c518;
  letter-spacing: 2px;
  margin: 6px 0 2px;
  line-height: 1;
}
.proof-quote {
  font-size: 12px;
  line-height: 1.4;
  color: #464040;
  margin: 0;
}

.stat-block { text-align: center; }
.stat-value {
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #3c3939;
  line-height: 1.3;
}

/* Hero media grid */
.hero-media {
  padding-top: 3vh;
}

.hero-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.hero-subcol {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 46vh;
  background: var(--white);
  display: flex;
}
.hero-card img {
  width: 100%;
  height: 46vh;
  object-fit: cover;
}

/* Hero badges */
.hero-badge {
  margin: 0;
  padding: 14px 18px;
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: var(--text);
}
.hero-badge--pink   { background: #ff536d; }
.hero-badge--yellow { background: #fde24f; }

/* -------------------------------------------------------------------------
   7. Trust strip
   ------------------------------------------------------------------------- */
.trust-strip {
  padding: clamp(32px, 5vw, 60px) 0;
  text-align: center;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item i { font-size: 18px; color: var(--green-dark); }

.trust-tagline {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------------
   8a. Choose-me section (hardcoded)
   ------------------------------------------------------------------------- */
.chooseme-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}

.chooseme-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.chooseme-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 40px;
}

.chooseme-highlight,
.hero-highlight {
  background: #fefd85;
  padding: 2px 4px;
}

.chooseme-avatar-wrap {
  margin-bottom: 20px;
}

.chooseme-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--avatar-border);
  display: inline-block;
}

.chooseme-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}

.chooseme-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 640px;
  text-align: left;
}

.chooseme-list li {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chooseme-list li::before {
  content: "○";
  color: var(--text-muted);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.chooseme-closing {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------------
   8. Pain sections (hardcoded)
   ------------------------------------------------------------------------- */
.pain-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: clamp(40px, 5vw, 70px);
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.pain-card--reverse { flex-direction: row-reverse; }

.pain-copy { flex: 1; }

.pain-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.pain-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.pain-text {
  font-size: 17px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 32px;
}

.pain-media {
  flex: 0 0 42%;
  max-width: 42%;
}

.pain-mockup {
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.pain-mockup img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------------------------------------
   9. Solution / Team section (hardcoded)
   ------------------------------------------------------------------------- */
.solution-section {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 64px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.solution-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: clamp(28px, 3vw, 44px);
}

.solution-card-text {
  font-size: 17px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 28px;
}

.team-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.team-avatars {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--bg);
  object-fit: cover;
  margin-left: -12px;
}
.team-avatar:first-child { margin-left: 0; }

/* -------------------------------------------------------------------------
   10. Process steps
   ------------------------------------------------------------------------- */
.process-section {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.process-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: -40px auto 60px;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  text-align: left;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: 32px 28px;
}

.process-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.process-card-title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.process-card-text {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* -------------------------------------------------------------------------
   10b. FAQ section (hardcoded)
   ------------------------------------------------------------------------- */
.faq-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.faq-question {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

@media (max-width: 767.98px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* -------------------------------------------------------------------------
   11. Agitation banner (hardcoded)
   ------------------------------------------------------------------------- */
.agitation-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
}

.agitation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.agitation-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.agitation-title {
  font-size: clamp(32px, 4vw, 55px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: .97;
  margin: 0;
}

.agitation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.agitation-list li {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.agitation-list li::before {
  content: "○";
  color: var(--text-muted);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* -------------------------------------------------------------------------
   12. Why us
   ------------------------------------------------------------------------- */
.whyus-section {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.whyus-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: -36px auto 56px;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.whyus-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: 32px 20px;
}

.whyus-icon {
  width: 32px;
  height: 32px;
  color: var(--green-dark);
  margin-bottom: 16px;
  display: block;
}

.whyus-card-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.whyus-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* -------------------------------------------------------------------------
   13. Portfolio (hardcoded)
   ------------------------------------------------------------------------- */
.portfolio-section {
  background: var(--dark);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.portfolio-section .section-eyebrow { color: var(--green); }

.portfolio-section .section-title {
  color: var(--white);
  margin-bottom: 56px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.portfolio-item {
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  background: #2a2a2a;
  position: relative;
  transition: transform .25s;
}
.portfolio-item:hover { transform: translateY(-4px); }

.portfolio-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  opacity: .85;
  transition: opacity .25s;
}
.portfolio-item:hover img { opacity: 1; }

.portfolio-caption {
  padding: 18px 20px;
}
.portfolio-caption-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-caption-sub {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* -------------------------------------------------------------------------
   14. Testimonials
   ------------------------------------------------------------------------- */
.testimonials-section {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: 32px 28px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars .bi-icon { color: var(--yellow); width: 15px; height: 15px; }

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  margin: 0;
}

/* -------------------------------------------------------------------------
   15. Final CTA section
   ------------------------------------------------------------------------- */
.cta-section {
  background: var(--green);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.cta-section .section-title {
  color: var(--text);
  margin-bottom: 16px;
  max-width: 22ch;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.cta-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
}

.cta-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.cta-input::placeholder { color: #aaa; }
.cta-input:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(39,36,36,.12);
}
.cta-input--valid {
  border-color: var(--green-dark) !important;
}
.cta-input--invalid {
  border-color: var(--pink) !important;
}

.cta-textarea {
  resize: vertical;
  min-height: 110px;
}

.cta-feedback {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
  min-height: 16px;
  display: block;
}

.cta-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
}
.cta-submit:disabled {
  opacity: .7;
  cursor: default;
  transform: none;
  filter: none;
}

/* -------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-brand .brand-text { color: var(--white); font-size: .9rem; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--green); }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

.footer-landing-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-landing-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: color .15s;
}
.footer-landing-links a:hover { color: #fff; }
.footer-landing-sep {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-legal-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: color .15s;
}
.footer-legal-links a:hover { color: #fff; }

/* -------------------------------------------------------------------------
   16b. Blog single
   ------------------------------------------------------------------------- */

/* Header */
.bsingle-header {
  padding: clamp(110px, 14vw, 165px) 0 clamp(40px, 5vw, 60px);
  font-family: 'Open Sans', sans-serif;
}

.bsingle-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.bsingle-breadcrumb a { color: var(--green-dark); text-decoration: none; }
.bsingle-breadcrumb a:hover { text-decoration: underline; }

.bsingle-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.bsingle-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.bsingle-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-transform: none;
  margin-bottom: 24px;
  max-width: 820px;
}

.bsingle-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}
.bsingle-author { font-weight: 700; color: var(--text); }
.bsingle-date, .bsingle-read { color: var(--text-muted); }

/* Mobile TOC */
.bsingle-toc-mobile {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  display: none;
}

.bsingle-toc-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.toc-chevron {
  flex-shrink: 0;
  transition: transform .2s;
}
.bsingle-toc-toggle.open .toc-chevron { transform: rotate(180deg); }

/* Body layout */
.bsingle-body {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  font-family: 'Open Sans', sans-serif;
}

.bsingle-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* Desktop TOC sidebar */
.bsingle-toc-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.bsingle-toc-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bsingle-toc-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 0 5px 12px;
  border-left: 2px solid var(--border);
  line-height: 1.4;
  transition: color .15s, border-color .15s;
}
.bsingle-toc-link:hover { color: var(--green-dark); border-color: var(--green-dark); }
.bsingle-toc-link--sub { padding-left: 24px; font-weight: 400; }
.bsingle-toc-link--active { color: var(--green-dark); border-color: var(--green-dark); font-weight: 700; }

/* Article */
.bsingle-article { min-width: 0; }
.bsingle-article--notoc { grid-column: 1 / -1; max-width: 760px; margin: 0 auto; }

.bsingle-featured-img {
  margin-bottom: 40px;
  border-radius: var(--radius-card-sm);
  overflow: hidden;
}
.bsingle-featured-img img { width: 100%; height: auto; display: block; }

/* Content typography */
.bsingle-content {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
}
.bsingle-content h2 {
  font-size: 28px;
  font-weight: 900;
  font-family: 'Urbanist', sans-serif;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 48px 0 16px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.bsingle-content h3 {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  margin: 36px 0 12px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.bsingle-content p { margin-bottom: 24px; }
.bsingle-content ul, .bsingle-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.bsingle-content li { margin-bottom: 8px; }
.bsingle-content a { color: var(--green-dark); text-decoration: underline; }
.bsingle-content strong { font-weight: 700; }
.bsingle-content blockquote {
  border-left: 4px solid var(--green);
  padding: 12px 20px;
  margin: 32px 0;
  background: rgba(61,233,158,.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}
.bsingle-content img {
  max-width: 100%;
  border-radius: var(--radius-card-sm);
  margin: 32px 0;
}
.bsingle-content pre {
  background: #1a1a1a;
  color: #e8e8e8;
  padding: 24px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 15px;
  margin-bottom: 24px;
}

/* Tags */
.bsingle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}
.bsingle-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}

/* Author bio */
.bsingle-author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-card-sm);
  border: 1px solid var(--border);
}
.bsingle-author-bio__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--avatar-border);
}
.bsingle-author-bio__body { display: flex; flex-direction: column; gap: 6px; }
.bsingle-author-bio__name {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.bsingle-author-bio__text {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bsingle-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* Prev / Next */
.bsingle-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bsingle-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}
.bsingle-nav-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bsingle-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}
.bsingle-nav-link:hover .bsingle-nav-title { text-decoration: underline; }
.text-end { text-align: right; }

/* Responsive */
@media (max-width: 991.98px) {
  .bsingle-layout { grid-template-columns: 1fr; }
  .bsingle-toc-sidebar { display: none; }
  .bsingle-toc-mobile { display: block; }
  .bsingle-toc-list { padding-bottom: 16px; display: flex; flex-direction: column; }
}

@media (max-width: 767.98px) {
  .bsingle-content { font-size: 18px; }
  .bsingle-nav { grid-template-columns: 1fr; }
  .text-end { text-align: left; }
}

/* -------------------------------------------------------------------------
   17. Blog listing
   ------------------------------------------------------------------------- */
.blog-header,
.blog-listing {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
}

.blog-header {
  padding: clamp(110px, 14vw, 165px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
}

.blog-header-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 16px;
}

.blog-header-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
}

.blog-listing {
  padding-bottom: clamp(60px, 8vw, 100px);
}

.blog-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-post-item {
  padding: 40px 48px 40px 0;
  border-bottom: 1px solid var(--border);
}

.blog-post-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}

/* Remove bottom border on last row */
.blog-post-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.blog-post-cats {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-post-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.blog-post-title a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color .15s;
}
.blog-post-title a:hover { color: var(--text); }

.blog-post-excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 20px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.blog-post-author {
  font-weight: 700;
  color: var(--text);
}

.blog-post-date {
  color: var(--text-muted);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 56px;
}

.blog-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  background: var(--white);
  transition: background .15s, color .15s;
}
.blog-page-btn:hover { background: var(--green); color: var(--text); }
.blog-page-btn--active { background: var(--green-dark); color: var(--white); }

@media (max-width: 767.98px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-item,
  .blog-post-item:nth-child(even) { padding: 32px 0; padding-left: 0; border-left: none; }
  .blog-post-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .blog-post-item:last-child { border-bottom: none; }
}

/* -------------------------------------------------------------------------
   CMS Pages (cookie policy, privacy, termini, ecc.)
   Font: Open Sans — solo pesi diversi · Testo nero
   ------------------------------------------------------------------------- */
.cms-page {
  padding: 80px 0 100px;
  background: var(--bg);
}
.cms-page .aw-container { max-width: 820px; }

.cms-page__header { margin-bottom: 40px; }

.cms-page__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.cms-page__content,
.cms-page__content p,
.cms-page__content li {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #000;
}

.cms-page__content h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #000;
  margin: 40px 0 16px;
}

.cms-page__content h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  margin: 32px 0 14px;
}

.cms-page__content p         { margin: 0 0 20px; }
.cms-page__content ul,
.cms-page__content ol        { margin: 16px 0 24px 24px; padding-left: 0; }
.cms-page__content li        { margin-bottom: 8px; }
.cms-page__content strong    { font-weight: 700; }
.cms-page__content a         { color: var(--green-dark); text-decoration: underline; }
.cms-page__content a:hover   { color: var(--green); }
.cms-page__content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid var(--green-dark);
  background: var(--white);
  font-style: italic;
}

@media (max-width: 767.98px) {
  .cms-page { padding: 48px 0 64px; }
  .cms-page__content h2 { font-size: 24px; }
  .cms-page__content h3 { font-size: 20px; }
}

/* -------------------------------------------------------------------------
   17. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  :root { --container-pad: 40px; }
  .nav-frame { padding: 0 16px; }
  .nav-menu a { padding: 20px 12px; }
}

/* -------------------------------------------------------------------------
   Testimonial Electrician — case study section
   ------------------------------------------------------------------------- */
.te-section {
  background: var(--white);
}

.te-section .section-eyebrow {
  color: var(--green-dark);
}

.te-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Browser mockup */
.browser-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  border: 1px solid var(--border);
}

.browser-bar {
  background: #e8e8e8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.browser-dot--red    { background: #ff5f57; }
.browser-dot--yellow { background: #febc2e; }
.browser-dot--green  { background: #28c840; }

.browser-url {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  background: #fff;
  border-radius: 4px;
  padding: 3px 10px;
  flex: 1;
  text-align: center;
}

.browser-screen img {
  display: block;
  width: 100%;
  height: auto;
}

/* Copy column */
.te-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.te-title {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: none;
}

.te-highlight {
  color: var(--green-dark);
}

.te-lead {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.te-results {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.te-results li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
}

.te-check {
  color: var(--green-dark);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.te-cta {
  gap: 8px;
}

/* Responsive */
@media (max-width: 991.98px) {
  :root { --container-pad: 24px; }

  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--nav-bg);
    border-radius: var(--radius-nav);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 20px; width: 100%; }

  .nav-frame { position: relative; flex-wrap: wrap; }

  .hero-grid { --bs-gutter-x: 1.5rem; }

  .pain-card { flex-direction: column; }
  .pain-media { flex: 0 0 100%; max-width: 100%; }

  .solution-cards { grid-template-columns: 1fr; }

  .agitation-inner { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .te-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767.98px) {
  :root { --container-pad: 20px; }

  .hero-title { max-width: none; text-align: center; }
  .hero-eyebrow, .hero-copy { text-align: center; }
  .hero-ctas { display: flex; width: 100%; align-items: stretch; }
  .hero-ctas .btn-aw { justify-content: center; }
  .hero-proof { justify-content: center; }
  /* hero-subgrid stays two-column on mobile (like reference) */
  .hero-card { min-height: 220px; }
  .hero-card img { height: 220px; }

  .section-title { font-size: 28px; }

  .process-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }

  .agitation-title { font-size: 30px; }

  .whyus-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 479.98px) {
  .whyus-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════
   ELECTRICIAN LANDING PAGE — /website-for-electrician
   Prefix: lp-
═══════════════════════════════════════════════════════════════ */
.lp-page {
  font-family: 'Open Sans', sans-serif;
}

/* ── Shared helpers ── */
.lp-section {
  padding: clamp(64px, 8vw, 100px) 0;
}
.lp-section--tinted { background: var(--bg); }
.lp-section--white  { background: #fff; }
.lp-section--dark   { background: #1e2322; color: #fff; }

.lp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.lp-section--dark .lp-eyebrow { color: var(--green); }

.lp-h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 20px;
}
.lp-section--dark .lp-h2 { color: #fff; }

.lp-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 600px;
}
.lp-section--dark .lp-lead { color: rgba(255,255,255,.72); }

.lp-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.lp-section-head .lp-h2 { margin-bottom: 12px; }

/* ── Buttons ── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.lp-btn-primary:hover { background: #015f3d; transform: translateY(-1px); color: #fff; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 27px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: 2px solid var(--green-dark);
  transition: background .2s, color .2s;
}
.lp-btn-ghost:hover { background: var(--green-dark); color: #fff; }

/* 1. Hero */
.lp-hero {
  background: #1e2322;
  padding: clamp(80px, 10vw, 120px) 0 clamp(64px, 8vw, 96px);
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-hero .lp-eyebrow { color: var(--green); }
.lp-hero-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 20px;
}
.lp-hero-p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin: 0 0 32px;
}
.lp-hero-microcopy {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin: 12px 0 28px;
}
.lp-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.80);
}
.lp-hero-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.lp-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.lp-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* 2. Problem */
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.lp-problem-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.07);
}
.lp-problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff0f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: #c0392b;
}
.lp-problem-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.lp-problem-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.lp-problem-closing {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: #c0392b;
  margin: 0;
}

/* 3. Outcome */
.lp-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-outcome-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.06);
}
.lp-outcome-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(61,233,158,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--green-dark);
}
.lp-outcome-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.lp-outcome-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 4. What's Included */
.lp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.lp-feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lp-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(61,233,158,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-feature-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 5px;
}
.lp-feature-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.lp-features-cta {
  text-align: center;
  padding: 36px 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.07);
}
.lp-features-cta-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
}

/* 5. Case Study */
.lp-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-case-subtitle {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
}
.lp-case-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.lp-result-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.lp-result-box {
  background: var(--bg);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.4;
}
.lp-case-support {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.6;
}
.lp-case-cta-prompt {
  font-size: 13px;
  color: var(--text-muted);
  margin: 12px 0 0;
}
.lp-case-browser .browser-frame {
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* 6. Why Work With Me */
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.07);
}
.lp-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(61,233,158,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.lp-why-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.lp-why-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 7. Process */
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.lp-process-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.lp-process-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(1,121,77,.15);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}
.lp-process-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.lp-process-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.lp-process-cta { text-align: center; }
.lp-process-cta-prompt {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 20px;
}

/* 8. FAQ */
.lp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.lp-faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid rgba(0,0,0,.07);
}
.lp-faq-q {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.lp-faq-a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 9. Final CTA */
.lp-final-cta {
  text-align: center;
  padding: clamp(64px, 8vw, 96px) 0;
  background: #1e2322;
}
.lp-final-cta-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.2;
}
.lp-final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lp-final-cta-micro {
  font-size: 13px;
  color: rgba(255,255,255,.40);
  margin: 14px 0 0;
}

/* 10. Contact Form */
.lp-contact {
  background: var(--bg);
  padding: clamp(64px, 8vw, 96px) 0;
}
.lp-contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 48px 40px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.lp-contact-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  text-align: center;
}
.lp-contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 32px;
}
.lp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}
.lp-input, .lp-select, .lp-textarea {
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.lp-input:focus, .lp-select:focus, .lp-textarea:focus {
  border-color: var(--green);
  background: #fff;
}
.lp-input::placeholder, .lp-textarea::placeholder { color: #aaa; }
.lp-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.lp-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 15px 24px;
  margin-top: 4px;
  transition: opacity .2s, background .2s, transform .15s;
}
.lp-submit:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}
.lp-form-micro {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 8px 0 0;
}
.lp-alert {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.lp-alert--error {
  background: #fff0f0;
  border: 1px solid var(--pink);
  color: #c0392b;
}
.lp-alert--rate {
  background: #fff8e1;
  border: 1px solid #f4c842;
  color: #7d5a00;
}

/* Electrician LP — Responsive */
@media (max-width: 991px) {
  .lp-problem-grid  { grid-template-columns: 1fr 1fr; }
  .lp-outcome-grid  { grid-template-columns: 1fr 1fr; }
  .lp-why-grid      { grid-template-columns: 1fr 1fr; }
  .lp-process-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .lp-hero-grid      { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-image     { order: -1; }
  .lp-hero-image img { height: 260px; }
  .lp-case-grid      { grid-template-columns: 1fr; gap: 40px; }
  .lp-features-grid  { grid-template-columns: 1fr; }
  .lp-faq-grid       { grid-template-columns: 1fr; }
  .lp-contact-wrap   { padding: 32px 24px 28px; }
  .lp-form-row       { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lp-problem-grid { grid-template-columns: 1fr; }
  .lp-outcome-grid { grid-template-columns: 1fr; }
  .lp-why-grid     { grid-template-columns: 1fr; }
  .lp-process-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BUILDERS LANDING PAGE — /website-for-costruction-company
   Prefix: lb-
═══════════════════════════════════════════════════════════════ */
.lb-page {
  font-family: 'Open Sans', sans-serif;
}

/* ── Shared helpers ── */
.lb-section {
  padding: clamp(64px, 8vw, 100px) 0;
}
.lb-section--tinted { background: var(--bg); }
.lb-section--white  { background: #fff; }
.lb-section--dark   { background: #1e2322; color: #fff; }

.lb-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.lb-section--dark .lb-eyebrow { color: var(--green); }

.lb-h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 20px;
}
.lb-section--dark .lb-h2 { color: #fff; }

.lb-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.lb-section-head .lb-h2 { margin-bottom: 12px; }

.lb-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ── Buttons ── */
.lb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.lb-btn-primary:hover { background: #015f3d; transform: translateY(-1px); color: #fff; }

.lb-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 27px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: 2px solid var(--green-dark);
  transition: background .2s, color .2s;
}
.lb-btn-ghost:hover { background: var(--green-dark); color: #fff; }

/* 1. Hero */
.lb-hero {
  background: #1e2322;
  padding: clamp(80px, 10vw, 120px) 0 clamp(64px, 8vw, 96px);
}
.lb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lb-hero .lb-eyebrow { color: var(--green); }
.lb-hero-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 20px;
}
.lb-hero-p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin: 0 0 32px;
}
.lb-hero-micro {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  margin: 14px 0 0;
}
.lb-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.lb-hero-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* 2. Trust Strip */
.lb-trust {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 28px 0;
}
.lb-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.lb-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}
.lb-trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* 3. Problem */
.lb-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lb-problem-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,.07);
}
.lb-problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff0f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: #c0392b;
}
.lb-problem-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.lb-problem-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 4. Solution */
.lb-solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lb-solution-text .lb-h2 { margin-bottom: 16px; }
.lb-solution-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.lb-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lb-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.lb-solution-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  margin-top: 1px;
}
.lb-solution-visual {
  background: var(--bg);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0,0,0,.06);
}
.lb-solution-stat {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(0,0,0,.06);
}
.lb-solution-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.lb-solution-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* 5. Built for Builders */
.lb-built-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lb-built-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,.06);
}
.lb-built-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(61,233,158,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.lb-built-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.lb-built-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 6. What's Included */
.lb-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.lb-included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.07);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.lb-included-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #fff;
  margin-top: 1px;
}
.lb-included-cta { text-align: center; }

/* 7. Case Study */
.lb-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lb-case-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.lb-case-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lb-case-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.lb-case-check {
  color: var(--green-dark);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.lb-case-closing {
  font-size: 14px;
  font-style: italic;
  color: var(--green-dark);
  border-left: 4px solid var(--green);
  padding-left: 14px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.lb-case-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 8. Good Fit */
.lb-fit-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.lb-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lb-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.lb-fit-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.lb-fit-check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(61,233,158,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--green-dark);
  margin-top: 1px;
}

/* 9. FAQ */
.lb-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.lb-faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,.07);
}
.lb-faq-q {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
}
.lb-faq-a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 10. Final CTA */
.lb-final-cta {
  text-align: center;
  padding: clamp(64px, 8vw, 96px) 0;
  background: #1e2322;
}
.lb-final-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.2;
}
.lb-final-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lb-final-micro {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin: 14px 0 0;
}

/* 11. Contact Form */
.lb-contact {
  background: var(--bg);
  padding: clamp(64px, 8vw, 96px) 0;
}
.lb-contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 48px 40px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.lb-contact-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  text-align: center;
}
.lb-contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.65;
}
.lb-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lb-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}
.lb-input, .lb-textarea {
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.lb-input:focus, .lb-textarea:focus { border-color: var(--green); background: #fff; }
.lb-input::placeholder, .lb-textarea::placeholder { color: #aaa; }
.lb-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.lb-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 15px 24px;
  margin-top: 4px;
  transition: opacity .2s, background .2s, transform .15s;
}
.lb-submit:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.lb-form-micro {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 8px 0 0;
}
.lb-alert {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.lb-alert--error { background: #fff0f0; border: 1px solid var(--pink); color: #c0392b; }
.lb-alert--rate  { background: #fff8e1; border: 1px solid #f4c842; color: #7d5a00; }

/* Builders LP — Responsive */
@media (max-width: 991px) {
  .lb-problem-grid { grid-template-columns: 1fr 1fr; }
  .lb-built-grid   { grid-template-columns: 1fr 1fr; }
  .lb-trust-row    { gap: 28px; }
}
@media (max-width: 768px) {
  .lb-hero-grid      { grid-template-columns: 1fr; gap: 40px; }
  .lb-hero-image     { order: -1; }
  .lb-hero-image img { height: 260px; }
  .lb-solution-wrap  { grid-template-columns: 1fr; gap: 40px; }
  .lb-case-grid      { grid-template-columns: 1fr; gap: 40px; }
  .lb-included-grid  { grid-template-columns: 1fr; }
  .lb-faq-grid       { grid-template-columns: 1fr; }
  .lb-fit-wrap       { padding: 32px 24px; }
  .lb-contact-wrap   { padding: 32px 24px 28px; }
  .lb-form-row       { grid-template-columns: 1fr; }
  .lb-trust-item     { white-space: normal; }
}
@media (max-width: 560px) {
  .lb-problem-grid { grid-template-columns: 1fr; }
  .lb-built-grid   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   Prefix: ck-
═══════════════════════════════════════════════════════════════ */
.ck-overlay {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  width: 100%;
  max-width: 380px;
}

.ck-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0,0,0,.22);
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px 24px 18px;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.6;
}

.ck-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  line-height: 1;
  padding: 4px;
}
.ck-close:hover { color: #000; }

.ck-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
  padding-right: 28px;
  color: #1a1a1a;
}

.ck-desc {
  font-size: 13px;
  color: #444;
  margin: 0 0 20px;
  line-height: 1.65;
}

/* Actions */
.ck-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.ck-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  font-family: inherit;
}
.ck-btn--accept {
  background: #1a6fc4;
  color: #fff;
  border-color: #1a6fc4;
}
.ck-btn--accept:hover { background: #155ea8; border-color: #155ea8; }
.ck-btn--deny {
  background: #fff;
  color: #333;
  border-color: #ccc;
}
.ck-btn--deny:hover { background: #f5f5f5; }
.ck-btn--prefs {
  background: #fff;
  color: #333;
  border-color: #ccc;
}
.ck-btn--prefs:hover { background: #f5f5f5; }
.ck-btn--save {
  background: #fff;
  color: #333;
  border-color: #ccc;
}
.ck-btn--save:hover { background: #f5f5f5; }

/* Preferences panel */
.ck-prefs { margin-bottom: 8px; }

.ck-category {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 6px;
  overflow: hidden;
}

.ck-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #f5f5f5;
  cursor: pointer;
  user-select: none;
}

.ck-category-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.ck-category-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ck-always-active {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}

.ck-chevron {
  font-size: 16px;
  color: #555;
  transition: transform .2s;
  line-height: 1;
}
.ck-category.open .ck-chevron { transform: rotate(180deg); }

.ck-category-body {
  padding: 14px 16px;
  font-size: 13px;
  color: #444;
  line-height: 1.65;
  background: #fff;
}
.ck-category-body p { margin: 0; }

/* Toggle switch */
.ck-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.ck-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.ck-toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: background .2s;
}
.ck-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.ck-toggle input:checked + .ck-toggle-slider { background: #e07b2a; }
.ck-toggle input:checked + .ck-toggle-slider::before { transform: translateX(18px); }

/* Links */
.ck-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 8px;
}
.ck-links a {
  font-size: 12px;
  color: #1a6fc4;
  text-decoration: underline;
}
.ck-links a:hover { color: #155ea8; }

@media (max-width: 480px) {
  .ck-overlay { bottom: 12px; right: 12px; left: 12px; max-width: none; }
  .ck-modal { padding: 20px 16px 14px; }
  .ck-actions { flex-direction: column; }
  .ck-btn { width: 100%; text-align: center; }
}
