/* ============================================================
   Mailer Boxes Co — Refined Design System
   Deep sage green + kraft, trustworthy & premium
   ============================================================ */

:root {
  /* Brand — deep, rich green */
  --ink:        #13241C;
  --green-950:  #0F2A20;
  --green-900:  #163A2C;
  --green-800:  #1C4A38;
  --green-700:  #235C44;
  --green-600:  #2C7553;   /* primary */
  --green-500:  #3A8E66;
  --green-400:  #5FA984;
  --green-100:  #E2EFE8;
  --green-50:   #F1F7F3;

  /* Kraft / warm accent (cardboard) */
  --kraft-700:  #8A6234;
  --kraft-600:  #B98B4F;
  --kraft-500:  #C99A60;
  --kraft-200:  #EAD9BD;
  --kraft-100:  #F3E9D8;

  /* Neutrals */
  --paper:      #FAF9F5;
  --white:      #FFFFFF;
  --line:       #E6E8E3;
  --line-soft:  #EFF0EC;
  --gray-900:   #1B2620;
  --gray-700:   #43504A;
  --gray-600:   #52605A;
  --gray-500:   #71807A;
  --gray-400:   #97A39D;
  --gray-300:   #C3CAC5;

  /* Soft tints for product/placeholder panels */
  --tint-sage:  #E4EFE8;
  --tint-kraft: #F0E4CE;
  --tint-blush: #F4E2DD;
  --tint-slate: #E3E8EC;
  --tint-butter:#F6ECC9;
  --tint-lilac: #EAE4F1;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(19,36,28,.05);
  --shadow-sm: 0 2px 10px rgba(19,36,28,.06);
  --shadow:    0 12px 30px -12px rgba(19,36,28,.16);
  --shadow-lg: 0 30px 60px -22px rgba(19,36,28,.28);

  --maxw: 1240px;
  --font-sans: "Hanken Grotesk", system-ui, sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }

/* Lucide icons size with surrounding font-size */
svg.lucide { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; stroke-width: 1.9; flex: 0 0 auto; }
.brand-svg { fill: currentColor; width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.3rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; text-wrap: pretty; }

.serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; letter-spacing: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-sm { padding: clamp(40px, 5vw, 70px) 0; }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }
.bg-green { background: var(--green-900); color: #EAF2EC; }
.bg-tint  { background: var(--green-50); }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }
.flex { display: flex; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--kraft-600); border-radius: 2px; }
.bg-green .eyebrow { color: var(--green-400); }
.lead { font-size: 1.18rem; color: var(--gray-700); max-width: 56ch; }
.bg-green .lead { color: #BFD3C7; }
.muted { color: var(--gray-500); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 16px 28px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn i { font-size: 1.15em; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 10px 22px -10px rgba(44,117,83,.7); }
.btn-primary:hover { background: var(--green-700); box-shadow: 0 14px 26px -8px rgba(44,117,83,.75); }
.btn-kraft { background: var(--kraft-600); color: #fff; }
.btn-kraft:hover { background: var(--kraft-700); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green-900); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green-600); color: var(--green-700); }
.btn-ghost-white { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-white:hover { background: #fff; color: var(--green-900); }
.btn-lg { padding: 19px 34px; font-size: 1.06rem; }
.btn-sm { padding: 11px 18px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--green-50); color: var(--green-700);
  font-size: .82rem; font-weight: 700; border: 1px solid var(--green-100);
}
.badge {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 5px 11px; border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
}
.badge-new { background: var(--kraft-600); color: #fff; }
.badge-sale { background: #C2452E; color: #fff; }
.badge-stock { background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); text-transform: none; letter-spacing: 0; font-weight: 700; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* ---------- Placeholder media tiles ---------- */
.ph-media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--tint-sage); display: grid; place-items: center;
  aspect-ratio: 1 / 1;
}
.ph-media .glyph {
  display: grid; place-items: center; gap: 12px; text-align: center;
  color: rgba(19,36,28,.4); padding: 18px;
}
/* Real product photo fills the tile; if it 404s, onerror removes it and the tint+glyph show */
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; background: #fff; }
.ph-media .glyph i { font-size: 2.6rem; }
.ph-media .glyph span { font-size: .8rem; font-weight: 700; letter-spacing: .04em; max-width: 16ch; }
.ph-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.35), transparent 45%);
  pointer-events: none;
}
.t-sage   { background: var(--tint-sage); }
.t-kraft  { background: var(--tint-kraft); }
.t-blush  { background: var(--tint-blush); }
.t-slate  { background: var(--tint-slate); }
.t-butter { background: var(--tint-butter); }
.t-lilac  { background: var(--tint-lilac); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .86rem; font-weight: 700; color: var(--gray-700); }
.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 14px 16px; transition: border-color .15s, box-shadow .15s;
}
.input::placeholder, .textarea::placeholder { color: var(--gray-400); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(58,142,102,.13);
}
.textarea { resize: vertical; min-height: 120px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2371807A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.file-input {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border: 1.5px dashed var(--gray-300); border-radius: 12px; color: var(--gray-500);
  font-size: .92rem; background: var(--green-50);
}
.file-input i { font-size: 1.3rem; color: var(--green-600); }

/* ---------- Trust / payment strip ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.trust-item .ic { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; font-size: 1.4rem; }
.trust-item h4 { margin: 0 0 3px; font-size: 1rem; }
.trust-item p { margin: 0; font-size: .88rem; color: var(--gray-500); }

/* ---------- Breadcrumb ---------- */
.crumb { background: var(--green-50); border-bottom: 1px solid var(--line-soft); }
.crumb .container { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; gap: 10px; }
.crumb h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.crumb nav { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--gray-500); }
.crumb nav a:hover { color: var(--green-600); }
.crumb nav i { font-size: .9rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-topbar { background: var(--green-900); color: #CFE0D6; font-size: .82rem; }
.site-topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.site-topbar a { color: #CFE0D6; transition: color .15s; white-space: nowrap; }
.site-topbar a:hover { color: #fff; }
.site-topbar ul { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.site-topbar .socials { gap: 16px; font-size: 1rem; }
.topbar-links { gap: 22px; }
.topbar-links li:not(:last-child) { position: relative; }
.topbar-links li:not(:last-child)::after { content: ""; position: absolute; right: -11px; top: 50%; transform: translateY(-50%); width: 1px; height: 12px; background: rgba(255,255,255,.2); }

.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-main .container { display: flex; align-items: center; gap: 28px; height: 84px; }
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand .mark { width: 44px; height: 44px; border-radius: 12px; background: var(--green-600); color: #fff; display: grid; place-items: center; font-size: 1.5rem; box-shadow: var(--shadow-sm); }
.brand .wordmark { font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; line-height: 1; }
.brand .wordmark small { display: block; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--kraft-600); font-weight: 700; margin-top: 3px; }
.header-search { flex: 1 1 auto; max-width: 460px; position: relative; }
.header-search input { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-pill); padding: 13px 52px 13px 20px; font-size: .95rem; background: var(--paper); }
.header-search input:focus { outline: none; border-color: var(--green-500); background: #fff; }
.header-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border: none; border-radius: 50%; background: var(--green-600); color: #fff; display: grid; place-items: center; font-size: 1.1rem; }
.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; flex: 0 0 auto; }
.icon-link { display: flex; align-items: center; gap: 8px; color: var(--gray-700); font-weight: 600; font-size: .92rem; }
.icon-link .ic { position: relative; font-size: 1.65rem; display: flex; }
.icon-link .count { position: absolute; top: -6px; right: -7px; width: 18px; height: 18px; background: var(--green-600); color: #fff; border-radius: 50%; font-size: .66rem; font-weight: 800; display: grid; place-items: center; }
.icon-link:hover { color: var(--green-700); }

.header-nav { border-bottom: 1px solid var(--line); background: var(--white); }
.header-nav .container { display: flex; align-items: stretch; height: 58px; }
.view-products { display: flex; align-items: center; gap: 10px; font-weight: 700; padding: 0 24px 0 0; color: var(--ink); border-right: 1px solid var(--line); }
.view-products i { font-size: 1.3rem; color: var(--green-600); }
.main-nav { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0 0 0 24px; gap: 4px; }
.main-nav > li { display: flex; align-items: center; position: relative; }
.main-nav > li > a { display: flex; align-items: center; gap: 6px; padding: 0 13px; height: 100%; font-weight: 600; font-size: .97rem; white-space: nowrap; color: var(--gray-700); transition: color .15s; }
.main-nav > li > a:hover, .main-nav > li.active > a { color: var(--green-700); }
.main-nav .badge-new { font-size: .58rem; padding: 2px 6px; top: 2px !important; left: 8px !important; }
.view-products { white-space: nowrap; }

.dropdown {
  position: absolute; top: 100%; left: 8px; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .18s ease; z-index: 60;
}
.main-nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 9px; font-size: .92rem; font-weight: 600; color: var(--gray-700); }
.dropdown a:hover { background: var(--green-50); color: var(--green-700); }
.header-phone { margin-left: auto; display: flex; align-items: center; gap: 10px; background: var(--green-600); color: #fff; font-weight: 700; padding: 0 22px; white-space: nowrap; }
.header-phone:hover { background: var(--green-700); }
.header-phone i { font-size: 1.5rem; }

.burger { display: none; background: none; border: none; font-size: 1.9rem; color: var(--ink); }

/* Mobile drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(15,42,32,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 90; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; left: 0; height: 100%; width: 320px; max-width: 86vw; background: #fff; z-index: 100; transform: translateX(-100%); transition: transform .28s ease; padding: 24px; overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer .brand { margin-bottom: 24px; }
.drawer nav a { display: block; padding: 14px 4px; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
.drawer .sub a { font-weight: 500; font-size: .95rem; color: var(--gray-600); padding-left: 16px; }
.drawer-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 1.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: #BBD0C2; padding-top: 72px; }
.site-footer a { color: #BBD0C2; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
.site-footer .brand .wordmark { color: #fff; }
.site-footer .f-blurb { font-size: .92rem; line-height: 1.7; margin: 20px 0 24px; color: #A7C0B1; max-width: 34ch; }
.footer-col h5 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: .93rem; }
.footer-need li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; margin-bottom: 14px; }
.footer-need i { color: var(--green-400); font-size: 1.1rem; margin-top: 2px; }
.f-socials { display: flex; gap: 12px; }
.f-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1.1rem; }
.f-socials a:hover { background: var(--green-600); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .85rem; }
.pay-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.pay-badges span { background: rgba(255,255,255,.92); color: #1B2620; font-weight: 800; font-size: .66rem; letter-spacing: .02em; padding: 5px 9px; border-radius: 5px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: linear-gradient(160deg, var(--green-50) 0%, var(--paper) 60%); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -120px; right: -80px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(44,117,83,.10), transparent 70%); }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 64px; padding-bottom: 64px; position: relative; }
.hero h1 { margin-bottom: 20px; font-size: clamp(2.3rem, 4vw, 3.6rem); line-height: 1.1; }
.hero .lead { margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 34px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-stats .n { font-size: 1.9rem; font-weight: 800; color: var(--green-700); letter-spacing: -.02em; }
.hero-stats .l { font-size: .82rem; color: var(--gray-500); font-weight: 600; }
.hero-visual { position: relative; }
.hero-box { border-radius: var(--radius-xl); aspect-ratio: 4/3.4; background: linear-gradient(150deg, var(--green-500), var(--green-700)); box-shadow: var(--shadow-lg); display: grid; place-items: center; position: relative; overflow: hidden; }
.hero-box .lid { position: absolute; font-weight: 800; color: rgba(255,255,255,.95); font-size: 2rem; display: flex; align-items: center; gap: 10px; letter-spacing: -.02em; }
.hero-floats { position: absolute; inset: 0; pointer-events: none; }
.float-card { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .9rem; }
.float-card i { width: 38px; height: 38px; border-radius: 10px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; font-size: 1.2rem; }
.float-a { top: 22px; left: -26px; }
.float-b { bottom: 30px; right: -22px; }

/* Inline quote card (hero / sticky) */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; }
.quote-card h3 { margin-bottom: 4px; }
.quote-card .sub { color: var(--gray-500); font-size: .92rem; margin-bottom: 20px; }
.quote-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-400); }
.product-card .pc-media { aspect-ratio: 1/1; border-radius: var(--radius); margin-bottom: 16px; }
.product-card .pc-badge { position: absolute; top: 22px; left: 22px; z-index: 2; }
.product-card h4 { font-size: 1.02rem; margin: 0 0 6px; }
.product-card .by { font-size: .8rem; color: var(--gray-500); display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.product-card .by i { color: var(--green-600); }
.pc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.price .qty { font-weight: 500; font-size: .82rem; color: var(--gray-500); }
.price .was { font-weight: 600; font-size: .82rem; color: var(--gray-400); text-decoration: line-through; display: block; }
.add-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); font-weight: 700; font-size: .85rem; padding: 10px 16px; border-radius: var(--radius-pill); transition: .15s; }
.add-btn:hover { background: var(--green-600); color: #fff; border-color: var(--green-600); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--green-200, var(--green-100)); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; font-size: 1.05rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .pm { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; font-size: 1.1rem; transition: .2s; }
.faq-item.open .pm { background: var(--green-600); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 24px 22px; margin: 0; color: var(--gray-700); font-size: .98rem; }

/* ============================================================
   Misc sections
   ============================================================ */
.brand-strip { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.brand-logo { font-family: var(--font-serif); font-style: normal; font-size: 1.5rem; font-weight: 600; color: var(--gray-400); letter-spacing: .02em; transition: color .2s; }
.brand-logo:hover { color: var(--gray-700); }

.value-card { padding: 30px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.value-card .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; }
.value-card p { margin: 0; color: var(--gray-700); font-size: .96rem; }

.feature-cat { text-align: center; }
.feature-cat .ph-media { aspect-ratio: 1/1; border-radius: 50%; max-width: 130px; margin: 0 auto 14px; }
.feature-cat h4 { font-size: .98rem; margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cols-2 { columns: 2; column-gap: 40px; }

.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .pc-media { aspect-ratio: 16/10; border-radius: 0; }
.blog-card .body { padding: 22px 24px 26px; }
.blog-card .meta { font-size: .78rem; font-weight: 700; color: var(--green-600); text-transform: uppercase; letter-spacing: .06em; }
.blog-card h4 { font-size: 1.12rem; margin: 10px 0 0; }

/* Section heading row with arrows / link */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.head-row .section-head { margin-bottom: 0; }
.link-arrow { font-weight: 700; color: var(--green-700); display: inline-flex; align-items: center; gap: 7px; }
.link-arrow:hover { gap: 11px; }

/* Sidebar quote (sticky) */
.sticky-quote { position: sticky; top: 110px; }

/* Tabs */
.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn { background: none; border: none; padding: 14px 20px; font-weight: 700; color: var(--gray-500); border-bottom: 2.5px solid transparent; margin-bottom: -1px; }
.tab-btn.active { color: var(--green-700); border-color: var(--green-600); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 15px 18px; border-bottom: 1px solid var(--line-soft); font-size: .95rem; vertical-align: top; }
.spec-table tr td:first-child { font-weight: 700; width: 34%; color: var(--ink); }
.spec-table tr:nth-child(odd) { background: var(--green-50); }
.spec-table tr td:last-child { color: var(--gray-700); }

/* Reveal on scroll — content is visible by default; .in plays a subtle slide-in.
   No opacity gating, so content can never be stuck hidden. */
.reveal { }
.reveal.in { animation: revealIn .55s cubic-bezier(.2,.7,.2,1) both; }
@keyframes revealIn { from { transform: translateY(18px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal.in { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1140px) {
  .header-phone { display: none; }
  .main-nav > li > a { padding: 0 11px; }
}
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-need { grid-column: span 3; }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .header-search { display: none; }
  .header-nav { display: none; }
  .burger { display: block; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .cols-2 { columns: 1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .header-main .container { height: 70px; gap: 14px; }
  .header-actions { gap: 12px; }
  .icon-link span:not(.count) { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col.f-brand, .footer-need { grid-column: span 2; }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .quote-grid-2 { grid-template-columns: 1fr; }
  .topbar-links { display: none !important; }
  .float-card { display: none; }
  .btn { padding: 14px 22px; }
}
