/* Eco-Premium Catalog - styles.css
   White + Eco green aesthetic (no dark theme).
*/

:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2:#f8fafc;
  --text:#0f172a;
  --navy:#0b1220;
  --danger:#ef4444;
  --muted:#64748b;
  --border:#e2e8f0;

  --green:#00D26A;
  --green-d:#00B85C;
  --green-2:#00D26A;
  --green-rgb: 0, 210, 106;
  --green2-rgb: 0, 210, 106;

  /* Brand tokens (keep greens consistent across CTAs + price badge) */
  --brand-green-grad: linear-gradient(180deg, rgba(var(--green-rgb),.98), rgba(var(--green2-rgb),.98));
  --brand-green-shadow: 0 18px 50px rgba(2,6,23,.22);
  --brand-green-shadow-hover: 0 22px 60px rgba(2,6,23,.26);

  --shadow: 0 18px 50px rgba(2, 6, 23, .10);
  --shadow-soft: 0 10px 28px rgba(2, 6, 23, .08);

  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --container: 1180px;

  /* Prevent fixed WhatsApp CTA from covering the very bottom of the page */
  --wa-footer-safe: 96px;

  /* Seamless section edges (background-only blend) */
  --blend-edge: 84px;
}

@media (max-width: 860px){
  :root{ --wa-footer-safe: 136px; }
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6{
  font-family: inherit;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-wrap: balance;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, textarea, select{ font:inherit; }

::selection{ background: rgba(var(--green-rgb),.18); }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Wider container for large diagrams/media (used on Bagasse Cycle page) */
.container-wide{
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

/* Mobile breathing room: keep side paddings comfortable while giving content a bit more width */
@media (max-width: 520px){
  .container,
  .container-wide{
    width: calc(100% - 32px);
  }
}

.muted{ color: var(--muted); }
.badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.35rem .7rem;
  border:1px solid rgba(var(--green-rgb),.25);
  background: rgba(var(--green-rgb),.10);
  color: var(--green-d);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: .85rem;
}



/* AI icon system (inline SVG sprite; replaces emoji-style icons) */
.ai-icon{
  display:inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: -0.125em;
  color: inherit;
}

/* Size tuning in common UI */
.badge .ai-icon{ width: 14px; height: 14px; }
.hero-price-hook .ai-icon,
.step-meta .ai-icon,
.partner-note .ai-icon{ width: 14px; height: 14px; }
.icon .ai-icon{ width: 24px; height: 24px; }
.compliance-icon .ai-icon{ width: 22px; height: 22px; }
.risk-card-title{ display:flex; align-items:center; gap: 10px; }
.risk-card-title .ai-icon{ width: 18px; height: 18px; color: rgba(15,23,42,.72); }
.thermo-tag{ display:inline-flex; align-items:center; gap: 8px; }
.thermo-tag .ai-icon{ width: 14px; height: 14px; }
.compliance-solution{ align-items:flex-start; }
.compliance-solution .ai-icon{ width: 16px; height: 16px; margin-top: 1px; }
.shipping-card h4{ display:flex; align-items:center; gap: 10px; }
.shipping-card h4 .ai-icon{ width: 16px; height: 16px; }
.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  z-index:1000;
}
.skip-link:focus{ left: 12px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.6);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.2px;
  /* Keep logo + name on one line (avoid wrapping at the hyphen) */
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-mark{
  width:52px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
  overflow:visible;
}

.brand-mark img{
  width:52px;
  height:52px;
  display:block;
}

.brand span:last-child{
  font-size: 1.02rem;
  white-space: nowrap;
}

.site-nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.site-nav a{
  color: var(--muted);
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 14px;
}
.site-nav a:hover{
  color: var(--text);
  background: rgba(15,23,42,.04);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}


.nav-toggle{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.nav-toggle svg{ width: 22px; height: 22px; margin: 0 auto; }

@media (max-width: 900px){
  .site-nav{
    position: fixed;
    inset: 70px 14px auto 14px;
    background: rgba(255,255,255,.96);
    border:1px solid rgba(226,232,240,.8);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open{ display:flex; }
  .site-nav a{ padding: 12px 10px; }
  .nav-actions{ display:flex; gap: 8px; }
  .nav-actions .nav-cta{ display:none; }
  .nav-toggle{ display:block; }
}

@media (max-width: 520px){
  .header-inner{ padding: 12px 0; }
  .brand span:last-child{ display:none; }
  .brand-mark{ width:44px; height:44px; }
  .brand-mark img{ width:44px; height:44px; }
  .nav-actions #navQuoteBtn{ display:none; }
  .nav-actions .btn{ padding: 10px 12px; }
}

/* Buttons */
.btn{
  appearance:none;
  border:1px solid transparent;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--green-rgb),0.35);
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(var(--green2-rgb),0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(var(--green2-rgb),0.22);
  filter: brightness(1.02);
}


.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: #ffffff;
  color: #0f172a;
  font-weight: 650;
  box-shadow: 0 8px 18px rgba(15,23,42,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--green-rgb),0.45);
  box-shadow: 0 12px 24px rgba(15,23,42,0.08);
}


.btn-ghost{
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.08);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(15,23,42,.06); }

.btn-sm{
  padding: 10px 14px;
  font-weight: 800;
  font-size: .92rem;
}

/* Hero */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
  display:flex;
  align-items:center;
  overflow:hidden;
  background: var(--surface-2);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.05);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background:
    linear-gradient(90deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.72) 45%,
    rgba(255,255,255,.55) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0) 70%, rgba(255,255,255,1) 100%);
}

.hero-inner{
  position:relative;
  z-index: 3;
  padding: 64px 0 56px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:center;
}
.hero h1{
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -1px;
  margin: 14px 0 10px;
}
.hero p{
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: rgba(15,23,42,.82);
  max-width: 50ch;
}
.hero-ctas{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-kpis{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.kpi{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(226,232,240,.75);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 36px rgba(2,6,23,.06);
}
.kpi .num{
  font-weight: 950;
  font-size: 1.15rem;
}
.kpi .label{
  color: var(--muted);
  font-weight: 650;
  margin-top: 4px;
  font-size: .92rem;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .hero-inner{ padding: 44px 0 38px; }
  .hero p{ font-size: 1rem; }
}

/* Sections */
.section{
  padding: 70px 0;
}

.section.alt{
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg,
    rgba(var(--green-rgb),0) 0%,
    rgba(var(--green-rgb),.05) 22%,
    rgba(var(--green-rgb),0) 100%);
}

.section.alt > .container{ position: relative; z-index: 1; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section h2{
  font-size: 2rem;
  margin: 0;
  letter-spacing: -.6px;
}

/* Page titles (used on secondary pages) */
.section-title{
  font-size: 2.15rem;
  margin: 0;
  letter-spacing: -.6px;
}
.section-subtitle{
  margin: 10px 0 0;
  max-width: 72ch;
  color: var(--muted);
}

@media (max-width: 520px){
  .section-title{ font-size: 1.9rem; }
}
.section .lead{
  max-width: 64ch;
  color: var(--muted);
  margin: 10px 0 0;
}

/* ------------------------------------------------------------
   Motion (comfortable + crisp)
   - Progressive enhancement (only when JS is available)
   - No text blur (keeps everything sharp)
   - Soft translate + fade + stagger
------------------------------------------------------------ */
html.motion .yl-reveal:not(.yl-split){
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 650ms cubic-bezier(.16,1,.3,1),
    transform 650ms cubic-bezier(.16,1,.3,1);
  transition-delay: var(--yl-delay, 0ms);
  will-change: opacity, transform;
}
html.motion .yl-reveal.is-inview{
  opacity: 1;
  transform: translate3d(0,0,0);
}

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

/* Split text reveal (word-by-word) */
html.motion .yl-split .yl-word{
  display:inline-block;
  opacity: 0;
  transform: translate3d(0, 1.05em, 0);
  transition:
    opacity 900ms cubic-bezier(.16,1,.3,1),
    transform 900ms cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--yl-delay, 0ms) + var(--yl-word-delay, 0ms));
  will-change: opacity, transform;
}
html.motion .yl-split.is-inview .yl-word{
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Underline sweep for split headings (subtle dynamic cue) */
html.motion .yl-split{
  position: relative;
  display: inline-block;
}
html.motion .yl-split::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom: -0.18em;
  height: 0.14em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--green-rgb),0), rgba(var(--green-rgb),.62), rgba(var(--green-rgb),0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(.16,1,.3,1);
  opacity: .60;
}
html.motion .yl-split.is-inview::after{
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce){
  html.motion .yl-split .yl-word{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Feature cards */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.feature-card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.85);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
}
.feature-card h3{
  margin: 10px 0 6px;
  letter-spacing: -.3px;
}
.feature-card p{
  margin: 0;
  color: var(--muted);
}
.icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(var(--green-rgb),.10);
  border: 1px solid rgba(var(--green-rgb),.18);
  display:grid;
  place-items:center;
  /* Dark icon on light sections for clear contrast */
  color: rgba(15,23,42,.78);
  font-weight: 900;
}

/* Auto-adapt icon boxes on dark sections */
.section-dark .icon,
.section-compliance .icon,
.shipping-info .icon{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
@media (max-width: 980px){
  .feature-grid{ grid-template-columns: 1fr; }
}

/* Knowledge visuals */
.knowledge-visuals{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 16px;
}
.kv-card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.85);
  border-radius: var(--radius-xl);
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  margin: 0;
}
.kv-card img{
  width: 100%;
  height: 240px;
  object-fit: contain;
  display:block;
  background: #f6fbf8;
}
.kv-card figcaption{
  padding: 14px 16px 16px;
}
.kv-card strong{
  display:block;
  letter-spacing: -.2px;
}
.kv-card span{
  display:block;
  margin-top: 6px;
  color: var(--muted);
}
@media (max-width: 980px){
  .knowledge-visuals{ grid-template-columns: 1fr; }
  .kv-card img{ height: 220px; }
}

/* Catalog controls */
.catalog-controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}
.search{
  flex: 1 1 320px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid rgba(226,232,240,.95);
  background: #fff;
  box-shadow: 0 14px 34px rgba(2,6,23,.05);
}
.search input{
  border:0;
  outline:0;
  width: 100%;
  background: transparent;
  font-weight: 650;
}
.pills{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill{
  border:1px solid rgba(226,232,240,.95);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  color: var(--muted);
  font-weight: 800;
  transition: background .12s ease, border-color .12s ease, transform .12s ease;
}
.pill:hover{ transform: translateY(-1px); }
.pill.is-active{
  border-color: rgba(var(--green-rgb),.55);
  background: rgba(var(--green-rgb),.10);
  color: var(--green-d);
}

/* Product grid/cards */
.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
@media (max-width: 1100px){
  .grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 860px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
}

.product-card{
  position:relative;
  background:#fff;
  border:1px solid rgba(226,232,240,.90);
  border-radius: var(--radius-xl);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .14s ease, box-shadow .14s ease;
}
.product-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Gentle image zoom on hover (comfortable micro-interaction) */
.product-card:hover .product-media img{
  transform: scale(1.04);
}

.product-card:focus-visible{
  outline: 3px solid rgba(16,185,129,.35);
  outline-offset: 4px;
}
.product-media{
  padding: 14px;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  overflow:hidden;
  position:relative;
}
.product-media img{
  width:100%;
  height:100%;
  object-fit: contain;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .25s ease, transform .25s ease;
}
.product-media.is-loaded img,
img.is-loaded{ opacity:1; transform: scale(1); }

.price-badge{
  position:absolute;
  top: 14px;
  right: 14px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.92);
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  font-size: .92rem;
}
.price-badge-price{ white-space: nowrap; }
.moq-chip{
  font-weight: 900;
  font-size: .72rem;
  color: rgba(15,23,42,.74);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(var(--green-rgb),.24);
  background: rgba(var(--green-rgb),.10);
  white-space: nowrap;
}
.bulk-hint{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(100,116,139,.92);
}

.product-body{
  padding: 16px 16px 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.product-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
}
.category-pill{
  font-size: .82rem;
  font-weight: 900;
  color: rgba(15,23,42,.70);
  background: rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.06);
  padding: 6px 10px;
  border-radius: 999px;
}
.product-title{
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -.2px;
}

.product-specs{
  display:flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 8px;
}
.spec-chip{
  display:inline-flex;
  align-items:center;
  padding: 5px 9px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .75rem;
  color: var(--green-700);
  background: rgba(var(--green-rgb),.10);
  border: 1px solid rgba(var(--green-rgb),.18);
}

.product-desc{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  min-height: 2.6em;
}
.tag-row{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
  color: var(--green-d);
  border:1px solid rgba(var(--green-rgb),.28);
  background: rgba(var(--green-rgb),.08);
}
.card-actions{
  display:flex;
  gap: 10px;
  margin-top: 4px;
}

.empty-state{
  grid-column: 1 / -1;
  padding: 26px;
  border-radius: var(--radius-xl);
  border:1px dashed rgba(226,232,240,.9);
  background: rgba(15,23,42,.02);
}

/* Skeleton shimmer */
.skeleton::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.65) 45%,
    rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  animation: shimmer 1.2s infinite;
  opacity: .7;
}
.skeleton.is-loaded::before{ display:none; }

@keyframes shimmer{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(120%); }
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  /* Fix iOS/Android dynamic address bar issues (vh can be larger than the
     visible viewport). app.js sets --vh based on window.innerHeight. */
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  display:none;
  align-items:center;
  justify-content:center;
  padding: calc(env(safe-area-inset-top) + 18px)
           18px
           calc(env(safe-area-inset-bottom) + 18px);
  z-index: 1000;
}
.modal.is-open{ display:flex; }
.modal-overlay{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.35);
  backdrop-filter: blur(6px);
}
.modal-dialog{
  position:relative;
  width: min(1080px, 100%);
  /* Use the --vh fallback to avoid clipped modals on mobile browsers. */
  max-height: min(84vh, 860px);
  max-height: min(calc(var(--vh, 1vh) * 84), 860px);
  background: #fff;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--radius-xl);
  overflow:hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 901px){
  /*
    Desktop: prevent the product modal's left column (image + thumbnails + disclaimer)
    from being clipped on shorter laptop screens.

    Root cause: the dialog height is capped (max-height), but the left column isn't
    scrollable and the main image uses an aspect-ratio that can exceed the available
    vertical space.

    Fix:
    - Give the *product* modal a definite height so % heights inside resolve correctly.
    - Make the media column a flex stack and allow it to scroll only when necessary.
    - Let the main image area flex/shrink to always leave room for thumbnails + note.
  */
  #productModal .modal-dialog{
    /* Match the max-height cap so % heights inside resolve correctly. */
    height: min(calc(var(--vh, 1vh) * 84), 860px);
  }
  #productModal .modal-media{
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #productModal .modal-main{
    flex: 1 1 auto;
    min-height: 240px;
    padding: 0 56px;
  }
  #productModal .modal-main-media{
    /* Let the image area use the remaining height instead of forcing 4:3 */
    height: 100%;
    aspect-ratio: auto;
  }
  #productModal .thumb-row,
  #productModal .gallery-disclaimer{
    flex: 0 0 auto;
    padding-left: 56px;
    padding-right: 56px;
  }
  #productModal .modal-details{ min-height: 0; }
}
.modal-dialog.small{
  width: min(720px, 100%);
}
.modal-close{
  position:absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.9);
  cursor:pointer;
  touch-action: manipulation;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(2,6,23,.10);
}
.modal-content{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  height: 100%;
}
.modal-media{
  padding: 18px;
  background: rgba(15,23,42,.02);
  border-right: 1px solid rgba(226,232,240,.85);
}
.modal-main{
  position: relative;
  border-radius: 20px;
  overflow:visible;
}
.modal-main-media{
  padding: 14px;
  padding: 14px;
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 20% 20%, rgba(var(--green-rgb),.10), rgba(15,23,42,.03));
  border:1px solid rgba(226,232,240,.85);
  border-radius: 20px;
  overflow:hidden;
  position:relative;
}
.modal-main-media img{
  width:100%;
  height:100%;
  object-fit: contain;
  opacity:0;
  transition: opacity .25s ease;
}
.modal-main-media.is-loaded img{ opacity:1; }

.thumb-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.92);
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(2,6,23,.10);
  display:grid;
  place-items:center;
  font-size: 22px;
  font-weight: 900;
}
.thumb-nav:disabled{ opacity:.45; cursor:not-allowed; }
.thumb-nav.prev{ left: 10px; }
.thumb-nav.next{ right: 10px; }


.thumb-row{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  overflow:auto;
  padding-bottom: 6px;
}
.thumb{
  flex: 0 0 86px;
  height: 64px;
  border-radius: 16px;
  border:1px solid rgba(226,232,240,.95);
  background: #fff;
  overflow:hidden;
  cursor:pointer;
  position:relative;
}
.thumb.is-active{
  border-color: rgba(var(--green-rgb),.65);
  box-shadow: 0 12px 26px rgba(var(--green-rgb),.15);
}
.thumb img{
  width:100%;
  height:100%;
  object-fit: contain;
  opacity:0;
  transition: opacity .2s ease;
}
.thumb.is-loaded img{ opacity:1; }


/* Product gallery disclaimer */
.gallery-disclaimer{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(226,232,240,.95);
  background: rgba(15,23,42,.02);
  color: #64748b;
  font-size: .86rem;
  line-height: 1.35;
}
.gallery-disclaimer em{ font-style: italic; }
.gallery-disclaimer .mini-badge{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--green-rgb),.35);
  background: rgba(var(--green-rgb),.08);
  color: rgba(var(--green-rgb),1);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: .72rem;
}
.gallery-disclaimer-text{ margin-top: 8px; }
.gallery-disclaimer-link{
  display:inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}
.gallery-disclaimer-link:hover{ text-decoration: underline; }

.modal-details{
  padding: 20px 20px 18px;
  overflow:auto;
}
.modal-details h2{
  margin: 0;
  letter-spacing: -.6px;
  font-size: 1.65rem;
}
.modal-price{
  margin-top: 8px;
  font-weight: 950;
  font-size: 1.15rem;
  color: var(--green-d);
}

.modal-sub{
  margin-top: 8px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items:center;
  color: rgba(15,23,42,.75);
  font-size: .92rem;
  font-weight: 750;
}
.moq-pill{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  border:1px solid rgba(226,232,240,.95);
  background: #fff;
  font-weight: 900;
  color: rgba(15,23,42,.85);
}
.modal-note{
  margin-top: 8px;
  color: #64748b;
  font-size: .86rem;
  line-height: 1.35;
}
.modal-note b{ color: rgba(15,23,42,.82); }
.modal-long{
  margin: 12px 0 14px;
  color: rgba(15,23,42,.82);
  white-space: pre-line;
}

.spec-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.modal-ctas{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Quote form */
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.form-grid .full{ grid-column: 1 / -1; }
.input, textarea, select{
  width:100%;
  border:1px solid rgba(226,232,240,.95);
  border-radius: 14px;
  padding: 11px 12px;
  outline: none;
  background:#fff;
  box-shadow: 0 12px 26px rgba(2,6,23,.04);
}
textarea{ min-height: 110px; resize: vertical; }
.label{
  font-size: .9rem;
  font-weight: 900;
  color: rgba(15,23,42,.76);
  margin: 0 0 6px 2px;
}
.form-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

@media (max-width: 900px){
  .modal-content{ grid-template-columns: 1fr; }
  .modal-media{ border-right:0; border-bottom: 1px solid rgba(226,232,240,.85); }
  .form-grid{ grid-template-columns: 1fr; }

  /* Mobile: allow the modal content to scroll so details/CTA are always reachable.
     Keep the close button visible (it sits outside .modal-content). */
  .modal{ align-items: stretch; padding: calc(env(safe-area-inset-top) + 10px) 10px calc(env(safe-area-inset-bottom) + 10px); }
  /* Let the flex container (modal) stretch the dialog to the available height
     inside the safe-area padding. Avoid height:100% here (it ignores padding
     and can cause clipping on iOS). */
  .modal-dialog{ max-height: 100%; }
  .modal-content{
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-details{ overflow: visible; }
}

/* Footer */
.footer{
  /* Keep the footer compact; the floating WhatsApp CTA hides when the footer is in view. */
  padding: 32px 0 calc(32px + env(safe-area-inset-bottom));
  border-top: none;
  background: #fff;
  position: relative;
  isolation: isolate;
}
/* Avoid a grey "bridge" band at section boundaries */
.footer::before{ content: none; }
.footer > .container{ position: relative; z-index: 1; }
.footer-grid{
  /* Grid keeps the footer tidy on desktop while allowing a full-width payments row */
  display:grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr) minmax(260px, .8fr);
  gap: 18px;
  align-items: start;
}
.footer small{ color: var(--muted); }

/* Responsive footer grid */
@media (max-width: 1100px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-contact{ grid-column: 1 / -1; text-align:left; }
  .footer-actions{ justify-content:flex-start; }
}
@media (max-width: 720px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* Footer payments (top row) */
.footer-payments{
  grid-column: 1 / -1;
  margin-bottom: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 32px rgba(2,6,23,.06);
}
.footer-payments-label{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 950;
  color: rgba(15,23,42,.6);
}
.footer-payment-logos{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.footer-payment-logos .pay-logo{
  height: 62px;
  width: 132px;
  padding: 0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  overflow:hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.footer-payment-logos .pay-logo img{
  height: auto;
  width: auto;
  max-height: 40px;
  max-width: 100%;
  display:block;
  object-fit: contain;
}

.footer-payment-logos .pay-logo:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(2,6,23,.10);
}
@media (max-width: 720px){
  .footer-payments{ justify-content: center; text-align:center; }
  .footer-payment-logos{ justify-content:center; }
}
/* Certifications */
.logo-wall{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 1100px){
  .logo-wall{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 620px){
  .logo-wall{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 420px){
  .logo-wall{ grid-template-columns: 1fr; }
}
.logo-card{
  background:#fff;
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: 0 18px 44px rgba(2,6,23,.06);
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.logo-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.logo-img{
  height: 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 18px;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(var(--green-rgb),.06);
  overflow:hidden;
}
.logo-img img{
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}
.logo-card p{
  margin:0;
  color: var(--muted);
  font-size: .95rem;
}
.logo-card .logo-detail{
  display:none;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(226,232,240,.95);
}
.logo-card.is-open .logo-detail{ display:block; }
.icon-btn{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  cursor:pointer;
  font-weight: 900;
  color: rgba(15,23,42,.72);
  box-shadow: 0 12px 24px rgba(2,6,23,.06);
}
.icon-btn:hover{ background: rgba(15,23,42,.04); }
.icon-btn.danger{ color: #b91c1c; border-color: rgba(185,28,28,.18); }

/* Admin */
.admin-shell{
  padding: 18px 0 54px;
}
.admin-lock{
  max-width: 520px;
  margin: 40px auto 0;
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  background:#fff;
}
.admin-layout{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px){
  .admin-layout{ grid-template-columns: 1fr; }
}
.panel{
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius-xl);
  background:#fff;
  box-shadow: var(--shadow-soft);
}
.panel-head{
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(226,232,240,.85);
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
}
.panel-body{ padding: 14px; }

/* Small (panel-style) modals (Quote / Samples):
   - Make the body scroll when content is taller than the dialog
   - Keep the action buttons visible as a fixed footer */
.modal-dialog.small{
  display:flex;
  flex-direction: column;
}
.modal-dialog.small .panel-head{ flex: 0 0 auto; }
.modal-dialog.small .panel-body{
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.panel-footer{
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(226,232,240,.85);
  background: #fff;
}
.panel-footer .next-step-note{
  margin: 0 0 10px;
  font-size: .93rem;
  line-height: 1.35;
}
.panel-footer .form-actions{ margin-top: 0; }


.admin-item{
  width:100%;
  text-align:left;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  border-radius: 18px;
  padding: 12px;
  cursor:pointer;
  margin-bottom: 10px;
  box-shadow: 0 14px 28px rgba(2,6,23,.05);
}
.admin-item:hover{ background: rgba(15,23,42,.02); }
.admin-item.is-active{
  border-color: rgba(var(--green-rgb),.55);
  background: rgba(var(--green-rgb),.06);
}
.admin-item-title{
  font-weight: 950;
  letter-spacing: -.2px;
}
.admin-item-meta{
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
  display:flex;
  flex-wrap: wrap;
  gap: 6px;
}
.admin-item-meta .dot{ opacity:.5; }

.split-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.list-row{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.list-row .input{ flex: 1 1 320px; min-width: 220px; }
.row-actions{
  display:flex;
  gap: 8px;
}
.status{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(15,23,42,.02);
  color: rgba(15,23,42,.78);
  font-weight: 750;
}
.status[data-type="success"]{
  border-color: rgba(var(--green-rgb),.35);
  background: rgba(var(--green-rgb),.08);
  color: var(--green-d);
}
.status[data-type="error"]{
  border-color: rgba(185,28,28,.25);
  background: rgba(185,28,28,.06);
  color: #b91c1c;
}

/* ---------- Marketing / Conversion UI ---------- */
.trust-row{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-top: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-row::-webkit-scrollbar{ display:none; }
.trust-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 10px 28px rgba(2,6,23,.06);
  backdrop-filter: blur(6px);
  transition: transform .15s ease, box-shadow .15s ease;
}
.trust-logo:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px rgba(2,6,23,.08); }
.trust-logo img{
  height: 26px;
  width: auto;
  display:block;
  opacity: .95;
}

.head-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}
.step-card{
  border-radius: 20px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  padding: 18px;
}
.step-num{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  background: rgba(var(--green-rgb),.12);
  color: var(--green-d);
  border: 1px solid rgba(var(--green-rgb),.25);
}
.step-title{ margin-top: 12px; font-weight: 950; }
.step-desc{ margin-top: 8px; color: var(--muted); line-height: 1.6; }

.faq-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-top: 16px;
  align-items:start;
}
.faq-item{
  border-radius: 18px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
  padding: 14px 16px;
}
.faq-item summary{
  cursor:pointer;
  font-weight: 950;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{ margin-top: 10px; color: var(--muted); line-height: 1.65; }
.faq-right{
  border-radius: 20px;
  border:1px solid rgba(var(--green-rgb),.22);
  background: rgba(var(--green-rgb),.06);
  padding: 16px;
}
.faq-right h3{ margin: 0 0 8px 0; }
.faq-right ul{ margin: 0; padding-left: 18px; color: rgba(15,23,42,.82); line-height: 1.7; }
.faq-cta{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }

.wa-float{
  position: fixed;
  right: calc(18px + env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 80;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--brand-green-grad);
  color: #fff;
  box-shadow: var(--brand-green-shadow);
  border: 1px solid rgba(255,255,255,.18);
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.wa-float:hover{ transform: translateY(-2px); box-shadow: var(--brand-green-shadow-hover); }
.wa-float-ico{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
}
.wa-float-ico svg{ width: 26px; height: 26px; }
.wa-float-text{ display:flex; flex-direction:column; line-height: 1.1; }
.wa-float-text small{ opacity: .92; font-weight: 750; }

/* When the footer is visible, the floating CTAs are redundant and can cover content. */
body.footer-inview .wa-float{
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
body.footer-inview .sticky-cta{
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .15s ease, transform .15s ease;
}

/* ---------- Quick navigation: Back + Top ---------- */
.quick-nav{
  position: fixed;
  left: calc(18px + env(safe-area-inset-left));
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 79;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.quick-btn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 40px rgba(2,6,23,.16);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  font-weight: 950;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.quick-btn:hover{ transform: translateY(-2px); box-shadow: 0 18px 50px rgba(2,6,23,.18); }
.quick-btn:active{ transform: translateY(0); }

.quick-top{
  opacity: 0;
  pointer-events: none;
}
.quick-top.is-show{
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 760px){
  .quick-nav{ bottom: calc(84px + env(safe-area-inset-bottom)); }
}


.sticky-cta{
  position: fixed;
  left: calc(12px + env(safe-area-inset-left));
  right: calc(12px + env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 70;
  display:none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(2,6,23,.14);
  backdrop-filter: blur(10px);
  transition: opacity .15s ease, transform .15s ease;
}
.sticky-cta .btn{ flex: 1 1 0; justify-content: center; }

.image-preview{ margin-top: 10px; }
.image-preview-label{ font-weight: 850; color: var(--muted); font-size: .9rem; }
.image-preview-box{
  margin-top: 8px;
  border-radius: 18px;
  border:1px solid rgba(226,232,240,.95);
  overflow:hidden;
  height: 140px;
  background: rgba(2,6,23,.04);
  display:flex;
  align-items:center;
  justify-content:center;
}
.image-preview-box img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.thumb{
  width: 74px;
  height: 56px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(226,232,240,.95);
  background: rgba(2,6,23,.04);
  flex: 0 0 auto;
}
.thumb img{ width:100%; height:100%; object-fit: contain; display:block; }

@media (max-width: 900px){
  .faq-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .wa-float{ right: calc(12px + env(safe-area-inset-right)); bottom: calc(84px + env(safe-area-inset-bottom)); }
  .wa-float-text{ display:none; }
  .wa-float{ padding: 12px; }
  .sticky-cta{ display:flex; }
}

/* Body lock when modal open */
body.modal-open{ overflow:hidden; }


/* ---------- Conversion-focused landing enhancements ---------- */

.hero-price{
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 12px 35px rgba(2,6,23,.10);
  backdrop-filter: blur(6px);
}
.hero-price-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-price-label{
  font-weight: 950;
  letter-spacing: -.02em;
  color: var(--text);
}
.hero-price-note{
  color: var(--muted);
  font-size: 12px;
}
.hero-price-value{
  margin-top: 8px;
  display:flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-price-num{
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.05em;
  color: var(--green-2);
}
.hero-price-suffix{
  font-weight: 900;
  color: var(--text);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(var(--green-rgb),.14);
  border: 1px solid rgba(var(--green-rgb),.28);
}
.hero-price-pill{
  font-weight: 900;
  color: rgba(15,23,42,.92);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(2,6,23,.04);
  border: 1px solid rgba(2,6,23,.10);
}
.hero-price-hook{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(var(--green-rgb),.08);
  border: 1px solid rgba(var(--green-rgb),.20);
  color: rgba(15,23,42,.82);
  font-size: 14px;
  font-weight: 800;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}


.hero-subline{
  margin-top: 12px;
  color: rgba(15, 23, 42, .76);
  font-size: 14px;
}
.trust-row{
  display:flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-top: 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-row::-webkit-scrollbar{ display:none; }

.trust-pill{
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.80);
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,.76);
  letter-spacing: .01em;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  box-shadow: 0 14px 28px rgba(2,6,23,.06);
  backdrop-filter: blur(8px);
  transition: transform .16s ease, box-shadow .16s ease;
  flex: 0 0 auto;
}
.trust-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(2,6,23,.08);
}
.trust-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(226,232,240,.95);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex: 0 0 auto;
}
.trust-icon img{
  max-height: 28px;
  max-width: 34px;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
}

/* Mobile: show the certification pills fully (no hidden items).
   Desktop keeps a single horizontal row, but on phones it becomes a neat 2-column grid.
*/
@media (max-width: 520px){
  .trust-row{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }
  .trust-pill{
    width: 100%;
    justify-content: flex-start;
    padding: 8px 10px;
  }
  .trust-icon{
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }
  .trust-icon img{
    max-height: 24px;
    max-width: 30px;
  }
}

@media (max-width: 360px){
  .trust-row{ grid-template-columns: 1fr; }
}

.quick-quote{
  margin-top: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(2,6,23,.10);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.quick-quote-head{
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.quick-quote-title{
  font-weight: 950;
  letter-spacing: -.02em;
}
.quick-quote-sub{
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.quick-quote-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px 16px;
}
.quick-quote-actions{
  grid-column: 1 / -1;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 860px){
  .quick-quote-grid{ grid-template-columns: 1fr; }
}

.hero-right{ display:flex; flex-direction: column; gap: 14px; }

.promo-card{
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(2,6,23,.12);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.promo-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 28px 78px rgba(2,6,23,.16);
}
.promo-media{
  position: relative;
  aspect-ratio: 16/10;
  background: #e2e8f0;
}
.promo-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  will-change: transform;
  --promo-scale: 1.02;
  --promo-y: 0px;
  transform: translateY(var(--promo-y)) scale(var(--promo-scale));
  /* Keep hover scale snappy while allowing smooth scroll-parallax updates */
  transition: transform 180ms cubic-bezier(.2,.8,.2,1);
}
.promo-card:hover .promo-media img{
  --promo-scale: 1.06;
}

.promo-tag{
  position:absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(226,232,240,.9);
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, .82);
}
.promo-price{
  position:absolute;
  right: 12px;
  top: 12px;
  background: var(--brand-green-grad);
  color: #fff;
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: var(--brand-green-shadow);
}
.promo-price-top{ font-size: 11px; opacity: .9; font-weight: 800; letter-spacing:.04em; text-transform: uppercase; }
.promo-price-num{ font-size: 34px; font-weight: 1000; line-height: 1; letter-spacing: -.05em; margin-top: 4px; }
.promo-price-sub{ margin-top: 4px; font-size: 12px; font-weight: 800; opacity: .95; letter-spacing: .01em; }
.promo-body{ padding: 14px 16px 16px; }
.promo-title{ font-weight: 1000; letter-spacing: -.03em; font-size: 18px; }
.promo-desc{ margin-top: 6px; color: var(--muted); font-size: 14px; }
.promo-actions{ margin-top: 12px; display:flex; gap: 10px; flex-wrap: wrap; }

/* Dark section + comparison */
.section-dark{
  position: relative;
  isolation: isolate;
  background: transparent;
  color: rgba(255,255,255,.92);
  /* Clean edges (no fog bands between alternating sections) */
  border-top: none;
  border-bottom: none;
}

/* Background-only blended edges (no text blur) */
.section-dark,
.shipping-info,
.section-compliance{
  position: relative;
  isolation: isolate;
  background: transparent;
}

.section-dark::before,
.shipping-info::before,
.section-compliance::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  /* Soft, background-only blur at section edges (keeps text crisp) */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 var(--blend-edge), #000 calc(100% - var(--blend-edge)), rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 var(--blend-edge), #000 calc(100% - var(--blend-edge)), rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  filter: blur(12px);
  transform: translateZ(0) scale(1.02);
  opacity: .98;
}

.section-dark::before{
  background: radial-gradient(1200px 600px at 20% -10%, rgba(var(--green-rgb),.25), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(34,197,94,.14), transparent 55%),
              linear-gradient(180deg, var(--navy), #0b1220 70%);
}

.shipping-info::before{
  background: var(--navy);
}

.section-compliance::before{
  background: radial-gradient(circle at 20% 10%, rgba(239,68,68,.16), rgba(15,23,42,1) 58%);
}

.section-dark > .container{ position: relative; z-index: 1; }
.dark-head{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: calc(18px + env(safe-area-inset-bottom));
}
.dark-title{
  margin: 10px 0 6px;
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 1000;
  text-transform: uppercase;
}
.lead-invert{ color: rgba(226,232,240,.78); max-width: 720px; }
.badge-invert{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
.btn-invert{
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.btn-invert:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
}

.comparison-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 900px){
  .comparison-grid{ grid-template-columns: 1fr; }
}

.comp-card{
  position: relative;
  border-radius: var(--radius-xl);
  padding: 22px;
  border: 1px solid rgba(148,163,184,.22);
  overflow: hidden;
}
.comp-bad{
  background: rgba(255,255,255,.92);
  color: #0f172a;
}
.comp-good{
  background: linear-gradient(180deg, rgba(var(--green-rgb),.18), rgba(255,255,255,.92) 60%);
  color: #0f172a;
  border-color: rgba(var(--green-rgb),.30);
}
.comp-kicker{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(15, 23, 42, .7);
}
.comp-price{
  margin-top: 12px;
}
.comp-price-num{
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 1000;
  letter-spacing: -.05em;
  line-height: 1;
  display:block;
}
.comp-price-sub{
  display:block;
  color: rgba(15, 23, 42, .62);
  font-weight: 800;
  margin-top: 6px;
}

.comp-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 42, .82);
  font-weight: 700;
}
.comp-list li{ display:flex; gap: 10px; align-items: flex-start; }
.comp-list .x,
.comp-list .check{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.comp-list .x{ color: var(--danger); }
.comp-list .check{ color: var(--green-2); }
.comp-actions{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ribbon{
  position:absolute;
  right: -46px;
  top: 18px;
  transform: rotate(45deg);
  background: var(--green-2);
  color: #fff;
  font-weight: 1000;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 8px 54px;
  box-shadow: 0 18px 40px rgba(2,6,23,.18);
}
.comp-footnote{
  margin-top: 10px;
  color: rgba(15, 23, 42, .62);
  font-size: 12px;
  font-weight: 700;
}

/* Calculator card */
.calc-card{
  margin-top: 16px;
  background: rgba(255,255,255,.96);
  color: #0f172a;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 22px 60px rgba(2,6,23,.18);
  padding: 20px;
}
.calc-kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(15,23,42,.55);
}
.calc-head h3{ margin: 0; font-size: 18px; font-weight: 950; letter-spacing:-.02em; }
.calc-head p{ margin: 6px 0 0; color: rgba(15,23,42,.62); }
.calc-hint{
  margin-top: 6px;
  color: rgba(15,23,42,.55);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.calc-presets{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.calc-preset{
  border:1px solid rgba(226,232,240,.95);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  cursor:pointer;
  color: rgba(15,23,42,.72);
  font-weight: 900;
  font-size: 12px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.calc-preset:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--green-rgb),.42);
}
.calc-preset.is-active{
  border-color: rgba(var(--green-rgb),.55);
  background: rgba(var(--green-rgb),.10);
  color: var(--green-d);
}
.calc-summary{
  grid-column: 1 / -1;
  border: 1px dashed rgba(var(--green-rgb),.35);
  background: rgba(var(--green-rgb),.08);
  border-radius: 16px;
  padding: 10px 12px;
  font-weight: 900;
  color: rgba(15,23,42,.80);
  line-height: 1.35;
}
.calc-summary .muted{
  margin-left: 6px;
  font-weight: 750;
  color: rgba(15,23,42,.58);
}
.calc-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 980px){
  .calc-grid{ grid-template-columns: 1fr; }
}
.calc-results{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .calc-results{ grid-template-columns: 1fr; }
}
.calc-kpi{
  background: rgba(248,250,252,.9);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 18px;
  padding: 14px;
}
.calc-kpi-label{
  color: rgba(15,23,42,.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.calc-kpi-value{
  margin-top: 6px;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -.04em;
  color: var(--green-2);
}
.calc-actions{
  grid-column: 1 / -1;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.calc-disclaimer{
  grid-column: 1 / -1;
  color: rgba(15,23,42,.60);
  font-size: 12px;
  font-weight: 700;
}

/* Protocol section */
.protocol-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px){
  .protocol-grid{ grid-template-columns: 1fr; }
}
.protocol-title{
  margin: 10px 0 10px;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.protocol-cards{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 760px){
  .protocol-cards{ grid-template-columns: 1fr; }
}
.protocol-card{
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(248,250,252,.9);
}
.protocol-card-green{
  border-color: rgba(var(--green-rgb),.28);
  background: linear-gradient(180deg, rgba(var(--green-rgb),.14), rgba(248,250,252,.9));
}
.protocol-card-title{
  font-weight: 950;
  letter-spacing: -.02em;
}
.protocol-card-desc{
  margin-top: 6px;
  color: rgba(15,23,42,.68);
  font-size: 14px;
}
.protocol-stats{
  display:grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226,232,240,.9);
  background: radial-gradient(700px 300px at 30% 0%, rgba(var(--green-rgb),.16), transparent 60%),
              rgba(248,250,252,.9);
}
.stat{
  border-radius: 18px;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.9);
  padding: 14px;
}
.stat-num{
  font-size: 38px;
  font-weight: 1000;
  letter-spacing: -.05em;
  color: var(--green-2);
  line-height: 1;
}
.stat-label{
  margin-top: 6px;
  color: rgba(15,23,42,.62);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stat-note{
  margin-top: 2px;
  color: rgba(15,23,42,.72);
  font-size: 14px;
  font-weight: 700;
}

/* Risk section */
.section-risk{
  position: relative;
  isolation: isolate;
  background: radial-gradient(900px 450px at 20% -10%, rgba(239,68,68,.18), transparent 60%),
              linear-gradient(180deg, #ffffff 0%, #fff7f7 18%, #ffffff 72%);
  border-top: none;
  border-bottom: none;
}
.section-risk > .container{ position: relative; z-index: 1; }
.badge-danger{
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.22);
  color: #991b1b;
}
.risk-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px){
  .risk-grid{ grid-template-columns: 1fr; }
}
.risk-title{
  margin: 10px 0 8px;
  font-size: clamp(34px, 3.6vw, 62px);
  line-height: 1.02;
  font-weight: 1000;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: #0f172a;
}
.risk-cards{
  margin-top: 14px;
  display:grid;
  gap: 12px;
}
.risk-card{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--radius-xl);
  padding: 16px;
}
.risk-card-title{
  font-weight: 950;
  letter-spacing: -.02em;
}
.risk-card-desc{
  margin-top: 6px;
  color: rgba(15,23,42,.70);
}
.risk-disclaimer{
  margin-top: 10px;
  color: rgba(15,23,42,.60);
  font-size: 12px;
  font-weight: 700;
}

.risk-chart{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  padding: 18px;
}
.risk-chart-title{
  font-weight: 950;
  letter-spacing: -.02em;
}
.risk-chart-sub{ margin-top: 4px; color: rgba(15,23,42,.62); font-size: 13px; }
.bars{ margin-top: 14px; display:grid; gap: 12px; }
.bar-row{ display:grid; grid-template-columns: 1fr 2fr auto; gap: 10px; align-items: center; }
.bar-label{ font-weight: 800; color: rgba(15,23,42,.74); font-size: 13px; }
.bar{ height: 12px; border-radius: 999px; background: rgba(226,232,240,.9); overflow:hidden; position: relative; }
.bar span{ display:block; height: 100%; background: rgba(239,68,68,.70); border-radius: 999px; }
.bar.is-good span{ background: rgba(var(--green-rgb),.85); }
.bar-val{ font-weight: 950; color: rgba(15,23,42,.78); font-size: 13px; }
.risk-chart-foot{ margin-top: 12px; color: rgba(15,23,42,.70); font-weight: 700; font-size: 13px; }

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){
  .testimonials-grid{ grid-template-columns: 1fr; }
}
.testimonial-card{
  background: rgba(248,250,252,.9);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.stars{
  display:flex;
  align-items:center;
  gap: 4px;
  color: var(--green-2);
}
.stars .ai-icon{ width: 16px; height: 16px; }
.testimonial-card p{
  margin: 10px 0 0;
  color: rgba(15,23,42,.82);
  font-weight: 650;
  line-height: 1.6;
}
.testimonial-meta{
  display:flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15,23,42,.92);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
}
.who{
  font-weight: 950;
  letter-spacing: -.01em;
}
.role{
  color: rgba(15,23,42,.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.center-cta{
  margin-top: 16px;
  display:flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Minor: in hero right KPI grid add spacing */
.hero-kpis{ margin-top: 0; }

/* On very small screens, reduce promo card media height */
@media (max-width: 520px){
  .promo-media{ aspect-ratio: 4/3; }
  .promo-price-num{ font-size: 30px; }
  .hero-price{ padding: 12px; }
}

.dark-actions{ display:flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.risk-chart-head{ display:flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; align-items: baseline; }


/* Brand logo helpers */

.brand-logo{
  width:64px;
  height:64px;
  object-fit:contain;
  display:block;
}
@media (max-width: 720px){
  .brand-logo{ width:36px; height:36px; }
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-name{
  font-weight:900;
  letter-spacing:-0.3px;
  margin-bottom:4px;
}
.footer-contact{
  text-align:right;
}
@media (max-width: 900px){
  .footer-contact{ text-align:left; }
}
.footer-actions{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;margin-bottom:6px;}
@media (max-width: 900px){.footer-actions{justify-content:flex-start;}}



@media (max-width: 640px){
  .brand-logo{ width:56px; height:56px; }
}



/* Certifications pills */
.certs-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.certs-row img{
  height:26px;
  width:auto;
  display:block;
}
@media (max-width: 640px){
  .certs-row img{ height:24px; }
}


/* Utility */
.text-green{ color: var(--green-2); }

/* Hero price compare line */
.hero-price-strike{
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.hero-price-unit{
  color: var(--text);
  font-weight: 800;
  font-size: 16px;
}

/* Centered section heads */
.section-head.center{
  justify-content:center;
  text-align:center;
}
.section-head.center .lead{
  margin-left:auto;
  margin-right:auto;
}

/* Shipping info section */
.shipping-info{
  position: relative;
  isolation: isolate;
  background: transparent;
  color: #fff;
  padding: 70px 0;
}

.shipping-info > .container{ position: relative; z-index: 1; }
.shipping-info h3{
  margin:0 0 22px;
  font-size: 24px;
  letter-spacing: -.01em;
}
.shipping-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.shipping-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: var(--radius-xl);
  padding: 18px 18px;
}
.shipping-card h4{
  margin:0 0 10px;
  font-size: 16px;
  color: var(--green-2);
}
.shipping-card ul{
  list-style:none;
  padding:0;
  margin:0;
  color: rgba(226,232,240,.88);
  font-size: 14px;
  line-height: 1.8;
}
.shipping-card li{
  margin: 6px 0;
}
.shipping-note{
  margin-top: 18px;
  color: rgba(226,232,240,.82);
  font-size: 14px;
}
@media (max-width: 860px){
  .shipping-grid{ grid-template-columns: 1fr; }
}


/* --- Footer: copyable email --- */
.footer-copyrow{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 900px){
  .footer-copyrow{ justify-content:flex-start; }
}

.copy-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-weight: 800;
  color: rgba(15,23,42,.82);
  box-shadow: 0 10px 25px rgba(2,6,23,.06);
}
.copy-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(2,6,23,.10);
}
.copy-pill:active{
  transform: translateY(0);
}
.copy-text{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
}
.copy-icon{
  font-size: 14px;
  opacity: .75;
}
.copy-status{
  font-size: 12px;
  font-weight: 800;
  color: rgba(var(--green-rgb), .95);
}

/* --- Certifications page request note --- */
.cert-request{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
}
.cert-request-title{
  font-weight: 950;
  letter-spacing: -.02em;
}
.cert-request-actions{ margin-top: 10px; display:flex; gap: 10px; flex-wrap: wrap; }

/* --- How it works meta line --- */
.step-meta{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(var(--green-rgb), .95);
  background: rgba(var(--green-rgb), .10);
  border: 1px solid rgba(var(--green-rgb), .18);
  padding: 6px 10px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}

/* --- Shipping mini note --- */
.shipping-mini{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15,23,42,.65);
  font-weight: 700;
}


/* --- Risk section: Heat tolerance infographic --- */
.thermo-wrap{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(226,232,240,.9);
}
.thermo-head{ display:flex; align-items:baseline; justify-content:space-between; gap: 12px; flex-wrap: wrap; }
.thermo-title{ font-weight: 950; letter-spacing: -.02em; }
.thermo-sub{ font-size: 12px; color: rgba(15,23,42,.65); font-weight: 750; }
.thermo-rows{ margin-top: 10px; display:grid; gap: 10px; }
.thermo-row{
  display:grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 12px;
  align-items:center;
}
.thermo-label{ font-weight: 900; }
.thermo-tag{ margin-top: 3px; font-size: 12px; font-weight: 800; color: rgba(15,23,42,.65); }
.thermo-bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(226,232,240,.95);
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(148,163,184,.30);
}
.thermo-bar span{
  display:block;
  height: 100%;
  border-radius: 999px;
}
.thermo-row.danger .thermo-bar span{
  background: rgba(239,68,68,.75);
}
.thermo-row.safe .thermo-bar span{
  background: rgba(var(--green-rgb), .80);
}
.thermo-val{
  font-weight: 950;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
}
@media (max-width: 820px){
  .thermo-row{ grid-template-columns: 1fr; }
  .thermo-val{ justify-self: start; }
}



/* ------------------------------------------------------------
   Compliance Alert Center
------------------------------------------------------------ */
.section-compliance{
    position: relative;
  isolation: isolate;
  background: transparent;
  color: #fff;
}
.section-compliance > .container{ position: relative; z-index: 1; }
.badge-alert{
  background: rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.25);
  color: rgba(254,215,170,.95);
}
.lead-on-dark{ color: rgba(226,232,240,.86); }

.compliance-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 26px;
}
.compliance-title{
  margin: 10px 0 10px;
  font-size: 2.4rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
@media (max-width: 820px){
  .compliance-title{ font-size: 2.05rem; }
}

.compliance-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
@media (max-width: 980px){
  .compliance-grid{ grid-template-columns: 1fr; }
}
.compliance-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(226,232,240,.14);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(2,6,23,.35);
}
.compliance-card-top{
  display:flex;
  align-items:flex-start;
  gap: 12px;
}
.compliance-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(226,232,240,.16);
  font-size: 22px;
  flex: 0 0 auto;
}
.compliance-region{
  font-weight: 950;
  letter-spacing: -0.01em;
}
.status-chip{
  margin-top: 6px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-chip .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display:inline-block;
}
.status-chip.danger{
  background: rgba(239,68,68,.14);
  border: 1px solid rgba(239,68,68,.22);
  color: rgba(254,226,226,.95);
}
.status-chip.danger .dot{ background: #ef4444; }
.status-chip.warn{
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.22);
  color: rgba(254,243,199,.95);
}
.status-chip.warn .dot{ background: #f59e0b; }

.dot.pulse{ animation: pulseDot 1.4s ease-out infinite; }
@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
  70%{ box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  100%{ box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.compliance-text{
  margin: 12px 0 14px;
  color: rgba(226,232,240,.86);
  font-size: 14px;
  line-height: 1.6;
}
.compliance-solution{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.20);
  color: rgba(240,253,244,.95);
  font-weight: 750;
  font-size: 13px;
  line-height: 1.45;
}
.compliance-solution .shield{ font-size: 16px; margin-top: 1px; }

.compliance-foot{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(226,232,240,.14);
  text-align:center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.compliance-foot-title{
  font-weight: 950;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.compliance-foot-text{
  margin-top: 8px;
  color: rgba(226,232,240,.82);
}
.compliance-actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-warn{
  border-color: rgba(249,115,22,.35);
  background: linear-gradient(180deg, #f97316 0%, #ef4444 100%);
  color:#fff;
  box-shadow: 0 14px 30px rgba(239,68,68,.20);
}
.btn-warn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.compliance-disclaimer{
  margin-top: 12px;
  color: rgba(226,232,240,.60);
  font-size: 12px;
}



/* Certifications page: show details by default (no hidden placeholder notes) */
[data-page="certifications"] .logo-card .logo-detail{ display:block; }
[data-page="certifications"] .logo-card .info-btn{ display:none; }


/* Sustainability page */
.cycle-figure{
  margin: 0;
  max-width: 1120px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid rgba(226,232,240,.85);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  overflow: hidden;
}

/* Make the large square diagram feel lighter: smaller on desktop + click to zoom */
.cycle-zoom{
  display:block;
  position: relative;
  cursor: zoom-in;
}
.cycle-zoom:focus-visible{
  outline: 3px solid rgba(var(--green-rgb),.45);
  outline-offset: -3px;
}
.cycle-zoom::after{
  content: "Click to zoom";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, background .15s ease;
}
.cycle-zoom:hover::after,
.cycle-zoom:focus-visible::after{
  opacity: 1;
  transform: translateY(0);
}
.cycle-zoom:hover::after{
  background: rgba(15,23,42,.78);
}

/* Touch devices: show a clearer hint (no hover on mobile) */
@media (hover: none){
  .cycle-zoom::after{
    content: "Tap to zoom";
    opacity: 1;
    transform: translateY(0);
    background: rgba(15,23,42,.62);
  }
}

.cycle-figure img{
  width: 100%;
  height: auto;
  display: block;
  background: #f6fbf8;
}

.cycle-figure figcaption{
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(226,232,240,.85);
  background: rgba(var(--green-rgb),.03);
}

@media (min-width: 980px){
  .cycle-figure{
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr);
  }
  .cycle-figure figcaption{
    border-top: none;
    border-left: 1px solid rgba(226,232,240,.85);
    padding: 22px 22px;
    background: rgba(var(--green-rgb),.04);
  }
}
.cycle-figure figcaption strong{
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.cycle-figure figcaption span{
  display: block;
  color: var(--muted);
  line-height: 1.5;
}


/* Products page scrolling background (semi-transparent) */
body[data-page="products"]{
  position: relative;
  isolation: isolate;
  background: #0b1220;
}
body[data-page="products"]::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/brand/breakfast_table.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}
body[data-page="products"]::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}
body[data-page="products"] .section.alt{
  background: transparent;
}


/* ---------- Anchor offset for sticky header ---------- */
section[id]{ scroll-margin-top: 96px; }

/* ---------- Mobile safe area for sticky CTA ---------- */
@media (max-width: 760px){
  body{ padding-bottom: 140px; }
}

/* ---------- Sustainability: brand avatar hero ---------- */
.avatar-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.avatar-logo{
  background: #ffffff;
  border: 1px solid rgba(226,232,240,.85);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  padding: 18px;
}
.avatar-logo img{
  width:100%;
  height:auto;
  display:block;
  object-fit: contain;
  max-height: 440px;
  margin: 0 auto;
}

/* Photo variant (Guangxi sugarcane) */
.avatar-logo.avatar-photo{ padding: 0; overflow:hidden; }
.avatar-logo.avatar-photo img{
  height: 440px;
  max-height: 440px;
  object-fit: cover;
  margin: 0;
}
@media (max-width: 980px){
  .avatar-logo.avatar-photo img{ height: 320px; max-height: 320px; }
}
.avatar-copy .badge{ margin-bottom: 10px; }
.avatar-copy h1{
  font-size: clamp(2.0rem, 3.6vw, 3.0rem);
  line-height: 1.08;
  margin: 10px 0 12px;
  letter-spacing: -0.8px;
}
.avatar-copy p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.82);
  max-width: 70ch;
  line-height: 1.65;
}
.avatar-copy .mini-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.82);
  line-height: 1.7;
}
@media (max-width: 980px){
  .avatar-grid{ grid-template-columns: 1fr; }
  .avatar-logo img{ max-height: 320px; }
}



/* ---------- Footer links ---------- */
.footer-links{
  display:flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 6px;
}
.footer-col{
  min-width: 180px;
}
.footer-col-title{
  font-weight: 950;
  letter-spacing: -.2px;
  margin-bottom: 10px;
}
.footer-col a{
  display:block;
  color: var(--muted);
  padding: 6px 0;
}
.footer-col a:hover{
  color: var(--text);
}

/* Simple text link (used inside modals/policies) */
.text-link{
  color: var(--green-d);
  font-weight: 850;
}
.text-link:hover{ text-decoration: underline; }

/* ---------- Product header actions (PDF + count) ---------- */
.product-head-actions{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* ---------- Exit intent modal actions ---------- */
.exit-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}


/* --- Samples page: unified request + policy --- */
.samples-merge-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .samples-merge-grid{ grid-template-columns: 1fr; }
}


/* Catalog download: show subtle loading state */
.btn.is-loading{opacity:.75;pointer-events:none}


/* ---------- Product detail pages (SEO/GEO) ---------- */
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom: 14px;
  font-size: .95rem;
}
.product-detail-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:start;
}
@media (max-width: 920px){
  .product-detail-grid{ grid-template-columns: 1fr; }
}
.product-detail-main{
  position:relative;
  border-radius: var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  box-shadow: 0 24px 80px rgba(2,6,23,.08);
  aspect-ratio: 4 / 3;
}
.product-detail-img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.product-detail-title{
  margin: 10px 0 0;
  letter-spacing: -.6px;
}


/* Inventory hook (homepage) */
.inventory-hook{
  margin: 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 201, 95, .22);
  background: rgba(0, 201, 95, .06);
  border-radius: 16px;
}
.inventory-hook-copy{
  font-size: 14px;
  line-height: 1.45;
  color: #0f172a;
}
.inventory-hook-copy strong{
  color: #0aa24a;
}
@media (max-width: 720px){
  .inventory-hook{ flex-direction: column; align-items: stretch; }
  .inventory-hook .btn{ width: 100%; justify-content: center; }
}


/* Partner panel (How it works) */
.partner-panel{
  margin-top: 22px;
  display:grid;
  /* Slightly favor the copy column so the real-facility media doesn't dominate. */
  grid-template-columns: .95fr 1.05fr;
  gap: 16px;
  /* Don't stretch the media column to match the tallest copy.
     Keeps the screenshot/video from becoming overly tall. */
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226,232,240,.95);
  background: radial-gradient(900px 320px at 12% 0%, rgba(var(--green-rgb),.14), transparent 62%),
              rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  backdrop-filter: blur(8px);
}
@media (max-width: 980px){
  .partner-panel{
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

.partner-media{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  min-height: 320px;
  border: 1px solid rgba(226,232,240,.9);
  background: #0b1220;
  box-shadow: 0 28px 90px rgba(2,6,23,.18);
}
@media (max-width: 520px){
  .partner-media{ min-height: 260px; }
}
.partner-media::after{
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(1000px 420px at 20% 0%, rgba(0,0,0,.0), rgba(0,0,0,.18)),
              linear-gradient(180deg, rgba(0,0,0,.0) 40%, rgba(0,0,0,.22) 100%);
  pointer-events:none;
}

.partner-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .85s ease;
}
.partner-slide img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s ease;
  filter: saturate(1.06) contrast(1.02);
}
.partner-slide.is-active{ opacity:1; }
.partner-slide.is-active img{ transform: scale(1); }

.partner-caption{
  position:absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(2,6,23,.36);
  backdrop-filter: blur(10px);
}
.partner-caption-k{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.partner-caption-t{
  font-weight: 950;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.95);
}

.partner-dots{
  position:absolute;
  top: 14px;
  right: 14px;
  display:flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(2,6,23,.28);
  backdrop-filter: blur(10px);
}
.partner-dot{
  appearance: none;
  -webkit-appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.38);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease;
}
.partner-dot:hover{ transform: scale(1.15); }
.partner-dot.is-active{
  background: rgba(var(--green-rgb), 1);
  transform: scale(1.25);
}

.partner-copy{ padding: 2px 2px; }
.partner-title{
  margin: 12px 0 10px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -.05em;
}
.partner-desc{
  margin: 0;
  color: rgba(15,23,42,.72);
  max-width: 68ch;
  line-height: 1.55;
  font-size: 14.5px;
}

.partner-points{
  margin-top: 12px;
  display:grid;
  gap: 9px;
}
.partner-point{
  appearance: none;
  -webkit-appearance: none;
  text-align:left;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.partner-point:hover{ transform: translateY(-2px); box-shadow: 0 18px 50px rgba(2,6,23,.08); }
.partner-point:focus{ outline: none; box-shadow: 0 0 0 4px rgba(var(--green-rgb),.22), 0 18px 50px rgba(2,6,23,.08); }
.partner-point.is-active{
  border-color: rgba(var(--green-rgb),.45);
  background: linear-gradient(180deg, rgba(var(--green-rgb),.12), rgba(255,255,255,.92));
}
.partner-point-k{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-d);
}
.partner-point-t{
  margin-top: 4px;
  font-weight: 950;
  letter-spacing: -.02em;
}
.partner-point-d{
  display:none;
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(15,23,42,.66);
}

.partner-actions{
  grid-column: 1 / -1;
  margin-top: 0;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.partner-note{
  color: rgba(15,23,42,.62);
  font-weight: 750;
  font-size: 13px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}



/* Partner panel: real media helpers (picture/video) */
.partner-slide{ z-index: 0; }
.partner-media::after{ z-index: 1; }
.partner-caption{ z-index: 2; }
.partner-dots{ z-index: 2; }
.partner-proof{ z-index: 2; }

.partner-slide picture{ width:100%; height:100%; display:block; }
.partner-slide picture img{ width:100%; height:100%; }

.partner-slide video{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: none;
  filter: none;
}
.partner-slide.is-active video{ transform: none; }

.partner-proof{
  position:absolute;
  top: 14px;
  left: 14px;
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(2,6,23,.28);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.9);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .02em;
}
.partner-proof-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(var(--green-rgb), 1);
  box-shadow: 0 0 0 4px rgba(var(--green-rgb), .18);
}

.partner-guarantee{
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(var(--green-rgb),.26);
  background: radial-gradient(700px 220px at 10% 0%, rgba(var(--green-rgb),.18), transparent 62%),
              rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(2,6,23,.06);
}
.partner-guarantee-head{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.partner-guarantee-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(var(--green-rgb),.14);
  border: 1px solid rgba(var(--green-rgb),.26);
  color: var(--green-d);
  flex: 0 0 auto;
}
.partner-guarantee-title{
  font-weight: 1000;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.partner-guarantee-text{
  margin-top: 4px;
  color: rgba(15,23,42,.72);
  line-height: 1.6;
  font-size: 13px;
}
.partner-guarantee-list{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 6px;
}
.partner-guarantee-list li{
  display:flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(15,23,42,.7);
  line-height: 1.5;
}
.partner-guarantee-link{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 900;
  color: var(--green-d);
  text-decoration: none;
}
.partner-guarantee-link:hover{ text-decoration: underline; }


@media (min-width: 980px){
  .partner-guarantee-list{
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
  }
  .partner-guarantee-list li:nth-child(3){
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce){
  .partner-slide{ transition: none; }
  .partner-slide img{ transition: none; transform: none !important; }
  .partner-slide video{ transition: none; transform: none !important; }
  .partner-point{ transition: none; }
  .partner-dot{ transition: none; }
}



/* Safety: hide legacy watermark layer if present */
.yl-watermark{ display:none !important; }


.partner-point.is-active .partner-point-d{
  display:block;
}