/*
Theme Name: Nettoyer OnePage Lead Gen
Theme URI: https://example.com/nettoyer-onepage
Author: Your Agency
Description: Lightweight one-page lead generation theme with custom logo support for handyman, plumber, electrician, decorating, cleaning, and security services.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nettoyer-onepage
*/

:root {
  --primary: #0f172a; /* deep navy */
  --accent: #38bdf8;  /* light baby blue */
  --bg: #ffffff;
  --muted: #6b7280;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(15,23,42,0.10);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, -system-ui, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--primary);
  background-color: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(148,163,253,0.14);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.custom-logo-link img {
  max-height: 40px;
  width: auto;
}

.brand-title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav a {
  color: var(--primary);
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.btn-quote {
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.btn-quote span.arrow {
  font-size: 16px;
  line-height: 1;
}

.btn-quote:hover {
  filter: brightness(1.05);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 40px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 44px);
  line-height: 1.12;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
}

.hero-highlights div {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.hero-highlights span.icon {
  font-size: 14px;
}

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 12px;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 18px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148,163,253,0.20);
}

.hero-card h2 {
  font-size: 17px;
  margin: 0 0 6px;
}

.hero-card p {
  font-size: 12px;
  margin: 0 0 10px;
  color: var(--muted);
}

.hero-card form {
  display: grid;
  gap: 6px;
}

.hero-card label {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
}

.hero-card input,
.hero-card select,
.hero-card textarea {
  width: 100%;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,253,0.5);
  font-size: 12px;
  font-family: var(--font-main);
}

.hero-card textarea {
  min-height: 52px;
  resize: vertical;
}

.hero-card button[type=submit] {
  margin-top: 4px;
  padding: 8px 10px;
  font-size: 13px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 10px;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.section-lead {
  font-size: 13px;
  color: var(--muted);
  max-width: 660px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-card {
  padding: 14px 12px 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
  border: 1px solid rgba(148,163,253,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
}

.service-card h3 {
  font-size: 16px;
  margin: 0;
}

.service-card p {
  font-size: 12px;
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  background: var(--accent);
  color: #ffffff;
  margin-top: 8px;
}

.badge span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
  font-size: 12px;
}

.trust-item {
  padding: 10px 10px 8px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,253,0.24);
  background: #ffffff;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}

.process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
}

.process-step {
  padding: 10px 10px 9px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(148,163,253,0.2);
}

.process-step span.num {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: var(--accent);
  color: #ffffff;
  margin-bottom: 4px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}

.testimonial {
  padding: 10px 10px 9px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(148,163,253,0.18);
  font-size: 11px;
  color: var(--muted);
}

.testimonial strong {
  display: block;
  color: var(--primary);
  margin-top: 4px;
  font-size: 11px;
}

.faq-list {
  margin-top: 10px;
  font-size: 12px;
}

.faq-item {
  margin-bottom: 6px;
}

.faq-item strong {
  display: block;
}

.section-quote {
  padding-bottom: 36px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
  align-items: flex-start;
  margin-top: 16px;
}

.quote-benefits {
  font-size: 12px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.quote-benefits div {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.quote-benefits span.icon {
  font-size: 13px;
}

.quote-form {
  padding: 14px 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148,163,253,0.22);
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.quote-form label {
  font-weight: 500;
  font-size: 11px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,253,0.5);
  font-size: 12px;
  font-family: var(--font-main);
}

.quote-form textarea {
  min-height: 70px;
  resize: vertical;
}

.quote-form button[type=submit] {
  margin-top: 4px;
  padding: 9px 10px;
  font-size: 13px;
}

.consent {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.consent input {
  margin-top: 3px;
}

.site-footer {
  padding: 18px 20px 24px;
  background: #0f172a;
  color: #9ca3af;
  font-size: 11px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: #9ca3af;
  margin-right: 12px;
  font-size: 11px;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .trust-grid,
  .process-steps,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
  align-items: flex-start;
  margin-top: 16px;
}
}

@media (max-width: 600px) {
  .services-grid,
  .trust-grid,
  .process-steps,
  .testimonials {
    grid-template-columns: minmax(0,1fr);
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 4px;
  }
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 8px 14px;
  background: #0f172a;
  box-shadow: 0 -6px 20px rgba(15,23,42,0.4);
  display: flex;
  justify-content: center;
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-cta-call {
  background: #e5e7eb;
  color: #0f172a;
}
.mobile-cta-quote {
  background: var(--accent);
  color: #ffffff;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
}

.bg-accent {
  background: var(--accent);
  color: #ffffff;
}
.bg-dark {
  background: #0f172a;
  color: #ffffff;
}
.bg-accent a,
.bg-dark a {
  color: #ffffff;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .brand {
    align-items: center;
    text-align: center;
  }
  .brand-sub {
    text-align: center;
  }
  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
  }
  .nav a {
    padding: 2px 6px;
  }
  .nav .btn-quote {
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
  .hero {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    padding-top: 18px;
  }
  .hero-highlights {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: left;
    margin-top: 10px;
  }
  .hero-card {
    margin: 0 auto;
    max-width: 360px;
  }
  .hero-media {
    margin-top: 14px;
  }
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .services-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 768px) {
  body {
    text-align: center;
  }

  .site-header,
  .header-inner,
  .brand,
  .nav {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .nav {
    width: 100%;
  }

  .hero {
    text-align: center;
  }

  .hero-highlights {
    text-align: center;
    justify-items: center;
  }

  .hero-highlights div {
    justify-content: center;
  }

  .hero-card {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    text-align: center;
  }

  .section h2,
  .section-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid,
  .trust-grid,
  .process-steps,
  .testimonials,
  .faq-list,
  .quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
  align-items: flex-start;
  margin-top: 16px;
}

  .service-card,
  .trust-item,
  .process-step,
  .testimonial,
  .faq-item,
  .quote-form {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-benefits {
    text-align: center;
  }

  .quote-benefits div {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-card label,
  .quote-form label {
    text-align: left;
    display: block;
    width: 100%;
  }
}

.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-layout { /* deprecated, retained for safety */
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 24px;
  align-items: flex-start;
  margin-top: 14px;
}
.faq-layout .hero-media {
  margin: 0;
}
@media (max-width: 900px) {
  .faq-layout { /* deprecated, retained for safety */
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}
.split-section.reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
}
.split-section .hero-media {
  margin: 0;
}
@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    grid-template-columns: minmax(0,1fr);
    gap: 16px;
  }
}

.quote-left {
  display: grid;
  gap: 10px;
}
.quote-right {
  display: flex;
  align-items: center;
}
.quote-right .hero-media {
  width: 100%;
  margin: 0;
}
@media (max-width: 900px) {
  .quote-layout {
    grid-template-columns: minmax(0,1fr);
  }
  .quote-right {
    order: -1;
    margin-bottom: 10px;
  }
}

/* Clean split layouts */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}
.split-section.reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
}
.split-section .hero-media {
  margin: 0;
}
.split-section .hero-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

/* Quote layout: text+form left, image right */
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  gap: 26px;
  align-items: flex-start;
  margin-top: 18px;
}
.quote-left {
  display: grid;
  gap: 12px;
}
.quote-right {
  display: flex;
  align-items: center;
}
.quote-right .hero-media {
  width: 100%;
  margin: 0;
}
.quote-right .hero-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

/* Responsive stack */
@media (max-width: 900px) {
  .split-section,
  .split-section.reverse,
  .quote-layout {
    grid-template-columns: minmax(0,1fr);
    gap: 16px;
  }
  .quote-right {
    order: -1;
  }
}

/* Ensure buttons centered and icons aligned */
.btn-quote {
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.btn-quote span.arrow {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .split-section,
  .split-section.reverse,
  .quote-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  /* Keep content readable on mobile */
  .hero,
  .section,
  .services-grid,
  .trust-grid,
  .process-steps,
  .faq-list,
  .testimonials {
    text-align: left;
  }

  .hero-card,
  .service-card,
  .trust-item,
  .process-step,
  .testimonial,
  .faq-item,
  .quote-form {
    margin-left: 0;
    margin-right: 0;
  }

  .quote-right {
    order: -1; /* image above form/benefits if present */
  }
}

/* Section background variations to break up long white page */
.section--soft {
  background: #f8fafc;
}
.section--panel {
  background: #f3f4f6;
}
.section--soft,
.section--panel {
  padding-top: 32px;
  padding-bottom: 32px;
}
.section--soft .section,
.section--panel .section {
  background: transparent;
}

/* Ensure inner content still constrained */
.section.section--inner-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Tighter consent layout */
.consent {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 6px;
}
.consent input {
  margin: 0;
}
.consent label {
  margin: 0;
}

/* Top nav underline indicator */
.nav {
  position: relative;
}
.nav a.nav-link {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav a.nav-link:hover,
.nav a.nav-link.active {
  color: var(--accent);
  opacity: 1;
}
.nav-underline {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  width: 0;
  left: 0;
  transition: all 0.25s ease;
}

/* Keep underline visible on mobile stacked nav as well */
@media (max-width: 768px) {
  .nav-underline {
    display: none; /* avoid odd behavior on wrap; can enable if desired */
  }
}

/* Grey mobile call button */
.mobile-cta-call {
  background: #e5e7eb;
  color: #0f172a;
}

/* Compact inline consent checkbox + text */
.consent {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 4px 0 10px 0 !important;
  text-align: left !important;
}
.consent input[type="checkbox"] {
  margin: 0 !important;
}
.consent label {
  margin: 0 !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
}

/* Show sticky CTA bar only on mobile */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
}

.consent input[type="checkbox"] {
  width: auto !important;
}

@media (min-width: 769px) {
  #services h2,
  #services .section-lead,
  #why-us h2,
  #why-us .section-lead,
  #process h2,
  #process .section-lead,
  #faq h2,
  #faq .section-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-highlights {
    text-align: left !important;
    align-items: flex-start !important;
    justify-items: flex-start !important;
  }
  .hero-highlights div {
    justify-content: flex-start !important;
  }
}

/* Full-width hero image with overlapping content */
.hero {
  padding: 0 24px 40px;
}
.hero-image-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.hero-inner {
  max-width: 1200px;
  margin: -70px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1.3fr);
  gap: 26px;
  align-items: flex-start;
}
.hero-copy {
  background: transparent;
}
.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 18px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .hero {
    padding: 12px 16px 28px;
  }
  .hero-image-wrap {
    margin: 0 auto 10px;
  }
  .hero-inner {
    margin: 0 auto;
    display: block;
  }
  .hero-card {
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .process-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px;
  }
  .process-step {
    width: 100% !important;
  }
}

/* Nettoyer full-width hero */
.hero {
  padding: 24px 24px 40px;
}
.hero-image-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.hero-inner {
  max-width: 1200px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1.3fr);
  gap: 32px;
  align-items: flex-start;
}
.hero-copy .hero-kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 6px;
}
.hero-copy h1 {
  margin: 0 0 10px;
}
.hero-copy p {
  margin-bottom: 10px;
}
.hero-highlights {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}
.hero-highlights div {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.hero-highlights .icon {
  margin-top: 2px;
}
.hero-call {
  margin-top: 6px;
}
.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 18px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .hero {
    padding: 12px 16px 28px;
  }
  .hero-inner {
    display: block;
    margin-top: 16px;
  }
  .hero-card {
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .quote-benefits div {
    justify-content: flex-start;
  }
}

/* Desktop grid balance */
@media (min-width: 769px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* Mobile: use full-width single column so cards look even */
@media (max-width: 768px) {
  .services-grid,
  .trust-grid,
  .faq-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .service-card,
  .trust-item,
  .faq-item {
    width: 100%;
    margin: 0;
  }
}

/* Clean hero layout */
.hero {
  padding: 32px 24px 40px;
}
.hero-image-wrap {
  max-width: 1200px;
  margin: 0 auto 24px;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1.3fr);
  gap: 32px;
  align-items: flex-start;
}
.hero-text {
  max-width: 620px;
}
.hero-kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 6px;
}
.hero-text h1 {
  margin: 0 0 10px;
  line-height: 1.05;
}
.hero-text p {
  margin: 0 0 10px;
}
.hero-highlights {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}
.hero-highlights div {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.hero-highlights .icon {
  margin-top: 2px;
}
.hero-call {
  font-size: 13px;
  margin-top: 4px;
}
.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .hero {
    padding: 16px 16px 28px;
  }
  .hero-layout {
    display: block;
  }
  .hero-card {
    margin-top: 16px;
  }
}

/* Final hero layout override */
.hero {
  padding: 32px 24px 40px;
}
.hero-image-wrap {
  display: block;
  max-width: 1200px;
  margin: 0 auto 24px;
}
.hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1.3fr);
  gap: 32px;
  align-items: flex-start;
}
.hero-text {
  max-width: 620px;
}
.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .hero {
    padding: 16px 16px 28px;
  }
  .hero-layout {
    display: block;
  }
  .hero-card {
    margin-top: 16px;
  }
}

/* ==== FINAL HERO LAYOUT (v44) ==== */
.hero {
  padding: 32px 24px 40px;
  display: block;
}

.hero-image-wrap {
  max-width: 1200px;
  margin: 0 auto 24px;
}
.hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

/* Second row: split text + form */
.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.hero-text {
  flex: 1 1 55%;
  max-width: 100%;
}
.hero-card {
  flex: 1 1 45%;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

/* Minor text tweaks */
.hero-kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 6px;
}
.hero-text h1 {
  margin: 0 0 10px;
  line-height: 1.05;
	text-align:center;
}
.hero-text p {
  	margin:30px;
	text-align: center;
}
.hero-highlights {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}
.hero-highlights div {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.hero-highlights .icon {
  margin-top: 2px;
}
.hero-call {
  font-size: 13px;
  margin-top: 4px;
}

/* Mobile stacking */
@media (max-width: 900px) {
  .hero {
    padding: 16px 16px 28px;
  }
  .hero-layout {
    display: block;
  }
  .hero-card {
    margin-top: 16px;
  }
	.hero-highlights {
    display: flex;
	}
	.service-card p {
		text-align: center;
	}
	.service-card h3 {
		text-align: center;
	}
	.service-label {
		text-align: center;
	}
	.hero-text p {
  		margin:40px;
	}
}
/* Desktop-only hero offset so it tucks under the sticky header */
@media (min-width: 1024px) {
  .hero {
    margin-top: -375px;
  }
}
.hero-kicker {
   		text-align: center;
	}
.section h2 {
    text-align: center;
}
@media (max-width: 900px) {
    .hero-highlights {
        display: table;
        margin: 4px auto;
    }
}
@media (max-width: 900px) {
    .hero-card {
        margin: 16px auto;
    }
}