/*
 * Aarunya Prakash Energy — brand + responsive layer
 * Loaded after style.css. Holds the design tokens, every component added on
 * top of the base template, and the responsive rules for 320px → 2560px.
 *
 * Green is the theme colour. Navy appears only inside the logo wordmark,
 * because it is part of the mark itself.
 */

/* ================================================================ tokens == */

:root {
  /* Green scale — 400/500/600 are sampled straight from the logo. */
  --green-50:  #f4faef;
  --green-100: #eef7e6;
  --green-200: #d8ecc3;
  --green-300: #b6dc92;
  --green-400: #8fc741;
  --green-500: #7ab93f;
  --green-600: #61aa45;
  --green-700: #4a8a36;
  --green-800: #2f6325;
  --green-900: #1f4a1a;
  --green-950: #143012;

  --brand-primary: #3f7d2f;   /* 5.02:1 on white — buttons, links, actions */
  --brand-primary-dark: #2f6325;
  --brand-yellow: #fccd1d;
  --brand-orange: #f0733e;
  --logo-navy: #2f3691;       /* wordmark only */

  /* Neutrals, warmed very slightly towards green */
  --ink: #16241b;             /* headings */
  --ink-soft: #33463a;
  --ink-muted: #5b6b60;       /* body copy — 5.65:1 on white */
  --line: #e2ebdd;
  --line-strong: #cfdec7;
  --surface: #ffffff;
  --surface-alt: #f7faf6;
  --surface-tint: var(--green-100);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-xs: 0 2px 8px rgba(20, 48, 18, .05);
  --shadow-sm: 0 4px 16px rgba(20, 48, 18, .07);
  --shadow: 0 14px 38px rgba(20, 48, 18, .10);
  --shadow-lg: 0 28px 64px rgba(20, 48, 18, .14);

  /* Fluid rhythm — every section and gutter scales with the viewport. */
  --section-y: clamp(3rem, 5.2vw, 6.5rem);
  --gutter: clamp(1rem, 2.4vw, 2rem);

  --nav-h: 76px;
}

/* ================================================================== base == */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--ink-muted);
  background: var(--surface-alt);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.72;
  overflow-x: hidden;
}

/* Nothing may exceed the viewport. Media is fluid by default. */
img, svg, video, iframe, canvas { max-width: 100%; }
img, svg, video { height: auto; }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  line-height: 1.2;
  overflow-wrap: break-word;
}

/* Fluid type scale — no jumps between the target resolutions. */
h1, .h1 { font-size: clamp(1.85rem, 3.4vw, 3.15rem); font-weight: 700; }
h2, .h2 { font-size: clamp(1.5rem, 2.5vw, 2.35rem); font-weight: 700; }
h3, .h3 { font-size: clamp(1.05rem, 1.25vw, 1.25rem); font-weight: 700; }
h4, .h4 { font-size: clamp(1rem, 1.1vw, 1.1rem); }

p { overflow-wrap: break-word; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible keyboard focus — the base template removes outlines. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--green-500) !important;
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -64px;
  z-index: 3000;
  padding: 10px 18px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* Colour utilities */
.text-brand-green  { color: var(--brand-primary) !important; }
.text-brand-orange { color: var(--brand-orange) !important; }
.text-ink          { color: var(--ink) !important; }
.bg-tint-navy      { background: var(--surface-alt); }
.bg-tint-green     { background: var(--surface-tint); }
.bg-surface        { background: var(--surface); }

/* ============================================================ container == */

.container {
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-inline: auto;
}

/* Bootstrap stops at 1320px, which strands ~600px of margin at 1920.
   Let the container keep growing, capped so line length stays readable. */
@media (min-width: 1600px) { .container { max-width: 1480px; } }
@media (min-width: 1900px) { .container { max-width: 1620px; } }
@media (min-width: 2200px) { .container { max-width: 1720px; } }

@media (max-width: 767.98px) {
  .row { --bs-gutter-x: 1.5rem; }
}
@media (max-width: 400px) {
  .row { --bs-gutter-x: 1.25rem; }
}

/* Vertical rhythm for every section, fluid across all resolutions. */
.section-block,
.product-section,
.why-choose-section,
.we-help-section,
.blog-section,
.testimonial-section,
.partner-section,
.stats-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.popular-product { padding: 0 0 var(--section-y); }
.before-footer-section { padding: var(--section-y) 0 !important; }

/* =============================================================== topbar == */

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  line-height: 1.6;
  padding: 9px 0;
}

.topbar a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .25s ease;
}
.topbar a:hover { color: var(--brand-yellow); }

.topbar .topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px clamp(12px, 1.6vw, 26px);
}

.topbar .topbar-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px clamp(12px, 1.6vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.topbar .topbar-contact li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.topbar .topbar-contact .fa { color: var(--green-400); flex: 0 0 auto; }

.topbar .topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--green-400);
  text-transform: uppercase;
  font-size: 11.5px;
  white-space: nowrap;
}

.topbar .topbar-social { display: inline-flex; gap: 6px; flex: 0 0 auto; }

.topbar .topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
}
.topbar .topbar-social a:hover { background: var(--brand-primary); color: #fff; }

/* The tagline is the first thing to go when width runs short. */
@media (max-width: 1199.98px) { .topbar .topbar-tag { display: none; } }
@media (max-width: 991.98px) {
  .topbar { text-align: center; }
  .topbar .topbar-inner { justify-content: center; }
  .topbar .topbar-contact { justify-content: center; }
}

/* =============================================================== navbar == */

/* A white header keeps the multicoloured logo legible and reads more premium
   than a solid colour bar. Green is used for state, not as a background wash. */
.custom-navbar {
  background: rgba(255, 255, 255, .96) !important;
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: var(--nav-h);
  box-shadow: none;
  transition: box-shadow .25s ease, padding .25s ease;
}

.site-header { position: relative; z-index: 1030; }

.site-header.is-sticky .custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 6px 26px rgba(20, 48, 18, .09);
  animation: apeSlideDown .28s ease;
}

@keyframes apeSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* Brand lockup ------------------------------------------------------------ */

.custom-navbar .navbar-brand > span { opacity: 1; }

.custom-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 0.8vw, 13px);
  padding: 0;
  margin-right: clamp(8px, 1.2vw, 24px);
  text-decoration: none;
  min-width: 0;
}

.custom-navbar .navbar-brand .brand-mark {
  width: clamp(38px, 3.4vw, 50px);
  height: clamp(38px, 3.4vw, 50px);
  flex: 0 0 auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.custom-navbar .navbar-brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }

.custom-navbar .navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
  min-width: 0;
}

/* The wordmark keeps the logo's own two colours — navy + green. */
.custom-navbar .navbar-brand .brand-name {
  font-size: clamp(14px, 1.28vw, 19px);
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--logo-navy);
  text-transform: uppercase;
  white-space: nowrap;
}
.custom-navbar .navbar-brand .brand-name em {
  font-style: normal;
  color: var(--green-600);
}

.custom-navbar .navbar-brand .brand-sub {
  font-size: clamp(10.5px, 0.62vw, 11px);
  font-weight: 600;
  letter-spacing: clamp(2px, 0.3vw, 4.4px);
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* Nav links --------------------------------------------------------------- */

.custom-navbar .custom-navbar-nav { align-items: center; }

.custom-navbar .custom-navbar-nav li { margin: 0; }

.custom-navbar .custom-navbar-nav li a.nav-link {
  color: var(--ink-soft) !important;
  opacity: 1;
  font-weight: 600;
  font-size: clamp(13px, 0.95vw, 15px);
  padding: 8px clamp(7px, 0.72vw, 14px);
  white-space: nowrap;
  border-radius: 8px;
}

/* The base stylesheet animates this underline by growing a calc() width that
   assumed a fixed 8px inset. Drive it with a transform instead so it stays
   correct as the link padding scales. */
.custom-navbar .custom-navbar-nav li a.nav-link:before {
  left: 8px;
  right: 8px;
  bottom: 0;
  width: auto;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease-out;
}

.custom-navbar .custom-navbar-nav li a.nav-link:hover:before,
.custom-navbar .custom-navbar-nav li.active a.nav-link:before {
  width: auto;
  transform: scaleX(1);
}

.custom-navbar .custom-navbar-nav li a.nav-link:hover,
.custom-navbar .custom-navbar-nav li.active a.nav-link {
  color: var(--brand-primary) !important;
}

.custom-navbar .custom-navbar-cta {
  margin-left: clamp(6px, 1vw, 20px) !important;
  flex-direction: row;
  align-items: center;
}
.custom-navbar .custom-navbar-cta li { margin: 0; }

.custom-navbar .custom-navbar-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 10px clamp(12px, 1.1vw, 22px);
  font-size: clamp(12.5px, 0.9vw, 14px);
}

.custom-navbar .navbar-toggler {
  color: var(--brand-primary);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 7px 11px;
}
.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%233f7d2f' stroke-width='2.4' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Between 992 and 1250 the seven links plus the CTA get tight. Tighten the
   scale rather than letting anything wrap or overlap. */
@media (min-width: 992px) and (max-width: 1249.98px) {
  .custom-navbar .custom-navbar-nav li a.nav-link { padding-left: 6px; padding-right: 6px; font-size: 12.6px; }
  .custom-navbar .navbar-brand .brand-sub { display: none; }
}

/* Collapsed menu (below 768) --------------------------------------------- */
@media (max-width: 767.98px) {
  .custom-navbar .navbar-collapse {
    margin-top: 12px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
    max-height: calc(100vh - var(--nav-h) - 20px);
    overflow-y: auto;
  }
  .custom-navbar .custom-navbar-nav { align-items: stretch; }
  .custom-navbar .custom-navbar-nav li a.nav-link {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .custom-navbar .custom-navbar-nav li a.nav-link:before { display: none; }
  .custom-navbar .custom-navbar-nav li.active a.nav-link { background: var(--surface-tint); border-radius: 8px; }
  .custom-navbar .custom-navbar-cta { margin: 14px 0 6px !important; }
  .custom-navbar .custom-navbar-cta li { width: 100%; }
  .custom-navbar .custom-navbar-cta .btn { width: 100%; justify-content: center; padding: 13px 18px; font-size: 15px; }
}

/* ============================================================== buttons == */

.btn {
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: clamp(10px, 0.85vw, 13px) clamp(20px, 1.8vw, 32px);
  font-size: clamp(13.5px, 0.95vw, 15px);
  line-height: 1.4;
  transition: transform .2s ease, background .25s ease, border-color .25s ease,
              box-shadow .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary action — solid green. */
.btn.btn-primary,
.btn.btn-green {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(63, 125, 47, .26);
}
.btn.btn-primary:hover,
.btn.btn-green:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
}

/* The header / hero call to action. Yellow against green reads as the logo. */
.btn.btn-secondary {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: var(--green-950);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(252, 205, 29, .32);
}
.btn.btn-secondary:hover {
  background: #f0b900;
  border-color: #f0b900;
  color: var(--green-950);
}

.btn.btn-navy-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  box-shadow: none;
}
.btn.btn-navy-outline:hover {
  background: var(--brand-primary);
  color: #fff;
}

.btn.btn-white-outline {
  background: transparent;
  border-width: 2px;
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}
.btn.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* ================================================================= hero == */

.hero {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 45%, var(--green-800) 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 6rem) 0 clamp(3rem, 5vw, 6rem);
}

.hero:before,
.hero:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero:before {
  width: clamp(320px, 38vw, 620px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(252, 205, 29, .17) 0%, rgba(252, 205, 29, 0) 68%);
  top: -14%;
  right: -8%;
}
.hero:after {
  width: clamp(280px, 32vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(143, 199, 65, .22) 0%, rgba(143, 199, 65, 0) 70%);
  bottom: -20%;
  left: -10%;
}

.hero .intro-excerpt { position: relative; z-index: 4; max-width: 100%; }
.hero h1 { color: #fff; margin-bottom: clamp(14px, 1.4vw, 24px); }
.hero p { color: rgba(255, 255, 255, .8); }

.hero h1 .text-accent { color: var(--brand-yellow); }
.hero h1 .text-accent-green { color: var(--green-400); }

.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: clamp(11.5px, 0.82vw, 12.5px);
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: clamp(14px, 1.4vw, 22px);
  max-width: 100%;
}
.hero .hero-eyebrow .fa { color: var(--brand-yellow); flex: 0 0 auto; }

.hero .hero-points {
  list-style: none;
  padding: 0;
  margin: clamp(16px, 1.8vw, 26px) 0 clamp(20px, 2vw, 30px);
  display: grid;
  gap: 10px;
}
.hero .hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(13px, 0.95vw, 14.5px);
  line-height: 1.55;
}
.hero .hero-points .fa {
  color: var(--green-400);
  margin-top: 5px;
  flex: 0 0 auto;
}
.hero .hero-points li > span:last-child { flex: 1 1 auto; min-width: 0; }

.hero .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }

/* The hero image sits in normal flow — the template's absolute positioning
   broke at short viewport heights such as 1366×768. */
.hero .hero-img-wrap { position: relative; }
.hero .hero-img-wrap img {
  position: static;
  width: 100%;
  max-width: 100%;
  left: auto;
  right: auto;
  top: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 64px rgba(8, 26, 10, .38);
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.hero .hero-img-wrap:after { display: none; }

@media (min-width: 992px) {
  .hero .intro-excerpt { max-width: 560px; }
  .hero .hero-img-wrap img { aspect-ratio: 4 / 3; }
}
@media (min-width: 1400px) {
  .hero .hero-img-wrap img { aspect-ratio: 16 / 11; }
}

@media (max-width: 991.98px) {
  .hero { text-align: center; }
  .hero .hero-points { text-align: left; max-width: 360px; margin-inline: auto; }
  .hero .hero-cta { justify-content: center; }
  .hero .hero-img-wrap { margin-top: clamp(24px, 4vw, 40px); }
  .hero .hero-img-wrap img { max-width: 560px; margin-inline: auto; display: block; }
}

/* ========================================================= badge strip == */

.badge-strip {
  position: relative;
  z-index: 5;
  margin-top: clamp(-56px, -3vw, -28px);
}

.badge-strip .badge-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(8px, 0.8vw, 12px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.badge-strip .badge-card {
  text-align: center;
  padding: clamp(16px, 1.5vw, 24px) clamp(8px, 0.9vw, 16px);
  border-radius: var(--radius);
  transition: background .25s ease, transform .25s ease;
  min-width: 0;
}
.badge-strip .badge-card:hover { background: var(--surface-tint); transform: translateY(-3px); }

.badge-strip .badge-card .badge-icon {
  width: clamp(38px, 3vw, 46px);
  height: clamp(38px, 3vw, 46px);
  margin: 0 auto clamp(8px, 0.9vw, 13px);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: clamp(15px, 1.3vw, 19px);
  color: #fff;
  background: var(--brand-primary);
}
.badge-strip .badge-card:nth-child(2) .badge-icon { background: var(--green-600); }
.badge-strip .badge-card:nth-child(3) .badge-icon { background: var(--brand-orange); }
.badge-strip .badge-card:nth-child(4) .badge-icon { background: var(--green-800); }

.badge-strip .badge-card strong {
  display: block;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 3px;
}
.badge-strip .badge-card span {
  font-size: clamp(11.5px, 0.88vw, 13px);
  color: var(--ink-muted);
  line-height: 1.4;
  display: block;
}

@media (max-width: 767.98px) {
  .badge-strip { margin-top: 0; padding-top: clamp(28px, 6vw, 44px); }
  .badge-strip .badge-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 359.98px) {
  .badge-strip .badge-wrap { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================== ribbon bar == */

.ribbon-bar {
  background: var(--green-950);
  color: #fff;
  padding: clamp(12px, 1.3vw, 18px) 0;
  text-align: center;
}
.ribbon-bar p {
  margin: 0;
  font-size: clamp(11.5px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
}
.ribbon-bar p .fa { color: var(--brand-yellow); margin-right: 10px; }

/* ======================================================= section header == */

.section-heading { margin-bottom: clamp(28px, 3.4vw, 52px); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(11.5px, 0.85vw, 12.5px);
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--surface-tint);
  padding: 6px 15px;
  border-radius: var(--radius-pill);
  margin-bottom: clamp(10px, 1vw, 16px);
  max-width: 100%;
}

.section-title { font-weight: 700; line-height: 1.22; color: var(--ink); }
.section-title .accent { color: var(--brand-primary); }

/* ========================================================= service card == */

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.1vw, 34px) clamp(18px, 1.9vw, 30px);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.service-card:hover:before { transform: scaleX(1); }

.service-card .service-card-icon {
  width: clamp(50px, 4.2vw, 62px);
  height: clamp(50px, 4.2vw, 62px);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: clamp(20px, 1.7vw, 25px);
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--green-600));
  margin-bottom: clamp(14px, 1.5vw, 22px);
}
.service-card.is-green .service-card-icon { background: linear-gradient(135deg, var(--green-600), var(--green-400)); }
.service-card.is-warm  .service-card-icon { background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)); }

.service-card h3 { font-size: clamp(16px, 1.32vw, 19px); margin-bottom: 12px; }
.service-card p { margin-bottom: 18px; color: var(--ink-muted); }

.service-card .service-list { list-style: none; padding: 0; margin: 0 0 20px; }
.service-card .service-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: clamp(13px, 0.94vw, 14px);
  line-height: 1.55;
}
.service-card .service-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11.5px;
  color: var(--brand-primary);
}

.service-card .service-link {
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 0.94vw, 14.5px);
  transition: gap .25s ease, color .25s ease;
}
.service-card .service-link:hover { color: var(--brand-primary-dark); gap: 13px; }

.service-card.is-featured {
  border-color: var(--green-400);
  box-shadow: var(--shadow);
}
.service-card.is-featured:before { transform: scaleX(1); }
.service-card.is-featured .section-eyebrow { background: var(--brand-primary); color: #fff; }

/* Stretch a card only when it is the whole column, otherwise a card that
   follows other content overflows its section. */
.row > [class*="col"] > .service-card:only-child,
.row > [class*="col"] > .info-card:only-child {
  height: 100%;
}

/* ============================================================= stat row == */

.stats-section {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  position: relative;
  overflow: hidden;
}
.stats-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/dots-light.svg");
  background-repeat: no-repeat;
  background-position: right -50px top -30px;
  background-size: clamp(160px, 18vw, 260px);
  opacity: .3;
  pointer-events: none;
}

.stat-item { text-align: center; position: relative; z-index: 2; min-width: 0; }

.stat-item .stat-value {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  display: block;
}
.stat-item .stat-value .suffix { color: var(--brand-yellow); }

.stat-item .stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(12px, 0.92vw, 14px);
  letter-spacing: .3px;
  line-height: 1.45;
}

@media (max-width: 767.98px) { .stat-item { margin-bottom: 8px; } }

/* ======================================================== process steps == */

.process-step { text-align: center; padding: 0 6px; position: relative; }

.process-step .step-number {
  width: clamp(58px, 5vw, 74px);
  height: clamp(58px, 5vw, 74px);
  margin: 0 auto clamp(14px, 1.5vw, 22px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  color: var(--brand-primary);
  background: var(--surface);
  border: 3px dashed var(--green-400);
  position: relative;
  z-index: 2;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.process-step:hover .step-number {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.process-step h3 { font-size: clamp(15px, 1.15vw, 17px); margin-bottom: 10px; }
.process-step p { font-size: clamp(13px, 0.94vw, 14px); }

@media (min-width: 992px) {
  .process-row .process-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 37px;
    left: calc(50% + 46px);
    right: calc(-50% + 46px);
    border-top: 2px dashed var(--line-strong);
    z-index: 1;
  }
}

/* ============================================================= partners == */

.partner-section { background: var(--surface); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(130px, 12vw, 170px), 1fr));
  gap: clamp(10px, 1vw, 16px);
}

.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 1.6vw, 24px) clamp(10px, 1vw, 16px);
  text-align: center;
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-width: 0;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-400);
}

.partner-card .partner-name {
  display: block;
  font-weight: 800;
  font-size: clamp(13px, 1.05vw, 15px);
  color: var(--brand-primary);
  letter-spacing: .2px;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.partner-card .partner-kind {
  display: block;
  margin-top: 5px;
  font-size: clamp(11.5px, 0.8vw, 12px);
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ================================================================== FAQ == */

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item.is-open { box-shadow: var(--shadow-sm); border-color: var(--green-300); }

.faq-item .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: clamp(15px, 1.4vw, 20px) clamp(48px, 4vw, 58px) clamp(15px, 1.4vw, 20px) clamp(16px, 1.6vw, 24px);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  line-height: 1.45;
}

.faq-item .faq-q:after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: clamp(14px, 1.4vw, 22px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-tint);
  color: var(--brand-primary);
  display: grid;
  place-items: center;
  transition: .25s ease;
}
.faq-item.is-open .faq-q:after {
  content: "\f068";
  background: var(--brand-primary);
  color: #fff;
}

.faq-item .faq-a {
  display: none;
  padding: 0 clamp(16px, 1.6vw, 24px) clamp(16px, 1.6vw, 22px);
  font-size: clamp(13.5px, 0.96vw, 14.5px);
  line-height: 1.7;
}
.faq-item.is-open .faq-a { display: block; }

/* ============================================================ info card == */

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 1.8vw, 26px) clamp(16px, 1.7vw, 24px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-width: 0;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-200); }

.info-card .info-icon {
  width: clamp(42px, 3.4vw, 48px);
  height: clamp(42px, 3.4vw, 48px);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface-tint);
  color: var(--brand-primary);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: clamp(10px, 1.2vw, 16px);
}

.info-card h3 { font-size: clamp(14.5px, 1.12vw, 16px); margin-bottom: 8px; }
.info-card p, .info-card address {
  font-size: clamp(13px, 0.96vw, 14.5px);
  line-height: 1.65;
  margin: 0;
  font-style: normal;
  overflow-wrap: anywhere;
}
.info-card a { color: var(--brand-primary); font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.info-card a:hover { color: var(--brand-primary-dark); text-decoration: underline; }

/* =============================================================== tables == */

/* Any wide table scrolls inside its own box rather than the page. */
.table-responsive,
.site-blocks-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.site-blocks-table table { min-width: 620px; }
.site-blocks-table thead th { background: var(--surface-tint); color: var(--ink); }
.site-blocks-table tbody tr:first-child td { border-top-color: var(--line) !important; }

/* ================================================================ forms == */

.form-label {
  font-weight: 600;
  font-size: clamp(12.5px, 0.9vw, 13.5px);
  color: var(--ink);
  margin-bottom: 6px;
}
.form-label .req { color: var(--brand-orange); }

.form-control, .form-select {
  border-color: var(--line-strong);
  font-size: clamp(13.5px, 0.95vw, 14.5px);
  border-radius: var(--radius-sm);
  min-height: 48px;
  height: auto;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 3px rgba(63, 125, 47, .15) !important;
}
textarea.form-control { min-height: 120px; }

/* 16px stops iOS zooming the page when a field takes focus. */
@media (max-width: 767.98px) {
  .form-control, .form-select { font-size: 16px; }
}

.form-control.is-invalid, .form-select.is-invalid {
  border-color: var(--brand-orange) !important;
  background-image: none;
}

.field-error {
  display: none;
  color: var(--brand-orange);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 5px;
}
.field-error.is-shown { display: block; }

.form-note { font-size: clamp(12px, 0.85vw, 12.5px); color: var(--ink-muted); line-height: 1.6; }

.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-status.is-shown { display: block; }
.form-status.is-error {
  background: #fdeee7;
  color: #a63d0d;
  border: 1px solid #f6c8b1;
}

.quote-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(20px, 2.2vw, 36px) clamp(16px, 2vw, 32px);
}

/* Calculator read-out rows */
.calc-rows { list-style: none; padding: 0; margin: 0; }
.calc-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: clamp(13px, 0.95vw, 14.5px);
}
.calc-rows li:last-child { border-bottom: 0; }
.calc-rows li strong { text-align: right; overflow-wrap: anywhere; }

/* ============================================================ page hero == */

.page-hero {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  padding: clamp(2.4rem, 4.4vw, 4.6rem) 0 clamp(2rem, 3.6vw, 3.6rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero:before {
  content: "";
  position: absolute;
  width: clamp(280px, 32vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 205, 29, .16) 0%, rgba(252, 205, 29, 0) 70%);
  top: -45%;
  right: -6%;
  pointer-events: none;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; position: relative; z-index: 2; }
.page-hero p {
  color: rgba(255, 255, 255, .8);
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-size: clamp(13.5px, 1vw, 15.5px);
}

.page-hero .breadcrumb {
  justify-content: center;
  margin: 16px 0 0;
  position: relative;
  z-index: 2;
  font-size: clamp(12px, 0.9vw, 13.5px);
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--brand-yellow); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item:before { color: rgba(255, 255, 255, .45); }
.page-hero .breadcrumb-item.active { color: rgba(255, 255, 255, .74); }

/* ============================================================== CTA band == */

.cta-band {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 46px) clamp(20px, 2.8vw, 44px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, .92); margin-bottom: 0; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.cta-band .btn-secondary { box-shadow: 0 10px 26px rgba(0, 0, 0, .16); }

@media (min-width: 992px) { .cta-band .cta-actions { justify-content: flex-end; } }
@media (max-width: 991.98px) {
  .cta-band { text-align: center; }
  .cta-band .cta-actions { justify-content: center; }
}

/* =============================================================== footer == */

.footer-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 4vw, 5rem) 0 clamp(1.5rem, 2vw, 2rem);
}

.footer-section a { color: var(--ink-muted); text-decoration: none; }
.footer-section a:hover { color: var(--brand-primary); }

.footer-section .footer-logo-wrap .footer-logo-img {
  max-width: clamp(180px, 16vw, 230px);
  height: auto;
  display: block;
}

.footer-section .footer-heading {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(12px, 1.2vw, 18px);
}

.footer-section .links-wrap { margin-top: 0; }
.footer-section .links-wrap ul li { margin-bottom: 10px; }
.footer-section .links-wrap ul li a { font-size: clamp(13px, 0.96vw, 14.5px); }

.footer-section .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-section .footer-contact li {
  display: flex;
  gap: 11px;
  margin-bottom: 13px;
  font-size: clamp(13px, 0.96vw, 14.5px);
  line-height: 1.6;
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-section .footer-contact li a { overflow-wrap: anywhere; }
.footer-section .footer-contact .fa {
  color: var(--brand-primary);
  margin-top: 5px;
  flex: 0 0 16px;
}

.footer-section .custom-social li { margin: 2px; display: inline-block; }
.footer-section .custom-social li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  background: var(--surface-tint);
  color: var(--brand-primary);
  border-radius: 50%;
}
.footer-section .custom-social li a:hover { background: var(--brand-primary); color: #fff; }

.footer-section .subscription-form h3 { color: var(--brand-primary); }

.footer-section .border-top { border-color: var(--line) !important; }
.footer-section .border-top.copyright { font-size: clamp(12px, 0.9vw, 13.5px) !important; }

@media (max-width: 991.98px) {
  .footer-section .border-top.copyright { text-align: center; }
  .footer-section .border-top.copyright ul { flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
  .footer-section .border-top.copyright ul li { margin-right: 0 !important; }
}

/* ==================================================== floating actions == */

.floating-actions {
  position: fixed;
  right: clamp(12px, 1.4vw, 22px);
  bottom: clamp(12px, 1.4vw, 22px);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-actions .float-btn {
  width: clamp(46px, 3.6vw, 54px);
  height: clamp(46px, 3.6vw, 54px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 21px);
  text-decoration: none;
  border: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
}
.floating-actions .float-btn:hover { transform: scale(1.08); color: #fff; }

.floating-actions .float-whatsapp { background: #25d366; }
.floating-actions .float-call { background: var(--brand-primary); font-size: clamp(16px, 1.3vw, 19px); }
.floating-actions .float-top {
  background: var(--green-950);
  font-size: clamp(14px, 1.2vw, 17px);
  opacity: 0;
  visibility: hidden;
}
.floating-actions .float-top.is-visible { opacity: 1; visibility: visible; }

@media (min-width: 992px) { .floating-actions .float-call { display: none; } }

/* ========================================================= misc polish == */

.custom-list { width: 100%; padding-left: 0; }
.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.55;
  position: relative;
  padding-left: 22px;
  vertical-align: top;
}
.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--brand-primary);
  position: absolute;
  left: 0;
  top: 8px;
}
@media (max-width: 575.98px) { .custom-list li { display: block; width: 100%; } }

.img-wrap img,
.we-help-section .imgs-grid .grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-section { background: var(--surface-alt); }
.testimonial-slider-wrap .item .testimonial-block blockquote p {
  color: var(--ink);
  font-size: clamp(14.5px, 1.15vw, 18px);
  line-height: 1.75;
}
.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
  border: 3px solid var(--surface-tint);
  aspect-ratio: 1;
  object-fit: cover;
  max-width: clamp(64px, 5.5vw, 80px);
}
.testimonial-slider-wrap .item .testimonial-block .rating {
  color: var(--brand-yellow);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-slider-wrap #testimonial-nav > span {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--brand-primary);
  width: clamp(44px, 3.6vw, 56px);
  height: clamp(44px, 3.6vw, 56px);
  line-height: clamp(44px, 3.6vw, 56px);
}
.testimonial-slider-wrap #testimonial-nav > span:hover { background: var(--brand-primary); color: #fff; }
.testimonial-slider-wrap .tns-nav button:hover:before,
.testimonial-slider-wrap .tns-nav button.tns-nav-active:before { background-color: var(--brand-primary); }

.blog-section .post-entry .post-thumbnail img { border-radius: var(--radius); }
.blog-section .post-entry .post-content-entry { padding-inline: 0; }
.blog-section .post-entry .post-content-entry h3 { font-size: clamp(14.5px, 1.15vw, 16.5px); }
.blog-section .post-entry .post-content-entry .meta a { color: var(--brand-primary); }

/* SVG illustrations are 5:4; thumbnail slots are 16:10 — letterbox, don't crop. */
.post-thumbnail img[src$=".svg"],
.card-media[src$=".svg"] {
  object-fit: contain;
  background: var(--surface-tint);
}

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature .icon:before { background: rgba(63, 125, 47, .16); }
.feature h3 { font-size: clamp(13.5px, 1.05vw, 15px); color: var(--ink); }
.feature p { font-size: clamp(12.5px, 0.94vw, 14px); line-height: 1.6; }

.product-section .product-item .icon-cross { background: var(--brand-primary); }
.product-section .product-item strong { color: var(--brand-primary) !important; }
.product-section .product-item:before { background: var(--surface-tint); }

.service .service-icon { background: var(--brand-primary); }

.thankyou-icon { color: var(--brand-primary); }
.thankyou-icon:before { background: rgba(63, 125, 47, .18); }

.text-primary { color: var(--brand-primary) !important; }

/* Reveal-on-scroll — progressive enhancement, visible by default. */
.reveal { opacity: 1; }
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ====================================================== touch targets == */

/* Inline "Explore service ->" links were only 22px tall. Give every inline
   action a full-height hit area on touch widths without changing how it looks. */
@media (max-width: 991.98px) {
  .service-card .service-link,
  .blog-section .more,
  .info-card a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Footer and list links sat at 30px tall. Pad them to a comfortable target
     and take the space back off the list spacing so the footer keeps its
     height. */
  .footer-section .links-wrap ul li { margin-bottom: 2px; }
  .footer-section .links-wrap ul li a,
  .footer-section .footer-contact li a,
  .footer-section .border-top.copyright ul li a,
  .page-hero .breadcrumb a,
  .post-content-entry h3 a,
  .blog-section .more {
    display: inline-block;
    padding-block: 9px;
  }
  .footer-section .footer-contact li { margin-bottom: 6px; }
  .page-hero .breadcrumb a { padding-block: 4px; }
}

/* Carousel dots: keep the 7px dot, enlarge the thing you actually press. */
.testimonial-slider-wrap .tns-nav button {
  width: 28px !important;
  height: 40px !important;
  margin: 0 !important;
  padding: 0;
}
.testimonial-slider-wrap .tns-nav button:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ==================================================== breakpoint tuning == */

/* Tablet — 768 to 991 */
@media (min-width: 768px) and (max-width: 991.98px) {
  .we-help-section .imgs-grid .grid img { min-height: 160px; }
  .process-step { padding-inline: 0; }
}

/* Phone — up to 767 */
@media (max-width: 767.98px) {
  body { line-height: 1.68; }

  .why-choose-section .img-wrap:before,
  .we-help-section .imgs-grid:before,
  .stats-section:before { display: none; }

  .why-choose-section .img-wrap { margin-top: 24px; }
  .we-help-section .imgs-grid { margin-bottom: 30px; }
  .we-help-section .imgs-grid .grid img { min-height: 120px; }

  .testimonial-slider-wrap #testimonial-nav { display: none; }

  /* Full-width, comfortably tappable buttons in stacked contexts. */
  .hero .hero-cta .btn,
  .cta-band .cta-actions .btn { width: 100%; justify-content: center; }

  .section-heading { text-align: center; }
}

/* Small phone — 320 to 400 */
@media (max-width: 400px) {
  :root { --gutter: 14px; }
  .btn { padding-inline: 18px; }
  .service-card, .info-card, .quote-form-card { border-radius: var(--radius); }
  .badge-strip .badge-wrap { border-radius: var(--radius); }
  .topbar { font-size: 12px; }
  .topbar .topbar-contact { gap: 2px 14px; }
  .floating-actions { gap: 8px; }
}

/* Very small phone — 340 and below */
@media (max-width: 340px) {
  .custom-navbar .navbar-brand .brand-name { font-size: 13px; }
  .custom-navbar .navbar-brand .brand-sub { display: none; }
  .partner-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Short laptop screens — 1366×768 and similar */
@media (min-width: 1200px) and (max-height: 800px) {
  .hero { padding-top: 2.6rem; padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(1.85rem, 2.8vw, 2.6rem); }
}

/* Very wide — keep prose from stretching even as the container grows */
@media (min-width: 1600px) {
  .section-heading p { max-width: 780px; margin-inline: auto; }
}

/* ================================================================ print == */

@media print {
  .topbar, .custom-navbar, .floating-actions, .hero:before, .hero:after,
  .subscription-form, .cta-band, .breadcrumb { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-hero, .stats-section { background: #fff !important; color: #000; }
  .hero h1, .page-hero h1, .hero p, .page-hero p, .stat-item .stat-value,
  .stat-item .stat-label { color: #000 !important; }
  a[href^="http"]:after { content: " (" attr(href) ")"; font-size: 11px; }
  .service-card, .info-card, .quote-form-card { box-shadow: none; border: 1px solid #ccc; }
}
