/* ===========================================================
   Green Light Tote Sanitizing — Design System
   Authentic navy brand (colours from original glts.ca)
   =========================================================== */

/* ---------- Local fonts ---------- */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/poppins-800.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-600.woff2") format("woff2"); }

:root {
  /* Brand palette — navy #132565 primary, blue-grey #8085a6 secondary.
     Variable names kept for compatibility; values are the real GLTS colours. */
  --green-900: #0a1533;   /* darkest navy */
  --green-800: #0d1b47;   /* dark navy (header/footer) */
  --green-700: #0f1f52;   /* hover navy */
  --green-600: #0b1533;   /* PRIMARY brand navy (matches header/footer) */
  --green-500: #2b3f8f;   /* lighter navy accent */
  --lime-500: #b9c2e2;    /* soft steel-blue accent */
  --lime-400: #cdd6f2;    /* light steel-blue accent */
  --mint-100: #e6e9f5;    /* light lavender-blue tint */
  --mint-50:  #f3f5fb;    /* faint blue tint */

  --steel: #8085a6;       /* brand secondary blue-grey */

  --ink-900: #14224e;     /* dark navy-ink for headings */
  --ink-700: #35405f;
  --ink-500: #5c6480;
  --ink-400: #868da8;

  --paper: #ffffff;
  --paper-soft: #f6f7fc;
  --line: #e3e6f1;

  --amber: #f59e0b;

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(19, 37, 101, .07);
  --shadow-md: 0 10px 30px rgba(19, 37, 101, .12);
  --shadow-lg: 0 24px 60px rgba(19, 37, 101, .18);

  --wrap: 1400px;
  --gutter: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-600); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: 50px 0; }
.section--soft { background: transparent; }
.section--mint { background: var(--mint-50); }
.section--dark { background: var(--green-900); color: #d7 efe3; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: 0 8px 20px rgba(19,37,101,.30); }
.btn--primary:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(19,37,101,.38); }
.btn--lime { background: var(--lime-400); color: var(--green-900); }
.btn--lime:hover { background: var(--lime-500); color: var(--green-900); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green-700); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-500); color: var(--green-700); background: var(--mint-50); }
.btn--white { background: #fff; color: var(--green-800); }
.btn--white:hover { background: var(--mint-100); color: var(--green-800); transform: translateY(-2px); }
.btn--accent { background: #7ac249; color: #fff; box-shadow: 0 8px 20px rgba(122,194,73,.32); }
.btn--accent:hover { background: #669e37; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(122,194,73,.4); }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- Utility chips / eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--green-700); background: var(--mint-100);
  padding: .4rem .9rem; border-radius: var(--r-pill); margin-bottom: 1rem;
}
.eyebrow--light { background: rgba(255,255,255,.16); color: #dbe2ff; }
.lead { font-size: 1.15rem; color: var(--ink-500); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-680 { max-width: 680px; }
.maxw-760 { max-width: 760px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-900); color: #c3c9e6;
  font-size: .86rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #eef1ff; }
.topbar__left { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 15px; height: 15px; opacity: .85; }
.topbar__social { display: flex; gap: .8rem; }
.topbar__social a { display: inline-flex; }
.topbar__social svg { width: 16px; height: 16px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, #0b1533 0%, var(--green-900) 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
/* Real GLTS logo shown via CSS background so it applies on every page */
.brand {
  display: block; width: 300px; height: 90px; flex: none; padding: 0;
  background: url("../logo.png") left center / contain no-repeat;
  text-indent: -9999px; white-space: nowrap; overflow: hidden;
}
.brand span, .brand small, .brand__mark { display: none !important; }
.brand small { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); }

.nav__links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: #dfe3f5; padding: .6rem .8rem; border-radius: var(--r-sm);
}
.nav__links > li > a:hover, .nav__links > li.is-active > a { color: #fff; background: rgba(255,255,255,.10); }
.nav__links .caret { width: 14px; height: 14px; opacity: .7; }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 234px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__links > li:hover .dropdown, .nav__links > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: .6rem .75rem; border-radius: var(--r-sm); font-size: .92rem; color: var(--ink-700); font-family: var(--font-head); font-weight: 500; }
.dropdown a:hover { background: var(--mint-50); color: var(--green-700); }

.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__toggle { display: none; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); width: 46px; height: 44px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-600) 100%); color: #eaeeff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 340px at 88% 12%, rgba(128,133,166,.35), transparent 60%),
    radial-gradient(520px 320px at 6% 92%, rgba(43,63,143,.45), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
/* Hero with real photo background */
.hero--photo { background: linear-gradient(150deg, rgba(10,21,51,.92) 0%, rgba(13,27,71,.82) 50%, rgba(19,37,101,.72) 100%), url("../img/slider1.jpg") center / cover no-repeat; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(52px, 8vw, 96px) 0; }
.hero h1 { color: #fff; }
.hero p { color: #d7f2e2; font-size: 1.14rem; max-width: 40ch; }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero__stats { display: flex; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__stat b { font-family: var(--font-head); font-size: 1.9rem; color: var(--lime-400); display: block; line-height: 1; }
.hero__stat span { font-size: .86rem; color: #bfe6cd; }
.hero__card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg); padding: clamp(20px, 3vw, 34px);
  backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero__card h3 { color: #fff; }
.hero__illus { display: grid; place-items: center; }

/* Page hero (interior) */
.page-hero { background: linear-gradient(160deg, var(--green-900), var(--green-700)); color: #eafff2; padding: clamp(48px, 7vw, 84px) 0 clamp(40px,6vw,64px); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(520px 320px at 88% 0%, rgba(122,194,73,.28), transparent 62%); }
.page-hero .wrap { position: relative; z-index:1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d7f2e2; max-width: 60ch; }
.crumbs { font-size: .85rem; color: #bfe6cd; margin-bottom: 1rem; }
.crumbs a { color: #eafff2; }
.crumbs span { opacity: .6; margin: 0 .35rem; }
/* breadcrumb-only bar (inner pages, banner removed) */
.crumb-bar { padding: 18px 0; border-bottom: 1px solid var(--line); background: #fff; }
.crumb-bar .crumbs { margin: 0; font-size: .9rem; color: var(--ink-500); }
.crumb-bar .crumbs a { color: var(--ink-700); }
.crumb-bar .crumbs a:hover { color: var(--green-600); }
.crumb-bar .crumbs span { opacity: 1; color: var(--ink-400); }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--mint-100); }
.card__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: var(--mint-100); color: var(--green-700); margin-bottom: 1.1rem; }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-500); margin-bottom: 1rem; }
.card .arrow-link { font-family: var(--font-head); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.card .arrow-link svg { width: 16px; height: 16px; transition: transform .2s; }
.card .arrow-link:hover svg { transform: translateX(4px); }

.section-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; text-align: center; }
.step__num { counter-increment: step; width: 46px; height: 46px; margin: 0 auto .9rem; border-radius: 50%; background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.05rem; }
.step p { color: var(--ink-500); font-size: .93rem; margin: 0; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--mint-100); min-height: 300px; }
.media-illus { width: 100%; height: 100%; display: block; }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-700); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--green-600); margin-top: 2px; }
/* service page content pattern (image + paragraph + grouped icon points + button) */
.svc-points-title { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: var(--ink-900); margin: 1.5rem 0 .3rem; display: flex; align-items: center; gap: .5rem; }
.svc-points-title::before { content: ""; width: 18px; height: 3px; border-radius: 2px; background: #7ac249; }
.svc-copy .checklist { margin: .5rem 0 0; }
.svc-copy .btn { margin-top: 1.8rem; }
/* float layout: image floats, content wraps around it */
.svc-float::after { content: ""; display: block; clear: both; }
.svc-float__img { float: none; display: block; width: 100%; max-width: 100%; height: clamp(260px, 34vw, 420px); object-fit: cover; margin: 0 0 32px; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.svc-float p { color: var(--ink-700); line-height: 1.85; margin: 0 0 1.15rem; }
.svc-float__note { font-weight: 700; color: var(--ink-900); }
.svc-float .btn { clear: both; }
@media (max-width: 760px) { .svc-float__img { float: none; width: 100%; max-width: 100%; margin: 0 0 22px; } }

/* Our Services cross-sell cards */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; color: inherit; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { padding: 24px 26px 28px; }
.svc-card__body h3 { margin: 0 0 .5rem; font-size: 1.24rem; color: var(--ink-900); }
.svc-card__body p { margin: 0 0 1rem; color: var(--ink-500); font-size: .95rem; line-height: 1.6; }
.svc-card__go { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600; color: var(--green-600); }
.svc-card__go svg { width: 18px; height: 18px; transition: transform .2s ease; }
.svc-card:hover .svc-card__go { color: #7ac249; }
.svc-card:hover .svc-card__go svg { transform: translateX(3px); }
@media (max-width: 980px) { .svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.is-featured { border: 2px solid var(--green-500); box-shadow: var(--shadow-md); position: relative; }
.price-card.is-featured::after { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green-600); color: #fff; font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .85rem; border-radius: var(--r-pill); }
.price-card h3 { margin-bottom: .2rem; }
.price-card .price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--ink-900); line-height: 1; margin: .6rem 0 .2rem; }
.price-card .price small { font-size: .95rem; font-weight: 500; color: var(--ink-400); }
.price-card .price-note { color: var(--ink-400); font-size: .9rem; margin-bottom: 1.2rem; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .6rem; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--ink-700); }
.price-card li svg { flex: none; width: 20px; height: 20px; color: var(--green-600); margin-top: 2px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* Pricing cards — Cleanify style */
.pcard { background: #fff; border: 2px solid rgba(19,37,101,.08); border-radius: 40px; padding: 38px 40px 40px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 26px 52px rgba(19,37,101,.12); border-color: #7ac249; }
.pcard--active { border-color: #7ac249; box-shadow: 0 26px 52px rgba(122,194,73,.20); }
.pcard__pkg { font-family: var(--font-head); font-size: .98rem; font-weight: 600; color: var(--ink-500); margin: 0 0 .25rem; }
.pcard__title { font-size: 1.5rem; margin: 0 0 .8rem; color: var(--ink-900); }
.pcard__save { display: inline-block; background: rgba(122,194,73,.16); color: #4f8f24; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; padding: .38rem .95rem; border-radius: 45px; margin-bottom: 1.1rem; }
.pcard__price { font-family: var(--font-head); font-weight: 800; font-size: 2.8rem; color: var(--ink-900); line-height: 1; }
.pcard__price small { font-size: .95rem; font-weight: 500; color: var(--ink-400); margin-left: .2rem; }
.pcard__note { color: var(--ink-500); font-size: .92rem; margin: .5rem 0 0; }
.pcard__list { list-style: none; padding: 24px 0; margin: 24px 0; border-top: 1px solid rgba(19,37,101,.1); border-bottom: 1px solid rgba(19,37,101,.1); display: grid; gap: .9rem; }
.pcard__list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--ink-700); font-size: .96rem; line-height: 1.4; }
.pcard__ic { width: 22px; height: 22px; border-radius: 50%; background: #7ac249; color: #fff; display: grid; place-items: center; flex: none; margin-top: 1px; }
.pcard__ic svg { width: 13px; height: 13px; }
.pcard__btn { margin-top: auto; justify-content: center; border-radius: 40px; padding: .85rem 1.6rem; background: transparent; color: var(--green-600); border: 1.6px solid rgba(19,37,101,.16); font-weight: 600; }
.pcard__btn:hover { background: #7ac249; border-color: #7ac249; color: #fff; transform: translateY(-2px); }
.pcard--active .pcard__btn { background: #7ac249; border-color: #7ac249; color: #fff; }
.pcard--active .pcard__btn:hover { background: #669e37; border-color: #669e37; }

/* ---------- Table ---------- */
.rate-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.rate-table th, .rate-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
.rate-table thead th { background: var(--green-800); color: #eafff2; font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.rate-table tbody tr:hover { background: var(--mint-50); }
.rate-table td:last-child, .rate-table th:last-child { text-align: right; font-weight: 600; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: #fff; display: block; line-height: 1; }
.stat span { color: #bfe6cd; font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; border-radius: var(--r-lg); padding: clamp(34px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(420px 260px at 85% 15%, rgba(122,194,73,.32), transparent 62%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7f2e2; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid #7ac249; border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.field { display: flex; flex-direction: column; gap: .3rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-900); }
.field label .req { color: #e5484d; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink-900);
  padding: .58rem .8rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #dde6ff36;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #7ac249; box-shadow: 0 0 0 3px rgba(122,194,73,.18); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field textarea { resize: vertical; min-height: 88px; }
.form-note { font-size: .86rem; color: var(--ink-400); }
.form-consent { font-style: italic; font-size: .82rem; line-height: 1.65; color: var(--ink-500); margin: 1rem 0 1.3rem; }
.math-field { margin-top: .2rem; }
.math-field .math-q { font-family: var(--font-head); font-weight: 700; color: var(--green-600); margin-left: .35rem; letter-spacing: .02em; }
.field-hint { font-style: italic; color: var(--ink-400); font-size: .82rem; margin-top: .4rem; }
.math-error { margin-top: .35rem; font-size: .85rem; }
/* Order form layout (mascot + form) */
.order-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.order-mascot { position: sticky; top: 110px; }
.order-mascot img { display: block; width: 230px; max-width: 100%; height: auto; margin: 0 0 26px; }
.order-mascot h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: .4rem 0 1rem; }
.form-req-note { color: #669e37; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin: 0 0 1.4rem; }
@media (max-width: 880px) {
  .order-layout { grid-template-columns: 1fr; gap: 30px; }
  .order-mascot { position: static; margin-bottom: 4px; }
  .order-mascot img { margin-left: auto; margin-right: auto; }
}

/* Partner CTA band (home) */
.partner-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(9,17,42,.86) 0%, rgba(9,17,42,.80) 100%) center / cover no-repeat, url("../clearning.png") left center / cover no-repeat fixed #0b1533; border-top: 4px solid #7ac249; border-radius: 30px; padding: clamp(38px, 5vw, 66px); box-shadow: var(--shadow-lg); }

/* Partner + Clients sections — full-bleed width to match footer */
#partner .wrap, #clients .wrap { max-width: none; padding: 0 14px; }
/* keep the heading text within the container width */
#clients .section-head { max-width: var(--wrap); margin-left: auto; margin-right: auto; }

/* partner eyebrow green */
.partner-cta .eyebrow { background: rgba(122,194,73,.16); color: #8fd15f; }
.partner-cta__orb { position: absolute; right: -70px; top: -70px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle at 32% 32%, rgba(122,194,73,.55), rgba(122,194,73,0) 70%); pointer-events: none; }
.partner-cta__tote { position: absolute; left: clamp(12px, 3vw, 60px); bottom: -61px; height: clamp(230px, 34vw, 420px); width: auto; z-index: 1; pointer-events: none; filter: drop-shadow(0 18px 28px rgba(0,0,0,.4)); animation: toteFloat 4.5s ease-in-out infinite; }
@keyframes toteFloat {
  0%   { transform: translateY(0) rotate(-1.5deg); }
  50%  { transform: translateY(-16px) rotate(1.5deg); }
  100% { transform: translateY(0) rotate(-1.5deg); }
}
@media (max-width: 900px) { .partner-cta__tote { display: none; } .partner-cta { background-attachment: scroll; } }
@media (prefers-reduced-motion: reduce) { .partner-cta__tote { animation: none; } }
.partner-cta__body { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.partner-cta__body p { margin-left: auto; margin-right: auto; }
.partner-cta__actions { justify-content: center; }
.partner-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: .35rem 0 1rem; }
.partner-cta__body p { color: #c3c9e6; font-size: 1.06rem; line-height: 1.7; margin: 0 0 1.6rem; max-width: 62ch; }
.partner-cta__list { list-style: none; margin: 0 0 1.9rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.8rem; }
.partner-cta__list li { display: flex; align-items: center; gap: .6rem; color: #e7eaf6; font-weight: 500; }
.partner-cta__list svg { width: 20px; height: 20px; color: #8fd15f; flex: none; }
.partner-cta__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
@media (max-width: 620px) { .partner-cta__list { grid-template-columns: 1fr; } }

.radio-row { display: flex; gap: .7rem; flex-wrap: wrap; }
.radio-tile { flex: 1 1 150px; }
.radio-tile input { position: absolute; opacity: 0; }
.radio-tile label { display: block; border: 1.5px solid var(--line); border-radius: var(--r-md); padding: .9rem 1rem; cursor: pointer; background: var(--paper-soft); font-family: var(--font-head); transition: all .2s; }
.radio-tile input:checked + label { border-color: var(--green-500); background: var(--mint-50); box-shadow: 0 0 0 3px rgba(34,197,94,.12); color: var(--green-800); }

/* ---------- FAQ accordion ---------- */
.faq-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 52px; align-items: start; }
.faq { display: block; max-width: none; margin: 0; }
.faq-item { background: transparent; border: none; border-bottom: 1px solid var(--line); border-radius: 0; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.25rem 0; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink-900); display: flex; justify-content: space-between; align-items: center; gap: 1rem; line-height: 1.35; }
.faq-q svg { flex: none; width: 34px; height: 34px; padding: 7px; box-sizing: border-box; border-radius: 50%; background: #7ac249; color: #fff; transition: transform .25s ease, background .25s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); background: #669e37; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 2px 0 20px; padding: 16px 22px; background: #f5f8f2; border-radius: 14px; color: var(--ink-500); line-height: 1.65; }
@media (max-width: 800px) { .faq-2col { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/10; background: var(--mint-100); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .82rem; color: var(--ink-400); margin-bottom: .5rem; display: flex; gap: .6rem; align-items: center; }
.tag { display: inline-block; font-size: .74rem; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--green-700); background: var(--mint-100); padding: .25rem .7rem; border-radius: var(--r-pill); }
.post-card h3 { font-size: 1.2rem; }
.post-card p { color: var(--ink-500); font-size: .95rem; }
.post-card .arrow-link { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--green-600); display: inline-flex; gap: .35rem; align-items: center; }
.post-card .arrow-link svg { width: 16px; height: 16px; transition: transform .2s; }
.post-card:hover .arrow-link { color: #7ac249; }
.post-card:hover .arrow-link svg { transform: translateX(3px); }
.tag { color: #4f8f24; background: rgba(122,194,73,.16); }

/* Featured blog post */
.blog-featured { display: grid; grid-template-columns: 1.1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); color: inherit; transition: box-shadow .25s ease, transform .25s ease; }
.blog-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-featured__media { min-height: 300px; overflow: hidden; position: relative; }

/* ClanyEco-style image wipe on hover (two stacked images) */
.post-card__media, .blog-featured__media { position: relative; overflow: hidden; }
.post-card__media img, .blog-featured__media img { position: relative; width: 100%; height: 100%; object-fit: cover; display: block; transition: 500ms; }
.post-card__media img:first-child, .blog-featured__media img:first-child { position: absolute; inset: 0; z-index: 1; transform: translateX(50%) scaleX(2); opacity: 0; filter: blur(10px); }
.post-card:hover .post-card__media img:first-child, .blog-featured:hover .blog-featured__media img:first-child { transform: translateX(0) scaleX(1); opacity: 1; filter: blur(0); }
.post-card:hover .post-card__media img:nth-child(2), .blog-featured:hover .blog-featured__media img:nth-child(2) { transform: translateX(-50%) scaleX(2); opacity: 0; filter: blur(10px); }
.blog-featured__body { padding: clamp(28px, 4vw, 50px); display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: .5rem 0 .8rem; color: var(--ink-900); line-height: 1.2; }
.blog-featured__body p { color: var(--ink-500); line-height: 1.75; margin: 0 0 1.3rem; max-width: 52ch; }
.blog-featured .arrow-link { font-family: var(--font-head); font-weight: 600; color: var(--green-600); display: inline-flex; gap: .4rem; align-items: center; }
.blog-featured .arrow-link svg { width: 18px; height: 18px; transition: transform .2s; }
.blog-featured:hover .arrow-link svg { transform: translateX(4px); }
@media (max-width: 800px) { .blog-featured { grid-template-columns: 1fr; } .blog-featured__media { min-height: 220px; } }

/* Blog details (single post) */
.blog-detail__hero { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 2rem; }
.blog-detail__hero img { width: 100%; height: clamp(280px, 40vw, 460px); object-fit: cover; display: block; }
.blog-detail__body p { color: var(--ink-700); line-height: 1.85; margin: 0 0 1.2rem; font-size: 1.05rem; }
.blog-detail__body h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.blog-detail__body a { color: var(--green-600); font-weight: 600; }
.blog-detail__body a:hover { color: #7ac249; }
.blog-detail__body .checklist { margin: 1.2rem 0 1.6rem; }
.blog-detail__share { display: flex; align-items: center; gap: 12px; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.blog-detail__share span { font-family: var(--font-head); font-weight: 600; color: var(--ink-700); }
.blog-detail__share a { width: 40px; height: 40px; border-radius: 50%; background: var(--mint-100); color: var(--green-600); display: grid; place-items: center; transition: .2s; }
.blog-detail__share a:hover { background: #7ac249; color: #fff; transform: translateY(-2px); }
.blog-detail__share svg { width: 17px; height: 17px; }

/* ---------- Logos strip ---------- */
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px; }
.logo-chip { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 26px; font-family: var(--font-head); font-weight: 700; color: var(--ink-400); box-shadow: var(--shadow-sm); }

/* ---------- Video ---------- */
.video-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--green-900); aspect-ratio: 16/9; display: grid; place-items: center; }
.play-btn { width: 84px; height: 84px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); cursor: pointer; transition: transform .2s; }
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 34px; height: 34px; color: var(--green-700); margin-left: 4px; }

/* ---------- Contact info tiles ---------- */
.info-tile { display: flex; gap: 1rem; align-items: center; background: linear-gradient(135deg, rgba(122,194,73,.16), rgba(19,37,101,.06)); border: 1px solid rgba(122,194,73,.38); border-radius: var(--r-md); padding: 20px 22px; box-shadow: 0 8px 22px rgba(122,194,73,.14); }
.info-tile__icon { width: 48px; height: 48px; border-radius: 12px; flex: none; background: linear-gradient(135deg, #7ac249, #669e37); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(122,194,73,.35); }
.info-tile__icon svg { width: 24px; height: 24px; }
.info-tile b { font-family: var(--font-head); color: var(--ink-900); display: block; }
.info-tile span { color: var(--ink-500); font-size: .95rem; }
.info-tile a { color: #669e37; font-size: 1.05rem; font-weight: 700; font-family: var(--font-head); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.contact-map iframe { display: block; width: 100%; height: 460px; border: 0; }

/* ---------- Footer (reference-matched) ---------- */
.site-footer { position: relative; overflow: hidden; background: linear-gradient(180deg, #0b1533 0%, var(--green-900) 60%); color: #b6bcd6; padding: clamp(46px, 6vw, 70px) 0 0; }
.site-footer .wrap { position: relative; z-index: 2; }
/* decorative orb on the right */
.footer-orb { position: absolute; right: -60px; top: 80px; width: 320px; height: 320px; border-radius: 50%; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at 38% 34%, rgba(63,143,92,.28), rgba(43,63,143,.10) 55%, transparent 72%); filter: blur(4px); }
.footer-orb::after { content: ""; position: absolute; left: 40%; top: 62%; width: 42px; height: 42px; background:
  linear-gradient(#5fae74,#5fae74) center/100% 3px no-repeat, linear-gradient(#5fae74,#5fae74) center/3px 100% no-repeat; transform: rotate(45deg); opacity: .5; }

/* Top consultation row */
.footer-consult-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: clamp(34px, 5vw, 52px); border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: clamp(34px, 5vw, 52px); }
.footer-consult-row .line { flex: 1; height: 1px; background: rgba(255,255,255,.14); }
/* newsletter subscribe (footer) */
.footer-subscribe { display: flex; flex-direction: column; gap: .7rem; min-width: 330px; }
.footer-subscribe__label { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-subscribe__row { display: flex; gap: .5rem; }
.footer-subscribe input { flex: 1; min-width: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: .82rem 1.25rem; color: #fff; font-family: var(--font-body); font-size: .95rem; }
.footer-subscribe input::placeholder { color: #9aa2c4; }
.footer-subscribe input:focus { outline: none; border-color: #7ac249; background: rgba(255,255,255,.12); }
.footer-subscribe .btn { border-radius: var(--r-pill); padding: .82rem 1.6rem; white-space: nowrap; }
.footer-subscribe__ok { color: #8fd15f; font-weight: 600; font-size: .9rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #9198bd; font-size: .9rem; }
.footer-legal a:hover { color: #7ac249; }

/* Footer — navy (ClanyEco-style layout) */
.footer-light { position: relative; overflow: hidden; margin: 50px 14px 14px; border-top: 4px solid #7ac249; border-radius: 30px; background: linear-gradient(180deg, #0b1533 0%, var(--green-900) 100%); color: #b6bcd6; padding: clamp(50px, 6vw, 78px) 0 28px; }
.footer-light a { color: #b6bcd6; transition: color .2s; }
.footer-light a:hover { color: #7ac249; }
.fl-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.6fr; gap: 44px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); }
.fl-logo { display: inline-block; }
.fl-logo img { display: block; width: 210px; max-width: 100%; height: auto; }
.fl-contact { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.fl-contact li { display: flex; align-items: center; gap: 12px; font-size: .96rem; color: #cfd3e6; }
.fl-ci { width: 38px; height: 38px; border-radius: 50%; background: #7ac249; color: #fff; display: grid; place-items: center; flex: none; }
.fl-ci svg { width: 17px; height: 17px; }
.fl-contact a { color: #cfd3e6; font-weight: 500; }

.fl-col h4, .fl-areas h4, .fl-blogs h4 { font-family: var(--font-head); font-size: 17px; letter-spacing: .04em; color: #7ac249; margin: 0 0 1.2rem; font-weight: 700; }
.fl-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.fl-col a { color: #b6bcd6; }

/* Blogs column */
.fl-blog-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.fl-blog-list a { display: flex; gap: 12px; align-items: center; color: #cfd3e6; }
.fl-blog__img { width: 62px; height: 52px; border-radius: 10px; overflow: hidden; flex: none; }
.fl-blog__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.fl-blog-list a:hover .fl-blog__img img { transform: scale(1.08); }
.fl-blog__t { font-size: .9rem; line-height: 1.4; font-weight: 500; }
.fl-blog-list a:hover .fl-blog__t { color: #7ac249; }

.fl-areas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.fl-areas h4 { margin: 0; }
.fl-areas ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.fl-areas li { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: .35rem .95rem; font-size: .88rem; color: #cfd3e6; }

.fl-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; }
.fl-social { display: flex; gap: 10px; }
.fl-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: .2s; }
.fl-social a:hover { background: #7ac249; border-color: #7ac249; color: #fff; transform: translateY(-2px); }
.fl-social svg { width: 17px; height: 17px; }
.fl-copy { color: #9198bd; font-size: .9rem; }
.fl-legal { display: flex; gap: 1.4rem; }
.fl-legal a { font-size: .9rem; color: #9198bd; }

@media (max-width: 960px) { .fl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fl-grid { grid-template-columns: 1fr; } .fl-bottom { flex-direction: column; text-align: center; } }

/* Footer style two (image showcase card + columns) */
.footer-grid2 { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; padding-bottom: clamp(36px, 5vw, 54px); }
.footer-showcase { position: relative; overflow: hidden; border-radius: 26px; display: flex; flex-direction: column; background: linear-gradient(180deg, #0f1f52 0%, var(--green-900) 100%); border: 1px solid rgba(255,255,255,.08); }
.footer-showcase__media { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.footer-showcase__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-showcase__panel { padding: 24px 26px 26px; }
.footer-showcase__brand { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; color: #fff; line-height: 1.18; margin-bottom: 12px; }
.footer-showcase__panel p { color: #b6bcd6; font-size: .95rem; line-height: 1.65; margin: 0 0 18px; }
.footer-showcase__social { display: flex; gap: 12px; }
.footer-showcase__social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.10); display: grid; place-items: center; color: #fff; transition: background .2s, color .2s, transform .2s; }
.footer-showcase__social a:hover { background: #7ac249; color: #fff; transform: translateY(-3px); }
.footer-showcase__social svg { width: 18px; height: 18px; }

.footer-cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; align-content: start; padding-top: 6px; }
.footer-addr h4:nth-of-type(2) { margin-top: 1.7rem; }
.footer-addr p { color: #b6bcd6; margin: 0; line-height: 1.75; font-size: .98rem; }
.footer-addr a { color: #b6bcd6; }
.footer-addr a:hover { color: #7ac249; }

@media (max-width: 900px) {
  .footer-grid2 { grid-template-columns: 1fr; gap: 40px; }
  .footer-showcase { min-height: 340px; }
}
@media (max-width: 620px) {
  .footer-cols3 { grid-template-columns: 1fr; gap: 26px; }
}
.footer-consult { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.5rem); color: #7ac249 !important; white-space: nowrap; }
.footer-consult .arrow-circle { width: 44px; height: 44px; border-radius: 50%; background: #3f8f5c; display: grid; place-items: center; transition: transform .2s; }
.footer-consult:hover .arrow-circle { transform: rotate(45deg); }
.footer-consult .arrow-circle svg { width: 18px; height: 18px; color: #fff; }

/* Main: brand card + columns */
.footer-main { display: grid; grid-template-columns: 360px 1fr; gap: 46px; }
.footer-card { background: linear-gradient(180deg, rgba(122,194,73,.10), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.09); border-radius: 22px; padding: 30px 30px 34px; box-shadow: 0 20px 40px rgba(0,0,0,.22); }
.site-footer .brand { background-color: transparent; background-position: left center; background-size: contain; width: 234px; height: 66px; border-radius: 0; margin-bottom: 22px; box-shadow: none; }
.footer-contact-list { list-style: none; margin: 0; padding: 4px 0 4px 22px; border-left: 2px solid #7ac249; display: grid; gap: 20px; }
.footer-contact-list li { display: flex; align-items: center; gap: 14px; font-size: .98rem; color: #cfd3e6; }
.footer-contact-list a { color: #cfd3e6; }
.footer-contact-list a:hover { color: #7ac249; }
.footer-contact-list .ci { width: 38px; height: 38px; border-radius: 50%; background: #7ac249; display: grid; place-items: center; flex: none; }
.footer-contact-list .ci svg { width: 18px; height: 18px; color: #fff; }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-content: start; padding-top: 8px; }
.footer-cols h4, .footer-cols3 h4, .footer-addr h4 { color: #7ac249; font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin: 0 0 1.5rem; position: relative; padding-bottom: .7rem; }
.footer-cols h4::after, .footer-cols3 h4::after, .footer-addr h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 3px; border-radius: 2px; background: #7ac249; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; font-size: .98rem; }
.site-footer a { color: #b6bcd6; transition: color .2s, transform .2s; }
.site-footer a:hover { color: #7ac249; }
.footer-links a { display: inline-block; }
.footer-links a:hover { transform: translateX(3px); }
.footer-hours { list-style: none; padding: 0; margin: 0; display: grid; gap: .95rem; font-size: .98rem; }
.footer-hours li { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.footer-hours .day { color: #cfd3e6; }
.footer-hours .time { color: #9aa2c4; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: clamp(40px,5vw,58px); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .92rem; color: #9198bd; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; color: #dfe3f2; font-family: var(--font-head); font-weight: 500; font-size: .88rem; transition: background .2s, border-color .2s, color .2s; }
.footer-social a:hover { background: #7ac249; border-color: #7ac249; color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 16px; height: 16px; }
@media (max-width: 960px) { .footer-main { grid-template-columns: 1fr; } .footer-card { max-width: 420px; } }
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ---------- Real photos ---------- */
.media-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.hero-photo-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.18); }
.hero-photo-card img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.card__photo { margin: -30px -30px 20px; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; height: 190px; background: var(--mint-100); }
.card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-ico { width: 76px; height: 76px; border-radius: 18px; background: var(--mint-100); display: grid; place-items: center; margin-bottom: 1.1rem; }
.svc-ico img { width: 46px; height: 46px; object-fit: contain; }
.step__img { height: 120px; margin: 0 auto .9rem; display: block; }
.step__img img { height: 120px; width: auto; object-fit: contain; display: block; margin: 0 auto; }
.tote-photo { background: var(--mint-50); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.tote-photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tote-photo img { height: 160px; width: auto; margin: 0 auto 1rem; object-fit: contain; }
.tote-photo h3 { font-size: 1.1rem; margin: 0 0 .3rem; }
.tote-photo p { color: var(--ink-500); font-size: .92rem; margin: 0; }
.client-logo { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 22px; box-shadow: var(--shadow-sm); display: grid; place-items: center; min-width: 120px; }
.client-logo img { height: 46px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
.client-logo:hover img { filter: none; opacity: 1; }
/* Evenly-spaced client logo row with dividers */
.logo-row { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 34px; }
.logo-row__item { display: grid; place-items: center; padding: 40px 18px; border-right: 1px solid var(--line); }
.logo-row__item:last-child { border-right: none; }
.logo-row__item img { height: 58px; width: auto; max-width: 180px; object-fit: contain; transition: transform .3s ease; }
.logo-row__item:hover img { transform: scale(1.06); }
@media (max-width: 900px) {
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .logo-row__item { padding: 30px 14px; }
  .logo-row__item:nth-child(3n) { border-right: none; }
  .logo-row__item:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .logo-row__item:nth-child(3n) { border-right: 1px solid var(--line); }
  .logo-row__item:nth-child(2n) { border-right: none; }
  .logo-row__item img { height: 46px; }
}

/* Auto-scrolling client logo marquee — elevated framed panel */
.logo-marquee { position: relative; overflow: hidden; width: 100%; background: transparent; border: none; box-shadow: none; padding: 30px 0; }
.logo-marquee__inner { position: relative; overflow: hidden; max-width: var(--wrap); margin: 0 auto; padding: 0 14px; }
.logo-marquee__inner::before, .logo-marquee__inner::after { content: ""; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none; }
.logo-marquee__inner::before { left: 0; background: linear-gradient(90deg, #fff 25%, transparent); }
.logo-marquee__inner::after { right: 0; background: linear-gradient(270deg, #fff 25%, transparent); }
.logo-marquee__track { display: flex; align-items: center; width: max-content; animation: logoScroll 34s linear infinite; }
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__item { flex: none; display: grid; place-items: center; margin-right: 0; padding: 0 52px; border-right: 1px solid rgba(19,37,101,.08); }
.logo-marquee__item img { height: 104px; width: auto; max-width: 210px; object-fit: contain; transition: transform .3s ease; }
.logo-marquee__item:hover img { transform: scale(1.07); }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes logoSwap {
  0% { transform: translateX(0) scaleX(1); filter: blur(0); opacity: 1; }
  45% { transform: translateX(-14px) scaleX(1.4); filter: blur(6px); opacity: .15; }
  55% { transform: translateX(14px) scaleX(1.4); filter: blur(6px); opacity: .15; }
  100% { transform: translateX(0) scaleX(1); filter: blur(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .logo-marquee__track { animation: none; } }
.pay-badge { height: 40px; width: auto; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Service Area (What We Do) — two-column ---------- */
.svc-area { position: relative; overflow: hidden; background: #fff; }
.svc-area .wrap { position: relative; z-index: 2; }

/* Animated decorative background — large soft blob (parallax) + sparkles */
.svc-deco { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.deco-blob { position: absolute; left: -4%; top: -5%; width: 66%; max-width: 1040px; height: auto; opacity: .9; will-change: transform; }
.deco-blob svg { width: 100%; height: auto; display: block; animation: decoFloat 12s ease-in-out infinite; }
.deco-star { position: absolute; color: var(--green-500); animation: decoTwinkle 4.5s ease-in-out infinite; }
.deco-star--a { left: 6%; top: 48%; width: 34px; animation-delay: 0s; }
.deco-star--b { left: 12%; top: 64%; width: 22px; animation-delay: 1.2s; }
.deco-star--c { left: 3.5%; top: 74%; width: 16px; animation-delay: 2.1s; }
.deco-star--d { left: 20%; top: 30%; width: 20px; color: var(--steel); animation-delay: .6s; }
@keyframes decoFloat { 0%,100% { transform: translateY(0) } 50% { transform: translateY(26px) } }
@keyframes decoTwinkle { 0%,100% { transform: scale(.75) rotate(0); opacity: .3 } 50% { transform: scale(1.15) rotate(25deg); opacity: .8 } }
@media (prefers-reduced-motion: reduce) { .deco-blob, .deco-star { animation: none !important; } }

.svc-area__grid { display: grid; grid-template-columns: 5fr 6fr; gap: 40px; align-items: start; }

/* Left intro + feature card */
.svc-intro h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.svc-intro > p { color: var(--ink-500); font-size: 1.06rem; max-width: 46ch; }
.svc-feature-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 30px; margin-top: 30px; }
.svc-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; }
.svc-feature-list .feat { display: flex; gap: .6rem; align-items: center; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink-900); }
.svc-feature-list .feat svg { flex: none; width: 24px; height: 24px; color: var(--green-600); }
.svc-feature-img { margin-top: 26px; border-radius: var(--r-md); overflow: hidden; }
.svc-feature-img img { width: 100%; height: 240px; object-fit: cover; display: block; }

/* Right stacked horizontal cards — photo floats full-height on the right */
.svc-hcards { display: grid; gap: 26px; }
.svc-hcard { position: relative; overflow: hidden; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 38px 40px 36px; min-height: 300px; transition: transform .3s ease, box-shadow .3s ease; }
.svc-hcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-hcard:hover .svc-hcard__photo img { transform: scale(1.05); }
.svc-hcard__body { position: relative; z-index: 1; max-width: 50%; display: flex; flex-direction: column; align-items: flex-start; min-height: 224px; }
.svc-hcard__ico { width: 66px; height: 66px; border-radius: 16px; background: var(--mint-100); display: grid; place-items: center; margin-bottom: 1.1rem; }
.svc-hcard__ico img { width: 38px; height: 38px; object-fit: contain; }
.svc-hcard__ico svg { width: 34px; height: 34px; color: var(--green-600); }
.svc-hcard h3 { margin: 0 0 .55rem; font-size: 1.4rem; }
.svc-hcard p { color: var(--ink-500); font-size: .95rem; margin: 0 0 1.4rem; }
.svc-hcard .btn { margin-top: auto; }
.svc-hcard__photo { position: absolute; top: 18px; right: 18px; bottom: 18px; width: 46%; border-radius: 20px; overflow: hidden; box-shadow: 0 14px 34px rgba(19,37,101,.20); }
.svc-hcard__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }

@media (max-width: 1040px) {
  .svc-area__grid { grid-template-columns: 1fr; }
  .svc-feature-card { max-width: 620px; }
}
@media (max-width: 640px) {
  .svc-hcard { padding: 26px 24px; min-height: 0; }
  .svc-hcard__body { max-width: none; min-height: 0; }
  .svc-hcard__photo { position: static; width: auto; margin-top: 20px; height: 200px; }
  .svc-feature-list { grid-template-columns: 1fr; }
}

/* ---------- Service cards v2 (photo + include list + number) ---------- */
.svc2-head { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; margin-bottom: 46px; }
.svc2-head h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin: 0; }
.svc2-head__intro p { color: var(--ink-500); font-size: 1.05rem; margin: 0 0 1.1rem; }
.svc2-head__intro .rule { height: 1px; background: var(--line); width: 100%; }
.svc2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.svc2-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.svc2-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc2-card__photo { overflow: hidden; }
.svc2-card__photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform .5s ease; }
.svc2-card:hover .svc2-card__photo img { transform: scale(1.05); }
.svc2-card__body { padding: 30px 32px 34px; }
.svc2-card h3 { font-size: 1.5rem; margin: 0 0 .5rem; }
.svc2-card__text { color: var(--ink-500); font-size: .94rem; margin: 0 0 1.1rem; }
.svc2-include { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink-900); margin-bottom: .8rem; }
.svc2-include svg { width: 22px; height: 22px; color: #7ac249; }
.svc2-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .6rem; }
.svc2-list li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink-700); }
.svc2-list svg { flex: none; width: 22px; height: 22px; color: var(--green-600); }
.svc2-num { position: absolute; right: 20px; top: 20px; min-width: 58px; height: 50px; padding: 0 12px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); border-radius: 14px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--green-600); box-shadow: var(--shadow-sm); }
@media (max-width: 1080px) { .svc2-grid { grid-template-columns: 1fr; } .svc2-head { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 560px) {
  .svc2-card__body { padding: 24px 22px 28px; }
}

/* Service slider */
.svc2-slider { position: relative; }
.svc2-viewport { overflow: hidden; padding: 6px; margin: -6px; }
.svc2-track { display: flex; gap: 30px; transition: transform .55s cubic-bezier(.2,.7,.2,1); touch-action: pan-y; }
.svc2-track > .svc2-card { flex: 0 0 calc((100% - 30px) / 2); }
.svc2-nav { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }
.svc2-nav button { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--green-600); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: background .2s, color .2s, transform .2s, opacity .2s; }
.svc2-nav button:hover { background: #7ac249; color: #fff; border-color: #7ac249; transform: translateY(-2px); }
.svc2-nav button svg { width: 22px; height: 22px; }
.svc2-nav button:disabled { opacity: .35; cursor: default; transform: none; background: #fff; color: var(--green-600); border-color: var(--line); }
@media (max-width: 1080px) { .svc2-track > .svc2-card { flex: 0 0 100%; } }

/* ---------- Totes We Clean (colored media + white body) ---------- */
.totes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tote-tile { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.tote-tile:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tote-tile__media { position: relative; height: 240px; display: grid; place-items: center; overflow: hidden; }
.tote-tile--garbage .tote-tile__media { background: linear-gradient(160deg, #23398a 0%, #0d1b47 100%); }
.tote-tile--recycle .tote-tile__media { background: linear-gradient(160deg, #2f7fc7 0%, #14416f 100%); }
.tote-tile--organic .tote-tile__media { background: linear-gradient(160deg, #52b06e 0%, #1c6b3f 100%); }
.tote-tile__media::before { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.22), transparent 66%); }
.tote-tile__img { position: relative; z-index: 1; height: 185px; width: auto; object-fit: contain; filter: drop-shadow(0 18px 26px rgba(0,0,0,.32)); transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.tote-tile:hover .tote-tile__img { transform: translateY(-8px) scale(1.05); }
.tote-tile__n { position: absolute; top: 18px; right: 22px; z-index: 2; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: rgba(255,255,255,.4); }
.tote-tile__body { padding: 26px 28px 30px; display: flex; flex-direction: column; align-items: flex-start; }
.tote-tile__tag { display: inline-flex; font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .8rem; border-radius: var(--r-pill); margin-bottom: .9rem; }
.tote-tile--garbage .tote-tile__tag { background: #e6e9f5; color: var(--green-600); }
.tote-tile--recycle .tote-tile__tag { background: #e3f0fb; color: #1c6ba8; }
.tote-tile--organic .tote-tile__tag { background: #e4f6ea; color: #2f8f5c; }
.tote-tile h3 { color: var(--ink-900); font-size: 1.45rem; margin: 0 0 .5rem; }
.tote-tile p { color: var(--ink-500); font-size: .96rem; margin: 0 0 1.2rem; }
.tote-tile__link { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 600; font-size: .95rem; margin-top: auto; }
.tote-tile--garbage .tote-tile__link { color: var(--green-600); }
.tote-tile--recycle .tote-tile__link { color: #1c6ba8; }
.tote-tile--organic .tote-tile__link { color: #2f8f5c; }
.tote-tile__link svg { width: 18px; height: 18px; transition: transform .25s; }
.tote-tile:hover .tote-tile__link svg { transform: translateX(5px); }
@media (max-width: 980px) {
  .totes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .totes-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ---------- Our Process (sticky left + scrolling numbered cards) ---------- */
/* dark navy background for the process section */
.process-dark { position: relative; margin: 50px 14px; border-top: 4px solid #7ac249; border-radius: 30px; background: linear-gradient(180deg, #0b1533 0%, var(--green-900) 100%); }
.process-dark .eyebrow { background: rgba(122,194,73,.16); color: #8fd15f; }
.process-dark .section-head h2 { color: #fff; }
.process-dark .section-head p { color: #b6bcd6; }
.process-dark .center { color: #cfd3e6; }
.process-dark .center a { color: #8fd15f; }
.process-dark .wproc__left h2 { color: #fff; }
.process-dark .wproc__left > p { color: #b6bcd6; }
.process-dark .wproc__link { color: #eef1ff; }

.wproc { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: start; }
.wproc__left { position: sticky; top: 110px; align-self: start; }
.wproc__left h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 0 0 1rem; }
.wproc__left > p { color: var(--ink-500); font-size: 1.06rem; max-width: 42ch; margin: 0 0 1.6rem; }
.wproc__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.wproc__img img { width: 100%; height: 300px; object-fit: cover; display: block; }
.wproc__link { display: inline-flex; align-items: center; gap: 12px; margin-top: 1.6rem; font-family: var(--font-head); color: var(--ink-900); font-weight: 500; }
.wproc__link b { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.wproc__link .lc { width: 38px; height: 38px; border-radius: 10px; background: #7ac249; color: #fff; display: grid; place-items: center; flex: none; }
.wproc__link .lc svg { width: 18px; height: 18px; }

.wproc__cards { display: grid; gap: 26px; }
.wcard { position: relative; overflow: hidden; background: var(--mint-50); border: 1px solid var(--line); border-radius: 22px; padding: 40px 40px 38px; transition: box-shadow .3s, transform .3s, background .3s; }
.wcard:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.wcard__num { position: absolute; top: 26px; right: 34px; font-family: var(--font-head); font-weight: 800; font-size: 4.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(19,37,101,.14); }
.wcard__ico { width: 76px; height: 76px; border-radius: 16px; background: #e2e8f8; display: grid; place-items: center; color: var(--green-600); transition: background .4s ease, color .4s ease; }
.wcard__ico svg { width: 36px; height: 36px; }
.wcard__rule { height: 2px; width: 230px; max-width: 100%; margin: 30px 0 22px; background: linear-gradient(90deg, #7ac249 0 64px, var(--line) 64px); transition: background .4s ease; }
.wcard h3 { font-size: 1.4rem; margin: 0 0 .6rem; }
.wcard p { color: var(--ink-500); font-size: .98rem; margin: 0; }
/* active card (current scroll step) */
.wcard.is-active { background: #fff; border-color: #7ac249; box-shadow: var(--shadow-lg); }
.wcard.is-active .wcard__ico { background: #7ac249; color: #fff; }
.wcard.is-active .wcard__num { -webkit-text-stroke: 1.5px #7ac249; }
.wcard.is-active .wcard__rule { background: #7ac249; }
@media (max-width: 900px) {
  .wproc { grid-template-columns: 1fr; gap: 40px; }
  .wproc__left { position: static; }
  .wproc__img { display: none; }
}

/* ---------- Floating white header (home) ---------- */
.btn--dark { background: var(--green-900); color: #fff; box-shadow: 0 8px 20px rgba(10,21,51,.28); }
.btn--dark:hover { background: #060f2b; color: #fff; transform: translateY(-2px); }
.btn--dark svg, .btn--accent svg { width: 16px; height: 16px; }

.site-header--float { position: sticky; top: 0; z-index: 50; margin-top: 0; margin-bottom: 14px; background: linear-gradient(180deg, #0b1533 0%, var(--green-900) 100%); border: none; box-shadow: 0 6px 24px rgba(19,37,101,.22); }
.site-header--float .nav { background: transparent; border-radius: 0; box-shadow: none; padding: 8px 22px; min-height: 104px; }
/* brand: white logo on a navy rounded badge so it shows on the white bar */
.site-header--float .brand { background-color: transparent; background-position: left center; background-size: contain; width: 300px; height: 90px; border-radius: 0; box-shadow: none; }
/* Dark solid header (interior pages): put the logo on a white badge so it's visible */
.site-header:not(.site-header--float) .brand { background-color: #fff; background-position: center; background-size: 90% auto; border-radius: 12px; width: 264px; height: 78px; }
.site-header:not(.site-header--float) .nav { min-height: 92px; }
.site-header--float .nav__links > li { display: flex; align-items: center; }
.site-header--float .nav__links > li:not(:last-child)::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #7ac249; margin-left: 4px; flex: none; }
.site-header--float .nav__links > li > a { color: #fff; font-weight: 600; font-size: .92rem; }
.site-header--float .nav__links > li > a:hover, .site-header--float .nav__links > li.is-active > a { color: #8fd15f; background: transparent; }
.site-header--float .header-phone { color: #fff; }
.site-header--float .phone-badge { width: 44px; height: 44px; border-radius: 50%; background: #7ac249; color: #fff; display: grid; place-items: center; flex: none; }
.site-header--float .phone-badge svg { width: 20px; height: 20px; }
.site-header--float .nav__toggle { border-color: var(--line); background: var(--mint-50); }
.site-header--float .nav__toggle svg { color: var(--ink-900); }
.header-phone { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
@media (max-width: 1024px) { .header-phone { display: none; } }
@media (max-width: 1024px) {
  .site-header--float .nav__links { background: #fff; border-radius: 0 0 16px 16px; }
  .site-header--float .nav__links > li:not(:last-child)::after { display: none; }
  .site-header--float .nav__links > li > a { color: var(--ink-900); }
  .site-header--float .dropdown a { color: var(--ink-700); }
}

/* ---------- Hero slider banner ---------- */
.hero-band { padding: 0; }
.hero-slider { position: relative; min-height: 600px; height: 82vh; max-height: 840px; margin: 0 14px; border-radius: 30px; display: flex; align-items: center; overflow: hidden; color: #fff; }
/* 100px gap between the banner and the first section (Why Choose Us) */
.hero-band + .section { padding-top: 100px; }
.hero-slider .wrap { position: relative; z-index: 2; width: 100%; }
.hero-slider__bgs { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.1); transition: opacity 1.3s ease, transform 7s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slider::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(8,17,43,.88) 0%, rgba(11,23,58,.66) 46%, rgba(13,27,71,.22) 100%); }
.hero-slider__inner { max-width: 640px; padding: 60px 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: #fff; font-family: var(--font-head); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; margin-bottom: 1.2rem; }
.hero-eyebrow svg { width: 20px; height: 20px; color: #7ac249; }
.hero-slider h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.05; margin: 0 0 1rem; letter-spacing: -.01em; }
.hero-divider { width: 130px; height: 2px; background: rgba(255,255,255,.45); margin: 0 0 1.5rem; }
.hero-slider p { color: #dbe1f2; font-size: 1.16rem; max-width: 46ch; margin: 0 0 1.9rem; }
.hero-slider__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.tw { color: #8fd15f; white-space: nowrap; }
.tw::after { content: "|"; color: #fff; margin-left: 3px; animation: twBlink 1s steps(1) infinite; font-weight: 400; }
@keyframes twBlink { 50% { opacity: 0; } }
.hero-dots { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 12px; }
.hero-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.75); background: transparent; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.hero-dots button.active { background: #7ac249; border-color: #7ac249; transform: scale(1.2); }
@media (max-width: 640px) {
  .hero-slider { border-radius: 22px; height: auto; min-height: 0; }
  .hero-slider__inner { padding: 56px 20px; } .tw { white-space: normal; }
  .hero-dots { right: 12px; }
}

/* ---------- Reveal animation (scroll effect) ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.from-left { transform: translateX(-46px); }
.reveal.from-right { transform: translateX(46px); }
.reveal.zoom { transform: scale(.94); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__illus { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav__cta .btn--primary { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--green-800); border-bottom: 1px solid rgba(255,255,255,.1);
    padding: .6rem var(--gutter) 1.2rem; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links > li > a { padding: .8rem .4rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 .4rem 1rem; min-width: 0; }
  .dropdown a { padding: .5rem .4rem; color: #c3c9e6; }
  .dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile header + hamburger menu ---------- */
@media (max-width: 1024px) {
  .site-header--float .nav { min-height: 90px; padding: 8px 16px; }
  .site-header--float .brand { width: 260px; height: 74px; }
}
@media (max-width: 1024px) {
  .site-header--float .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 4px 0 8px; border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 34px rgba(19,37,101,.18); overflow: hidden;
  }
  .site-header--float .nav__links > li { display: block; width: 100%; border-top: 1px solid rgba(19,37,101,.08); }
  .site-header--float .nav__links > li:first-child { border-top: none; }
  .site-header--float .nav__links > li > a {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: .95rem 20px; font-size: 1rem; font-weight: 600; color: var(--ink-900);
  }
  .site-header--float .nav__links > li > a .caret {
    width: 30px; height: 30px; padding: 6px; margin-left: auto; flex: none; border-radius: 8px;
    background: rgba(19,37,101,.06); color: var(--ink-700); opacity: 1;
    transition: transform .25s ease, background .2s ease, color .2s ease;
  }
  .site-header--float .nav__links > li.is-active > a { color: #669e37; }
  /* sub-menu collapsed by default; opens only when the <li> gets .open (caret tap) */
  .site-header--float .dropdown {
    max-height: 0; overflow: hidden; padding: 0 20px 0 36px;
    background: rgba(19,37,101,.03); transition: max-height .3s ease, padding .3s ease;
  }
  .site-header--float .nav__links > li.open > .dropdown { max-height: 440px; padding: .35rem 20px .5rem 36px; }
  .site-header--float .nav__links > li.open > a .caret { transform: rotate(180deg); background: #7ac249; color: #fff; }
  .site-header--float .dropdown a { display: block; padding: .55rem 0; font-size: .94rem; color: var(--ink-700); }
  .site-header--float .dropdown a:hover { background: transparent; color: #669e37; }
}
@media (max-width: 420px) {
  .site-header--float .brand { width: 200px; height: 58px; }
  .site-header--float .nav { min-height: 74px; padding: 6px 12px; }
  .nav__toggle { width: 42px; height: 40px; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar__left { gap: .9rem; }
}

/* ---------- Why Choose Us bento (service section) ---------- */
.wcu { position: relative; overflow: hidden; }
.wcu > .wrap { position: relative; z-index: 1; }
.wcu__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; will-change: transform; }
.wcu__bg img { position: absolute; top: 50%; left: 50%; width: 100%; height: auto; opacity: .9; transform: translate(-50%, -50%); will-change: transform; }

/* floating decorative shapes (visible animation like the reference) */
.wcu__shape { position: absolute; z-index: 0; pointer-events: none; border-radius: 50%; }
.wcu__shape--dot { width: 26px; height: 26px; background: #7ac249; top: 90px; left: 40px; animation: wcuBounceY 4s ease-in-out infinite; }
.wcu__shape--ring { width: 64px; height: 64px; border: 8px solid rgba(122,194,73,.55); top: 150px; left: 18px; animation: wcuBounceX 6s ease-in-out infinite; }
.wcu__shape--blob { width: 120px; height: 120px; background: radial-gradient(circle at 30% 30%, rgba(122,194,73,.30), rgba(122,194,73,0)); right: 60px; top: 40px; animation: wcuFloatShape 7s ease-in-out infinite; }
@keyframes wcuBounceY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-34px); } }
@keyframes wcuBounceX { 0%,100% { transform: translateX(0); } 50% { transform: translateX(26px); } }
@keyframes wcuFloatShape { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-18px,22px) scale(1.12); } }

.wcu__head { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: end; margin-bottom: 40px; }
.wcu__head h2 { margin: .35rem 0 0; max-width: 16ch; }
.wcu__intro p { margin: 0; color: var(--ink-500); line-height: 1.75; }
.wcu__intro .rule { height: 1px; background: var(--line); margin-top: 20px; }

.wcu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.wcu__photo { grid-column: span 2; }

.wcu__stat { display: flex; flex-direction: column; justify-content: space-between; gap: 26px; }
.wcu__cluster { position: relative; height: 234px; }
.wcu__cluster img { position: absolute; object-fit: cover; box-shadow: 0 16px 36px rgba(19,37,101,.18); }
.wcu__cluster-a { width: 214px; height: 214px; border-radius: 50%; left: 0; top: 10px; z-index: 2; }
.wcu__cluster-b { width: 150px; height: 196px; border-radius: 110px 110px 8px 8px; right: 6px; top: 0; }
.wcu__count h3 { font-size: 60px; line-height: 1; margin: 0; font-family: var(--font-head); font-weight: 800; color: var(--green-600); letter-spacing: -.02em; }
.wcu__count p { margin: .55rem 0 0; color: var(--ink-500); max-width: 24ch; line-height: 1.55; }

.wcu__card { background: #f5f8f2; border: 1px solid #eaf0e3; border-radius: 30px; padding: 44px 40px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.wcu__card:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(19,37,101,.12); }
.wcu__icon { width: 64px; height: 64px; color: var(--accent, #7ac249); display: grid; place-items: center; margin-bottom: 26px; }
.wcu__icon svg { width: 58px; height: 58px; transition: transform .7s ease; }
.wcu__card:hover .wcu__icon svg { transform: rotateY(360deg); }
.wcu__card h3 { font-size: 1.4rem; margin: 0 0 .7rem; color: var(--ink-900); }
.wcu__card p { margin: 0; color: var(--ink-500); line-height: 1.75; }
.wcu__link { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 600; color: var(--green-600); }
.wcu__link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.wcu__card:hover .wcu__link { color: #7ac249; }
.wcu__card:hover .wcu__link svg { transform: translate(2px,-2px); }

.wcu__photo { position: relative; border-radius: 30px; overflow: hidden; min-height: 384px; }
.wcu__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wcu__swoosh { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 110px; display: block; }
.wcu__spark { position: absolute; right: 34px; bottom: 20px; width: 30px; height: 30px; }
.wcu__spark svg { width: 100%; height: 100%; }

@media (max-width: 1080px) {
  .wcu__head { grid-template-columns: 1fr; gap: 16px; }
  .wcu__grid { grid-template-columns: 1fr 1fr; }
  .wcu__photo { grid-column: span 2; }
}
@media (max-width: 620px) {
  .wcu__grid { grid-template-columns: 1fr; }
  .wcu__photo { grid-column: span 1; }
  .wcu__card { padding: 36px 30px; }
  .wcu__count h3 { font-size: 50px; }
}
