/*
Theme Name: Mold Check Theme
Description: Custom premium theme for Mold Check and Inspect
Version: 1.0.0
Author: Mold Check
Text Domain: moldcheck
*/

/* ═══════════════════════════════════════
   DESIGN TOKENS — Forest Green Palette
   ═══════════════════════════════════════ */
:root {
  --forest: #1b2a1b;
  --forest-mid: #2d4a2d;
  --green: #4caf50;
  --green-light: #81c784;
  --green-10: rgba(76,175,80,.1);
  --green-dark: #388e3c;
  --cream: #f1f8e9;
  --white: #ffffff;
  --g100: #f0f0f0;
  --g200: #e0e0e0;
  --g300: #bdbdbd;
  --g500: #616161;
  --g700: #424242;
  --gold-star: #f5a623;
  --font-h: 'DM Serif Display', Georgia, serif;
  --font-b: 'Plus Jakarta Sans', system-ui, sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-full: 100px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-b); color: var(--g700); line-height: 1.7; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-h); color: var(--forest); line-height: 1.2; font-weight: 400; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 80px 0; }
.sec--alt { background: var(--cream); }
.sec--dark { background: var(--forest); color: #fff; }
.sec--dark h2 { color: #fff; }
.sec--dark .sub { color: rgba(255,255,255,.45); }
.label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.sub { font-size: 1rem; color: var(--g500); max-width: 600px; line-height: 1.7; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: var(--r-sm); font-family: var(--font-b); font-size: .88rem;
  font-weight: 600; cursor: pointer; border: none; transition: all .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); box-shadow: 0 8px 24px rgba(76,175,80,.25); }
.btn--forest { background: var(--forest); color: #fff; }
.btn--forest:hover { background: var(--forest-mid); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; }
.btn--ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all .3s var(--ease);
  background: rgba(27,42,27,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hdr.stuck { padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.hdr__inner { display: flex; align-items: center; justify-content: space-between; }
.hdr__logo { height: 42px; width: auto; flex-shrink: 0; transition: height .3s var(--ease); background: transparent !important; }
.hdr.stuck .hdr__logo { height: 34px; }
.hdr__nav { display: flex; align-items: center; gap: 6px; }
.hdr__nav a { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 500; padding: 8px 12px; border-radius: var(--r-sm); transition: all .2s; }
.hdr__nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.hdr__cta { background: var(--green); color: #fff !important; padding: 10px 22px !important; border-radius: var(--r-sm); font-weight: 600 !important; }
.hdr__cta:hover { background: var(--green-dark) !important; }
.hdr__call-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  color: #fff; font-size: .85rem; font-weight: 600; border: none; background: none; cursor: pointer; border-radius: var(--r-sm);
}
.hdr__call-btn:hover { background: rgba(255,255,255,.08); }
.hdr__mob-phone { display: none; }
.hdr__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hdr__burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
@media(max-width:959px) {
  .hdr__nav { display: none; }
  .hdr__mob-phone, .hdr__burger { display: flex; }
}

/* ═══════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════ */
.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.drawer.open { pointer-events: auto; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); opacity: 0; transition: opacity .3s; }
.drawer.open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 300px; background: var(--forest);
  padding: 80px 28px 28px; transform: translateX(100%); transition: transform .3s var(--ease);
  overflow-y: auto; display: flex; flex-direction: column; gap: 4px;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; padding: 8px; }
.drawer__panel a { color: rgba(255,255,255,.7); font-size: .95rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.drawer__panel a:hover { color: var(--green-light); }
.drawer__phones { margin-top: auto; display: flex; flex-direction: column; gap: 8px; padding-top: 20px; }
.drawer__ph { display: flex; flex-direction: column; padding: 14px; background: rgba(255,255,255,.05); border-radius: var(--r-md); }
.drawer__ph-region { font-size: .72rem; font-weight: 600; color: var(--green-light); text-transform: uppercase; letter-spacing: .05em; }
.drawer__ph-num { font-size: 1rem; font-weight: 700; color: #fff; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  padding: 160px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(170deg, rgba(27,42,27,.85), rgba(27,42,27,.9)), url('') no-repeat center/cover;
  color: #fff;
}
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--1 { width: 600px; height: 600px; top: -200px; right: -200px; background: radial-gradient(circle, rgba(76,175,80,.08), transparent); }
.hero__glow--2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(129,199,132,.06), transparent); }
.hero__grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; }
.hero h1 em { color: var(--green-light); font-style: italic; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.55); margin-top: 16px; line-height: 1.7; max-width: 520px; }
.hero__btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-full); font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.6); }
.chip svg { width: 14px; height: 14px; color: var(--green-light); }

/* Hero Card */
.hero__card {
  background: rgba(27,42,27,.5); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(76,175,80,.12); border-radius: var(--r-lg); padding: 28px; color: #fff;
}
.hero__card-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-light); margin-bottom: 16px; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__stat-num { font-family: var(--font-h); font-size: 2rem; color: #fff; line-height: 1.1; }
.hero__stat-lbl { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 2px; }
.hero__stars { margin-top: 16px; display: flex; align-items: center; gap: 4px; }
.hero__stars svg { width: 16px; height: 16px; fill: var(--gold-star); }
.hero__stars span { font-size: .85rem; color: rgba(255,255,255,.5); margin-left: 4px; }
@media(max-width:859px) {
  .hero { padding: 100px 0 40px; }
  .hero__glow { display: none; }
  .hero__grid { display: flex !important; flex-direction: column; gap: 24px; }
  .hero h1 { font-size: 1.75rem !important; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .hero__card { background: rgba(27,42,27,.6) !important; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .hero__stats { gap: 8px; }
  .hero__stat-num { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust { background: var(--cream); padding: 14px 0; border-bottom: 1px solid var(--g200); }
.trust__row { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust__item { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--forest); }
.trust__item svg { width: 16px; height: 16px; color: var(--green); }

/* ═══════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════ */
.page-hero {
  padding: 140px 0 56px; background: var(--forest); color: #fff;
  position: relative; overflow: hidden; background-size: cover; background-position: center;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, rgba(255,255,255,.03), transparent); pointer-events: none; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; line-height: 1.15; }
.page-hero .sub { color: rgba(255,255,255,.5); max-width: 600px; margin-top: 12px; }
.crumbs { font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.crumbs a { color: rgba(255,255,255,.35); transition: color .15s; }
.crumbs a:hover { color: var(--green-light); }
.crumbs .sep { opacity: .3; }

/* ═══════════════════════════════════════
   CONTENT + SIDEBAR
   ═══════════════════════════════════════ */
.content { padding: 64px 0; }
.content-grid { display: grid; gap: 48px; grid-template-columns: 1fr 320px; align-items: start; }
@media(max-width:959px) { .content-grid { grid-template-columns: 1fr !important; gap: 32px; } }
.sidebar { position: sticky; top: 100px; }
.sidebar__card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 28px; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.sidebar__card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.sidebar__card p { font-size: .85rem; color: var(--g500); margin-bottom: 16px; }
.sidebar__card .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   PROSE (WordPress editor content)
   ═══════════════════════════════════════ */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.65rem; margin: 48px 0 16px; padding-top: 24px; border-top: 1px solid var(--g200); line-height: 1.25; }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { font-size: 1.25rem; margin: 36px 0 12px; }
.prose p { font-size: .95rem; line-height: 1.8; color: var(--g500); margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 0; margin: 20px 0; list-style: none; }
.prose li { position: relative; padding: 10px 0 10px 32px; font-size: .92rem; color: var(--g500); line-height: 1.7; border-bottom: 1px solid var(--g100); }
.prose li:last-child { border-bottom: none; }
.prose li::before { content: ''; position: absolute; left: 0; top: 16px; width: 18px; height: 18px; border-radius: 50%; background: var(--green-10); border: 2px solid var(--green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234caf50' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }
.prose strong { color: var(--forest); font-weight: 700; }
.prose a { color: var(--green-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--forest); }
.prose img { border-radius: var(--r-lg); margin: 24px 0; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.prose blockquote { margin: 32px 0; padding: 24px 28px; border-left: 4px solid var(--green); background: var(--cream); border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; color: var(--forest); }

/* ═══════════════════════════════════════
   HOMEPAGE SERVICES GRID
   ═══════════════════════════════════════ */
.svc__hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
}
.svc__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card__ico {
  width: 48px; height: 48px; min-width: 48px; border-radius: 14px;
  background: var(--green-10); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; flex-shrink: 0;
}
.card__ico svg { width: 24px; height: 24px; color: var(--green); flex-shrink: 0; }
@media(max-width:639px) {
  .svc__hd { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .card__ico { width: 44px; height: 44px; min-width: 44px; }
  .card__ico svg { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.card {
  display: flex; flex-direction: column; padding: 28px; background: var(--white);
  border: 1px solid var(--g200); border-radius: var(--r-lg); transition: all .3s var(--ease);
  position: relative; text-decoration: none;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,42,27,.08); border-color: var(--green); }
.card::after { content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 3px; background: var(--green); border-radius: 3px 3px 0 0; transform: scaleX(0); transition: transform .3s var(--ease); }
.card:hover::after { transform: scaleX(1); }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--forest); }
.card p { font-size: .85rem; color: var(--g500); line-height: 1.65; flex: 1; }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--forest); margin-top: 14px; }

/* ═══════════════════════════════════════
   STEPS
   ═══════════════════════════════════════ */
.steps__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.step { padding: 32px 24px; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); text-align: center; }
.step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--green-10); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 16px; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .85rem; color: var(--g500); }

/* ═══════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════ */
.feat { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--g100); }
.feat:last-child { border-bottom: none; }
.feat__ico { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--green-10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat__ico svg { width: 22px; height: 22px; color: var(--green); }
.feat h3 { font-size: 1rem; margin-bottom: 4px; }
.feat p { font-size: .85rem; color: var(--g500); line-height: 1.65; }

/* ═══════════════════════════════════════
   WHY US PANEL
   ═══════════════════════════════════════ */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
@media(max-width:859px) { .why__grid { grid-template-columns: 1fr; } }
.why__panel { background: var(--forest); border-radius: var(--r-lg); padding: 32px; color: #fff; }
.why__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why__stat { background: rgba(255,255,255,.06); border-radius: var(--r-md); padding: 20px; text-align: center; }
.why__stat-val { font-family: var(--font-h); font-size: 1.8rem; color: var(--green-light); line-height: 1; }
.why__stat-lbl { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 4px; }
.why__quote { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
.why__quote p { font-family: var(--font-h); font-style: italic; font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.why__quote cite { font-size: .78rem; color: rgba(255,255,255,.3); font-style: normal; margin-top: 8px; display: block; }

/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin-top: 36px; }
.rev { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 28px; }
.rev__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.rev__stars svg { width: 16px; height: 16px; fill: var(--gold-star); }
.rev p { font-size: .9rem; color: var(--g500); line-height: 1.7; font-style: italic; }
.rev__who { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--g100); }
.rev__av { width: 40px; height: 40px; border-radius: 50%; background: var(--green-10); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green-dark); font-size: .85rem; }
.rev__name { font-weight: 600; color: var(--forest); font-size: .88rem; }
.rev__role { font-size: .75rem; color: var(--g500); }

/* ═══════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.price-card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 32px; text-align: center; transition: all .3s var(--ease); position: relative; }
.price-card:hover { border-color: var(--green); box-shadow: 0 12px 32px rgba(27,42,27,.08); transform: translateY(-4px); }
.price-card--featured { border-color: var(--green); box-shadow: 0 8px 28px rgba(76,175,80,.12); }
.price-card--featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 16px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .05em; }
.price-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.price-card__price { font-family: var(--font-h); font-size: 2.5rem; color: var(--forest); margin: 16px 0; }
.price-card__price span { font-size: .9rem; color: var(--g500); font-family: var(--font-b); }
.price-card__desc { font-size: .85rem; color: var(--g500); margin-bottom: 20px; line-height: 1.65; }
.price-card ul { text-align: left; margin-bottom: 24px; }
.price-card li { padding: 8px 0; font-size: .85rem; color: var(--g500); border-bottom: 1px solid var(--g100); display: flex; align-items: center; gap: 8px; }
.price-card li::before { content: '✓'; color: var(--green); font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-item { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); margin-bottom: 10px; overflow: hidden; transition: all .2s; }
.faq-item:hover { border-color: var(--green); }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 24px; border: none; background: none; cursor: pointer; font-family: var(--font-b); font-size: .95rem; font-weight: 600; color: var(--forest); text-align: left; gap: 16px; }
.faq-q svg { width: 18px; height: 18px; color: var(--green); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a__inner { padding: 0 24px 24px; font-size: .88rem; color: var(--g500); line-height: 1.75; }

/* ═══════════════════════════════════════
   TEAM CARDS
   ═══════════════════════════════════════ */
.team-grid { display: grid; gap: 20px; margin-top: 40px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.team-card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; transition: all .3s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,42,27,.08); border-color: var(--green); }
.team-av { height: 280px; background: var(--cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-av img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.team-card:hover .team-av img { transform: scale(1.04); }
.team-av span { font-family: var(--font-h); font-size: 2.5rem; color: var(--green); }
.team-info { padding: 22px 24px; }
.team-info h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-role { font-size: .82rem; color: var(--green-dark); font-weight: 600; margin-bottom: 8px; }
.team-certs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.team-cert { font-size: .68rem; font-weight: 600; padding: 4px 10px; background: var(--green-10); color: var(--forest); border-radius: var(--r-full); }

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-sec { padding: 80px 0; background: var(--forest) url('') no-repeat center/cover; position: relative; text-align: center; color: #fff; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background: rgba(27,42,27,.85); }
.cta-sec .wrap { position: relative; z-index: 1; }
.cta-sec h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-sec .sub { color: rgba(255,255,255,.45); margin: 12px auto 28px; }
.cta-sec__ph { margin-top: 16px; font-size: .88rem; color: rgba(255,255,255,.4); }
.cta-sec__ph a { color: var(--green-light); font-weight: 700; }

/* ═══════════════════════════════════════
   INLINE CTA
   ═══════════════════════════════════════ */
.inline-cta { margin-top: 48px; padding: 32px; background: var(--forest); border-radius: var(--r-lg); text-align: center; position: relative; overflow: hidden; }
.inline-cta::before { content: ''; position: absolute; width: 300px; height: 300px; top: -150px; right: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(76,175,80,.08), transparent); pointer-events: none; }
.inline-cta h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; position: relative; }
.inline-cta p { color: rgba(255,255,255,.5); font-size: .88rem; margin-bottom: 20px; position: relative; }

/* ═══════════════════════════════════════
   SERVICE HIGHLIGHTS BAR
   ═══════════════════════════════════════ */
.svc-highlights { background: var(--cream); padding: 16px 0; border-bottom: 1px solid var(--g200); }
.svc-highlights .wrap { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: .82rem; font-weight: 600; color: var(--forest); }
.svc-highlights span { display: inline-flex; align-items: center; gap: 6px; }

/* ═══════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; transition: all .3s var(--ease); text-decoration: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,42,27,.08); border-color: var(--green); }
.blog-card__img { height: 220px; overflow: hidden; background: var(--cream); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { font-size: .75rem; color: var(--g500); margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.blog-card__cat { background: var(--green-10); color: var(--green-dark); padding: 3px 10px; border-radius: var(--r-full); font-weight: 600; font-size: .72rem; }
.blog-card__title { font-family: var(--font-h); font-size: 1.15rem; color: var(--forest); margin-bottom: 8px; line-height: 1.3; }
.blog-card__excerpt { font-size: .85rem; color: var(--g500); line-height: 1.65; flex: 1; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--green-dark); margin-top: 14px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.ftr { background: var(--forest); color: rgba(255,255,255,.5); padding: 56px 0 0; }
.ftr__grid { display: grid; gap: 36px; }
@media(min-width:640px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:960px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.ftr__brand p { font-size: .85rem; line-height: 1.7; margin-top: 12px; }
.ftr__logo { height: 40px; margin-bottom: 8px; }
.ftr__socials { display: flex; gap: 10px; margin-top: 16px; }
.ftr__soc { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: all .2s; }
.ftr__soc:hover { background: var(--green); color: #fff; }
.ftr h4 { color: #fff; font-family: var(--font-b); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.ftr ul { display: flex; flex-direction: column; gap: 8px; }
.ftr a { font-size: .85rem; transition: color .15s; }
.ftr a:hover { color: var(--green-light); }
.ftr__btm { text-align: center; padding: 24px 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.06); font-size: .78rem; }

/* ═══════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════ */
.mob-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--white); border-top: 1px solid var(--g200); padding: 10px 16px; display: none; gap: 10px; box-shadow: 0 -4px 16px rgba(0,0,0,.06); }
@media(max-width:959px) { .mob-cta { display: flex; } }
.mob-cta a { flex: 1; text-align: center; justify-content: center; }

/* ═══════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════ */
.btt { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(12px); transition: all .3s; z-index: 80; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.btt.show { opacity: 1; transform: translateY(0); }
.btt:hover { background: var(--green); }
.btt svg { width: 20px; height: 20px; }
@media(max-width:959px) { .btt { bottom: 72px; right: 12px; } }

/* ═══════════════════════════════════════
   TAGS
   ═══════════════════════════════════════ */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { padding: 8px 18px; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-full); font-size: .85rem; font-weight: 600; color: var(--forest); transition: all .2s; }
.tag:hover { background: var(--green-10); border-color: var(--green); }

/* ═══════════════════════════════════════
   VENDOR CARDS
   ═══════════════════════════════════════ */
.vendor-grid { display: grid; gap: 16px; }
@media(min-width:640px) { .vendor-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:960px) { .vendor-grid { grid-template-columns: repeat(3, 1fr); } }
.vendor-card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .2s; }
.vendor-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(27,42,27,.06); }
.vendor-card__logo { height: 120px; display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--cream); border-bottom: 1px solid var(--g200); }
.vendor-card__logo img { max-height: 80px; max-width: 180px; object-fit: contain; }
.vendor-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.vendor-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.vendor-card__links { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.vendor-link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--forest); transition: color .15s; }
.vendor-link:hover { color: var(--green-dark); }

/* ═══════════════════════════════════════
   CAREERS
   ═══════════════════════════════════════ */
.careers-job { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s; }
.careers-job:hover { border-color: var(--green); }
.careers-job__hd { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; gap: 16px; }
.careers-job__toggle { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--g200); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: all .2s; }
.careers-job__toggle svg { width: 16px; height: 16px; color: var(--forest); transition: transform .3s; }
.careers-job.open .careers-job__toggle { background: var(--forest); border-color: var(--forest); }
.careers-job.open .careers-job__toggle svg { color: #fff; transform: rotate(45deg); }
.careers-job__body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.careers-job.open .careers-job__body { max-height: 600px; }
.careers-job__inner { padding: 0 24px 24px; font-size: .88rem; color: var(--g500); line-height: 1.7; border-top: 1px solid var(--g100); padding-top: 20px; }
.careers-tag { display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 600; padding: 4px 12px; background: var(--green-10); color: var(--forest); border-radius: var(--r-full); }

/* ═══════════════════════════════════════
   PHONE CARDS
   ═══════════════════════════════════════ */
.phones-grid { display: grid; gap: 16px; margin-top: 32px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.phone-card { padding: 24px; background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-lg); text-align: center; transition: all .25s var(--ease); }
.phone-card:hover { border-color: var(--green); transform: translateY(-2px); }
.phone-card h3 { font-size: 1rem; margin-bottom: 8px; }
.phone-num { display: block; font-size: 1.15rem; font-weight: 700; color: var(--green-dark); }

/* ═══════════════════════════════════════
   FORM STYLING
   ═══════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media(max-width:639px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--g200); border-radius: var(--r-md); font-family: var(--font-b); font-size: .9rem; color: var(--forest); transition: all .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px var(--green-10); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.mc-anim { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.mc-anim.mc-visible { opacity: 1; transform: translateY(0); }
.mc-anim:nth-child(2) { transition-delay: .08s; }
.mc-anim:nth-child(3) { transition-delay: .16s; }
.mc-anim:nth-child(4) { transition-delay: .24s; }
@keyframes mc-fallback { to { opacity: 1; transform: none; } }
.mc-anim { animation: mc-fallback 0s 3s forwards; }
.mc-anim.mc-visible { animation: none; }

/* ═══════════════════════════════════════
   VISIBILITY & OVERFLOW
   ═══════════════════════════════════════ */
body, html { overflow-x: hidden; max-width: 100vw; }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════ */
@media(max-width:639px) {
  html, body { overflow-x: hidden !important; max-width: 100vw; }
  .wrap { padding: 0 16px; }
  .sec { padding: 48px 0; }
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.35rem; }
  .page-hero { padding: 100px 0 40px; }
  .ftr__grid { grid-template-columns: 1fr !important; gap: 28px; }
  .svc__grid, .steps__grid, .rev-grid, .blog-grid, .team-grid, .vendor-grid, .why__grid, .pricing-grid { grid-template-columns: 1fr !important; }
  .content-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .mob-cta a { padding: 12px 10px; font-size: .82rem; }
  .btn { min-height: 48px; }
  input, select, textarea { font-size: 16px !important; }
}

/* ═══════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════ */
@media print {
  .hdr, .drawer, .mob-cta, .btt, .cta-sec, .ftr { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
