/* ==========================================================================
   Online Packaging Store (OPS) — Landing Page
   Brand green #007146 · Cream #FEF8ED · Professional · Mobile-first
   Class hooks are kept identical to the markup/JS; the visual language
   (cream hero, green feature band, dark-green footer, testimonial cards,
   icon finish grid) is a ground-up redesign.
   ========================================================================== */

:root {
  /* Brand palette */
  --green: #007146;
  --green-600: #006b42;
  --green-700: #005c39;
  --green-900: #00321f;
  --green-soft: rgba(0, 113, 70, .08);
  --green-soft-2: rgba(0, 113, 70, .14);

  --gold: #c98a14;
  --gold-soft: #f6e4bf;

  --cream: #FEF8ED;
  --cream-2: #fbf1dd;
  --cream-line: #efe3cb;

  --bg: #ffffff;
  --bg-soft: var(--cream);

  --line: #e7e0d2;
  --line-2: #d8cfba;

  --text: #15231c;
  --text-soft: #44514a;
  --text-muted: #6c776f;

  --success: #007146;
  --error: #c0392b;

  --shadow-sm: 0 1px 3px rgba(0, 56, 34, .07), 0 1px 2px rgba(0, 56, 34, .05);
  --shadow-md: 0 8px 26px rgba(0, 56, 34, .10), 0 2px 8px rgba(0, 56, 34, .06);
  --shadow-lg: 0 18px 50px rgba(0, 56, 34, .16), 0 6px 16px rgba(0, 56, 34, .08);

  --radius: 14px;
  --radius-lg: 20px;
  --gradient-green: linear-gradient(135deg, #007146 0%, #00583a 60%, #00432c 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.icon { width: 18px; height: 18px; flex-shrink: 0; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 22px; height: 22px; }
.icon-xl { width: 28px; height: 28px; }

/* ============== TOP BAR ============== */
.topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.topbar-group { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; }
.topbar a,
.topbar span:not(.topbar-sep) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .92);
  transition: color .2s;
  vertical-align: middle;
}
.topbar a:hover { color: #fff; }
.topbar .icon { width: 14px; height: 14px; color: #7fd3a9; display: inline-block; }
.topbar-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .22);
  margin: 0 14px;
  vertical-align: middle;
}

/* ============== NAVBAR ============== */
.navbar-custom {
  background: #fff;
  box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(0, 56, 34, .05);
  padding: 13px 0;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.navbar-custom .navbar-brand { padding: 0; }
.navbar-custom .navbar-brand img { height: 50px; width: auto; }
.navbar-custom .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 16px !important;
  position: relative;
  transition: color .2s;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active { color: var(--green) !important; }
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }

/* ============== BUTTONS ============== */
.btn-solid {
  background: var(--green);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 113, 70, .22);
}
.btn-solid:hover {
  background: var(--green-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 113, 70, .3);
}
.btn-solid:active { transform: translateY(0); }

.btn-outline-light-custom {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline-light-custom:hover {
  border-color: #fff;
  color: var(--green-900);
  background: #fff;
}

/* ============== HERO ============== */
@media (min-width: 992px) {
  .hero-left,
  .specs-left {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}

.hero {
  background: var(--cream);
  color: var(--text);
  padding: 64px 0 76px;
  position: relative;
  /* `clip` (not `hidden`) keeps the decorative circles contained WITHOUT
     turning .hero into a scroll container — otherwise the sticky hero-left
     below can't stick to the viewport. */
  overflow: clip;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 113, 70, .10), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201, 138, 20, .10), transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--green-soft-2);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  padding: 7px 15px;
  border-radius: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.35); }
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.14;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -.6px;
  color: var(--green-900);
}
.hero h1 span {
  color: var(--green);
  position: relative;
  white-space: nowrap;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--gold-soft);
  z-index: -1;
  border-radius: 3px;
}
.hero-sub {
  color: var(--text-soft);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 26px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.hero-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--cream-line);
  color: var(--green-700);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.hero-pill:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--cream-line);
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 500;
}

/* ============== HERO GALLERY (main image + thumbnail slider) ============== */
.main-product-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  margin-bottom: 14px;
}
.main-product-img .big-img {
  width: 100%;
  height: auto;            /* true img-fluid — keep natural aspect ratio */
  display: block;
  transition: opacity .3s ease;
}

/* Thumbnail slider (single row, scrolls left↔right) */
.hero-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ht-track {
  display: flex;
  gap: 10px;
  flex: 1 1 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}
.ht-track::-webkit-scrollbar { display: none; }  /* Chrome/Safari */
.thumbnail-img {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.thumbnail-img:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.thumbnail-img.is-active { border-color: var(--green); }
.cursor-pointer { cursor: pointer; }
.ht-nav {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cream-line);
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.ht-nav:hover { background: var(--green); border-color: var(--green); color: #fff; }
.ht-nav .icon { width: 18px; height: 18px; }
.ht-prev .icon { transform: rotate(180deg); }

/* ============== BRAND INTRO (full-width band) ============== */
.brand-intro {
  background: var(--cream);
  padding: 72px 0;
  position: relative;
  overflow: clip;
  border-top: 1px solid var(--cream-line);
}
.brand-intro::before {
  content: '';
  position: absolute;
  top: -160px; right: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 113, 70, .08), transparent 70%);
  pointer-events: none;
}
.brand-intro::after {
  content: '';
  position: absolute;
  bottom: -130px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201, 138, 20, .10), transparent 70%);
  pointer-events: none;
}
.brand-intro > .container { position: relative; z-index: 2; }
.brand-intro .hero-badge { margin-bottom: 20px; }
.brand-intro h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.6px;
  margin: 0 0 16px;
  color: var(--green-900);
}
.brand-intro h1 span {
  color: var(--green);
  position: relative;
  white-space: nowrap;
}
.brand-intro h1 span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--gold-soft);
  z-index: -1;
  border-radius: 3px;
}
.brand-intro .hero-sub {
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 0 24px;
}
.brand-intro .hero-pills { margin-bottom: 0; }

/* Stat cards (2x2 cluster) */
.brand-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.brand-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.brand-stat-ico {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
}
.brand-stat-ico .icon { width: 24px; height: 24px; }
.brand-stat .num {
  font-size: 27px;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.brand-stat .lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 500;
}

/* ============== QUOTE MODAL ============== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility 0s linear .28s;
}
.quote-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .28s ease, visibility 0s linear 0s;
}
.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 18, .68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.quote-modal-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 2;
  opacity: 0;
  transform: scale(.94) translateY(14px);
  transition: opacity .28s ease, transform .28s ease;
}
.quote-modal.open .quote-modal-wrap {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.quote-modal-dialog {
  position: relative;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quote-modal-dialog::-webkit-scrollbar { width: 0; height: 0; display: none; }
@keyframes qmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qmPop  { from { opacity: 0; transform: scale(.94) translateY(14px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.quote-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1110;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  transition: background .2s, transform .15s;
}
.quote-modal-close:hover { background: var(--cream); transform: rotate(90deg); }
@media (max-width: 480px) {
  .quote-modal-close { top: -10px; right: -4px; width: 34px; height: 34px; }
}
.quote-modal-dialog .contact-card { box-shadow: 0 30px 80px rgba(0, 0, 0, .55); }
body.modal-open { overflow: hidden; }

.product-card { cursor: pointer; }

/* ============== SUCCESS POPUP ============== */
.quote-success-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.quote-success-popup.open { display: flex; }
.qsp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 18, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: qmFade .25s ease;
}
.qsp-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 28px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  animation: qmPop .3s ease;
}
.qsp-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.qsp-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 8px;
}
.qsp-msg { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============== CONTACT CARD (QUOTE) ============== */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-line);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.cc-head {
  background: var(--gradient-green);
  padding: 20px 24px;
}
.cc-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  gap: 12px;
}
.cc-title { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.2px; }
.cc-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #8ff0bd;
}
.cc-online-dot {
  width: 8px;
  height: 8px;
  background: #8ff0bd;
  border-radius: 50%;
  animation: ccPulse 1.8s infinite;
}
@keyframes ccPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.6); }
}
.cc-sub { font-size: 12.5px; color: rgba(255, 255, 255, .7); }

.cc-opts { padding: 16px 18px 0; }
.cc-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: transform .15s ease, filter .15s ease;
}
.cc-opt:hover { transform: translateX(3px); filter: brightness(.99); }
.cc-opt-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cc-opt-ico .icon { width: 18px; height: 18px; }
.cc-opt-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.cc-opt-lbl { font-weight: 600; font-size: 13.5px; line-height: 1.25; }
.cc-opt-sub { font-size: 11.5px; line-height: 1.35; margin-top: 2px; }
.cc-opt-arr { margin-left: auto; opacity: .45; flex-shrink: 0; }
.cc-opt-arr .icon { width: 14px; height: 14px; }

.cc-chat  { background: var(--green-soft); }
.cc-chat  .cc-opt-ico { background: var(--green-soft-2); color: var(--green); }
.cc-chat  .cc-opt-lbl { color: var(--green-900); }
.cc-chat  .cc-opt-sub { color: var(--green); }

.cc-call  { background: var(--cream-2); }
.cc-call  .cc-opt-ico { background: var(--gold-soft); color: var(--gold); }
.cc-call  .cc-opt-lbl { color: var(--green-900); }
.cc-call  .cc-opt-sub { color: var(--text-muted); }

.cc-email { background: var(--green-soft); }
.cc-email .cc-opt-ico { background: var(--green-soft-2); color: var(--green); }
.cc-email .cc-opt-lbl { color: var(--green-900); }
.cc-email .cc-opt-sub { color: var(--text-muted); }

.cc-divider {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  padding: 10px 18px 4px;
  letter-spacing: .3px;
}

.cc-form { padding: 0 18px 20px; }
.cc-flabel {
  display: block;
  font-size: 10.5px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 4px 0 8px;
}
.cc-flabel.mt { margin-top: 14px; }
.cc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.cc-row.full { grid-template-columns: 1fr; }
.cc-row.three { grid-template-columns: 1fr 1fr 1fr; }

.cc-field { display: block; margin-bottom: 10px; }
.cc-fieldset { border: 0; padding: 0; margin: 0 0 10px; min-width: 0; }
.cc-field-lbl {
  display: block;
  font-size: 12.5px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
  padding: 0;
}
.cc-req { color: var(--green); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.cc-radio-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.cc-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cc-radio input { margin: 0; width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
.cc-radio:hover { border-color: var(--green); background: #fff; }
.cc-radio:has(input:checked) {
  border-color: var(--green);
  background: #fff;
  color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 113, 70, .15);
}

.cc-inp {
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cc-inp:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 113, 70, .15);
}
.cc-inp::placeholder { color: #adb3ad; }
select.cc-inp {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23007146'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 34px;
  cursor: pointer;
}
textarea.cc-inp { resize: vertical; min-height: 70px; line-height: 1.5; }

.cc-file-label {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 10px 12px;
  border: 1.5px dashed var(--line-2);
  border-radius: 10px;
  background: var(--cream);
  font-size: 13px;
  color: var(--green);
  cursor: pointer;
  margin-bottom: 8px;
  transition: border-color .2s, background .2s;
}
.cc-file-label:hover { border-color: var(--green); background: #fff; }
.cc-file-label .icon { width: 16px; height: 16px; color: var(--green); }
.cc-file-input { display: none; }

.cc-submit {
  width: 100%;
  margin-top: 6px;
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s;
}
.cc-submit:hover { background: var(--green-700); transform: translateY(-1px); }
.cc-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.cc-submit.is-success { background: var(--success); }
.cc-submit .icon { width: 14px; height: 14px; }

.cc-trust {
  margin-top: 11px;
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cc-trust .icon { color: var(--success); width: 14px; height: 14px; }

@media (max-width: 480px) {
  .cc-opts { padding: 14px 14px 0; }
  .cc-opt { padding: 11px 12px; gap: 10px; }
  .cc-opt-ico { width: 34px; height: 34px; }
  .cc-form { padding: 0 14px 18px; }
  .cc-row { grid-template-columns: 1fr; }
  .cc-row.three { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .cc-radio-row { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .cc-radio { padding: 9px 8px; font-size: 12.5px; gap: 6px; }
}

/* ============== TRUST BAR ============== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
}
.trust-item .icon { color: var(--green); width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 767px) {
  .trust-bar { padding: 16px 0; }
  .trust-item { font-size: 12.5px; gap: 8px; justify-content: center; text-align: left; line-height: 1.25; }
  .trust-item .icon { width: 18px; height: 18px; }
}

/* ============== SECTION COMMON ============== */
.section { padding: 74px 0; }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--gradient-green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 2; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.section-dark .section-label { color: #8ff0bd; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--green-900);
  text-align: center;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -.5px;
}
.section-dark .section-title { color: #fff; }

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.section-dark .section-sub { color: rgba(255, 255, 255, .8); }

/* ============== PRODUCT CARDS ============== */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--green-soft-2);
}
.product-img {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 20px 18px; }
.product-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 6px;
  letter-spacing: -.2px;
}
.product-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 14px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 13.5px;
  font-weight: 600;
  transition: gap .2s, color .2s;
}
.product-link:hover { gap: 9px; color: var(--green-700); }
.product-link .icon { width: 14px; height: 14px; }

.products-cta { text-align: center; margin-top: 40px; }

/* ============== SPECS ============== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.spec-table th,
.spec-table td {
  padding: 13px 18px;
  font-size: 13.5px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }
.spec-table th {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  width: 22%;
  border-bottom-color: var(--green-700);
}
.spec-table td { color: var(--text); }
.spec-table tr:nth-child(even) td { background: var(--cream); }

.finishes-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 18px;
  letter-spacing: -.2px;
}
.finishes-title + .finish-grid { margin-bottom: 28px; }
.finish-grid + .finishes-title { margin-top: 4px; }
.finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.finish-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 18px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  cursor: default;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.finish-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft-2);
}
.finish-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.finish-ico .icon { width: 22px; height: 22px; }
.finish-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .2px;
  line-height: 1.3;
}

/* ============== STEPS ============== */
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  text-align: center;
  height: 100%;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--green-soft-2); }
.step-num {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 30px;
  font-weight: 800;
  color: var(--cream-2);
  line-height: 1;
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--green-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.step-card h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--green-900);
  letter-spacing: -.2px;
}
.step-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ============== FEATURES (DARK GREEN) ============== */
.feature-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: background .25s, border-color .25s, transform .25s;
}
.feature-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(143, 240, 189, .4);
  transform: translateY(-4px);
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.2px;
}
.feature-card p { font-size: 13.5px; color: rgba(255, 255, 255, .78); line-height: 1.6; margin: 0; }

/* ============== TESTIMONIALS ============== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  height: 100%;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-soft-2); }
.t-quote {
  font-size: 56px;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--green-soft-2);
  position: absolute;
  top: 14px; right: 22px;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars .icon { width: 17px; height: 17px; color: var(--gold); }
.t-text {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 22px;
}
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-soft-2);
}
.t-name { font-size: 14.5px; font-weight: 600; color: var(--green-900); line-height: 1.2; }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 991px) {
  .t-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ============== FAQ ============== */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .25s, border-color .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--green); }
.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background .2s, color .2s;
  gap: 16px;
}
.faq-q:hover { background: var(--cream); }
.faq-item.open .faq-q { color: var(--green); }
.faq-q .icon {
  color: var(--green);
  transition: transform .3s;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 22px;
}
.faq-a-inner {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  padding-bottom: 18px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--gradient-green);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.cta-band p { color: rgba(255, 255, 255, .82); margin-bottom: 26px; font-size: 15px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .72);
  padding: 58px 0 22px;
}
.footer .brand-row { margin-bottom: 14px; }
.footer .brand-row img { height: 56px; width: auto; }
.footer p { font-size: 13.5px; line-height: 1.65; margin-bottom: 16px; }
.footer h3 {
  color: #8ff0bd;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 9px; }
.footer ul a {
  color: rgba(255, 255, 255, .68);
  font-size: 13.5px;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 12px;
}
.footer-contact .icon { color: #8ff0bd; margin-top: 2px; width: 16px; height: 16px; }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-socials { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
}
.footer-socials a:hover { background: var(--green); transform: translateY(-2px); }
.footer-socials .icon { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  margin-top: 30px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
}
.footer-bottom-links a { color: rgba(255, 255, 255, .55); margin-left: 16px; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ============== FLOATING CALL ============== */
.float-call {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 113, 70, .45);
  animation: floatPulse 2.4s infinite;
}
.float-call .icon { width: 26px; height: 26px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(0, 113, 70, .45); }
  50%      { box-shadow: 0 6px 30px rgba(0, 113, 70, .7), 0 0 0 10px rgba(0, 113, 70, .12); }
}

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============== RESPONSIVE ============== */
@media (max-width: 991px) {
  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 15.5px; }
  .navbar-custom .navbar-collapse {
    padding: 14px 0 4px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }
  .navbar-custom .nav-link { padding: 10px 0 !important; }
  .navbar-custom .nav-link::after { display: none; }
  .navbar-custom .btn-solid { margin-top: 8px; }
}

@media (max-width: 767px) {
  .topbar { font-size: 12px; padding: 8px 0; }
  .topbar-inner { justify-content: center; text-align: center; row-gap: 4px; }
  .topbar-group { justify-content: center; }
  .topbar-sep { margin: 0 8px; }
  .section { padding: 52px 0; }
  .brand-intro { padding: 52px 0; }
  .brand-stat { padding: 16px 14px; gap: 12px; }
  .brand-stat-ico { width: 44px; height: 44px; }
  .brand-stat .num { font-size: 23px; }
  .hero-stats { gap: 14px 18px; }
  .hero-stat { flex: 0 0 calc(50% - 9px); }
  .hero-stat .num { font-size: 22px; }
  .finish-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .finish-item { padding: 14px 6px; }
  .finish-name { font-size: 11.5px; }
  .step-card { padding: 22px 14px; }
  .step-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .step-card h3 { font-size: 14px; }
  .step-card p { font-size: 12px; }
  .float-call { width: 52px; height: 52px; bottom: 16px; left: 16px; }
  .float-call .icon { width: 24px; height: 24px; }
  .footer { padding: 40px 0 18px; text-align: left; }
  .footer-bottom { text-align: center; }
  .footer-bottom-links { display: block; margin-top: 8px; }
  .footer-bottom-links a { margin: 0 8px; }
  .navbar-custom .btn-solid { padding: 9px 18px; font-size: 13.5px; }
}

@media (max-width: 480px) {
  .hero { padding: 36px 0 48px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-pill { font-size: 11.5px; padding: 6px 12px; }
  .brand-stats { grid-template-columns: 1fr; }
  .spec-table th, .spec-table td { padding: 11px 12px; font-size: 12.5px; }
  .topbar { font-size: 11.5px; padding: 7px 0; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-group { justify-content: center; gap: 4px 10px; }
  .topbar-sep { margin: 0 6px; }
}

@media print {
  .topbar, .navbar-custom, .float-call, .cta-band, .footer { display: none; }
}
