/* =========================================================
   KUMAGO 中古家電 — Landing Page
   Brand palette  : 草綠 #8CC63F · 炭灰 #3B3B3B · 米白 #FAF6EF
                    奶茶 #EFE3D2 · 暖棕 #A9794F · 淺木 #D8C3A5
   Type           : Baloo 2 / Noto Sans TC (headings) · Nunito (body)
                    Quicksand (handwritten accents)
   Ratio guide    : off-white 60% · cream/wood 25% · green 10% · charcoal 5%
   ========================================================= */

:root {
  --green:        #8CC63F;
  --green-deep:   #76b02f;
  --charcoal:     #3B3B3B;
  --offwhite:     #FAF6EF;
  --cream:        #EFE3D2;
  --brown:        #A9794F;
  --wood:         #D8C3A5;

  --ink:          #3B3B3B;
  --ink-soft:     #6c655c;
  --line:         #e7ddcd;
  --white:        #ffffff;

  --radius:       22px;
  --radius-lg:    30px;
  --pill:         999px;
  --shadow-sm:    0 4px 16px rgba(59,59,59,.06);
  --shadow:       0 14px 36px rgba(59,59,59,.10);
  --shadow-green: 0 12px 26px rgba(140,198,63,.34);
  --maxw:         1180px;
  --ease:         cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: "Nunito", "Noto Sans TC", "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* keyboard focus — visible, on-brand */
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

h1, h2, h3, h4 {
  font-family: "Baloo 2", "Noto Sans TC", sans-serif;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: .2px;
}

/* prefer Japanese-glyph font when in JA mode */
html[lang="ja"] body { font-family: "Nunito", "Noto Sans JP", "Noto Sans TC", system-ui, sans-serif; }
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3, html[lang="ja"] h4 { font-family: "Baloo 2", "Noto Sans JP", sans-serif; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons (all pill / 999px) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Baloo 2", "Noto Sans TC", sans-serif;
  font-weight: 600; font-size: 1.02rem;
  padding: 14px 30px; border-radius: var(--pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-3px); box-shadow: 0 18px 32px rgba(140,198,63,.42); }
.btn-secondary { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-secondary:hover { background: var(--brown); color: #fff; transform: translateY(-3px); }
.btn-sm { padding: 10px 22px; font-size: .95rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,239,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 50px; width: auto; object-fit: contain; transition: transform .3s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--charcoal); letter-spacing: .5px; }
.brand-sub { font-family: "Noto Sans TC", sans-serif; font-weight: 700; font-size: .72rem; color: var(--green-deep); letter-spacing: 3px; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) { font-weight: 700; font-size: .98rem; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2.5px;
  background: var(--green); border-radius: 2px; transition: width .3s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--charcoal); }
.nav > a:not(.btn):hover::after { width: 100%; }

/* language toggle */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--pill);
  padding: 3px; cursor: pointer;
}
.lang-opt {
  font-family: "Baloo 2", "Noto Sans TC", sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--ink-soft); padding: 4px 11px; border-radius: var(--pill);
  line-height: 1.4; transition: background .2s, color .2s;
}
.lang-opt.is-active { background: var(--green); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--charcoal); border-radius: 3px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- shared section ---------- */
.section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-sub { color: var(--ink-soft); margin-top: 14px; font-size: 1.08rem; }

.eyebrow {
  font-family: "Quicksand", sans-serif; font-weight: 700;
  color: var(--green-deep); font-size: 1.05rem; letter-spacing: .5px; margin-bottom: 10px;
}
.eyebrow-brown { color: var(--brown); }
.eyebrow-light { color: #eaffd1; }

.hl { color: var(--green-deep); position: relative; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 6%; height: 30%;
  background: rgba(140,198,63,.28); border-radius: 8px; z-index: -1;
}

/* ---------- hero ---------- */
.hero {
  position: relative; padding: 70px 0 60px; overflow-x: clip;
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(140,198,63,.16), transparent 60%),
    radial-gradient(720px 420px at -6% 8%, rgba(216,195,165,.30), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; margin: 6px 0 20px; }
.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0 26px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .96rem; color: var(--charcoal); }
.ico { width: 22px; height: 22px; fill: none; stroke: var(--green-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
  border-radius: 40px; padding: 38px 34px 42px;
  box-shadow: var(--shadow); position: relative; width: min(440px, 100%);
  border: 1px solid var(--line); overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 40px;
  background:
    radial-gradient(120px 120px at 84% 86%, rgba(216,195,165,.30), transparent 70%),
    radial-gradient(140px 140px at 14% 18%, rgba(140,198,63,.12), transparent 70%);
}
/* soft green spotlight behind the mascot */
.hero-spotlight {
  position: absolute; z-index: 0; width: 78%; aspect-ratio: 1; left: 50%; top: 52%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(140,198,63,.22), rgba(140,198,63,.07) 55%, transparent 72%);
}
.hero-card img {
  position: relative; z-index: 1; display: block; margin: 0 auto;
  width: auto; max-height: 360px;
  filter: drop-shadow(0 16px 22px rgba(59,59,59,.16));
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(-1deg); } }

.float-chip {
  position: absolute; background: var(--white); border-radius: var(--pill);
  padding: 10px 18px; box-shadow: var(--shadow); font-size: .86rem; font-weight: 700;
  display: flex; flex-direction: column; line-height: 1.25; border: 1px solid var(--line);
}
.float-chip strong { color: var(--green-deep); font-family: "Baloo 2", sans-serif; }
.chip-1 { top: 14%; left: -4%; animation: float 5s ease-in-out infinite; }
.chip-2 { bottom: 12%; right: -6%; animation: float 5s ease-in-out infinite .8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- stats ---------- */
.stats {
  margin-top: 64px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 30px 20px;
}
.stat { text-align: center; padding: 6px 10px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--line); }
.stat .num { display: block; font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--charcoal); }
.stat .num small { color: var(--green-deep); font-size: .6em; }
.stat .label { font-size: .92rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  display: flex; flex-direction: column; gap: 6px;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green); }
.cat-ico {
  width: 60px; height: 60px; border-radius: 18px; background: var(--offwhite);
  display: grid; place-items: center; margin-bottom: 12px; transition: background .28s;
}
.cat-card:hover .cat-ico { background: rgba(140,198,63,.16); }
.cat-ico svg { width: 32px; height: 32px; fill: none; stroke: var(--charcoal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cat-card:hover .cat-ico svg { stroke: var(--green-deep); }
.cat-card h3 { font-size: 1.3rem; }
.cat-card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--white); border-radius: var(--radius); padding: 34px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center;
  transition: transform .28s var(--ease);
}
.feature:hover { transform: translateY(-6px); }
.feat-ico {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(140,198,63,.14); display: grid; place-items: center;
}
.feat-ico svg { width: 36px; height: 36px; fill: none; stroke: var(--green-deep); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.28rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.step { position: relative; background: var(--cream); border-radius: var(--radius); padding: 36px 26px 30px; }
.step-num {
  position: absolute; top: -22px; left: 26px;
  width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: #fff;
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.5rem;
  display: grid; place-items: center; box-shadow: var(--shadow-green);
}
.step h3 { margin: 14px 0 8px; font-size: 1.24rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-media { position: relative; aspect-ratio: 4/3; display: grid; place-items: center; }
.media-mint { background: linear-gradient(150deg, #eef7df, #dfeec6); }
.media-sand { background: linear-gradient(150deg, #f6efe2, #ece0cd); }
.media-wood { background: linear-gradient(150deg, #f0e6d4, #e2d2b6); }
.product-ico { width: 78px; height: 78px; fill: none; stroke: var(--charcoal); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; opacity: .82; }
.tag {
  position: absolute; top: 14px; left: 14px; background: var(--brown); color: #fff;
  font-weight: 700; font-size: .76rem; padding: 5px 13px; border-radius: var(--pill);
  font-family: "Baloo 2", sans-serif; letter-spacing: .5px;
}
.tag-green { background: var(--green-deep); }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: .8rem; font-weight: 700; color: var(--brown); letter-spacing: .3px; }
.product-body h3 { font-size: 1.12rem; line-height: 1.35; }
.rating { color: #f0b429; font-size: .95rem; letter-spacing: 1px; font-weight: 700; }
.rating span { color: var(--ink-soft); margin-left: 4px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin: 4px 0 12px; }
.price { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--charcoal); }
.price-old { color: #b3a994; text-decoration: line-through; font-size: .92rem; }
.product-body .btn { margin-top: auto; }
.featured-cta { text-align: center; margin-top: 48px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.set-line-link { display: block; text-align: center; margin-top: 10px; font-size: .85rem; font-weight: 700; color: var(--green-deep); }
.set-line-link:hover { text-decoration: underline; }

/* ---------- testimonials ---------- */
.quote-grid { columns: 3; column-gap: 24px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); break-inside: avoid; margin-bottom: 24px; }
.quote .rating { margin-bottom: 14px; }
.quote blockquote { font-size: 1.04rem; color: #4d473f; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--green);
  color: #fff; font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.15rem;
  display: grid; place-items: center; flex: none;
}
.quote figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.3; font-size: .9rem; color: var(--ink-soft); }
.quote figcaption strong { color: var(--charcoal); font-size: 1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #7fb838, var(--green) 55%, #9bd352);
  padding: 90px 0;
}
.cta-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cta-text h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.cta-text p { color: rgba(255,255,255,.94); margin-top: 14px; font-size: 1.1rem; max-width: 460px; }
.cta-contacts { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 24px; }
.cta-contacts li { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; }
.cta-contacts .ico { stroke: #fff; }

.cta-line-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 38px 30px;
  box-shadow: var(--shadow); text-align: center;
}
.cta-line-avatar {
  display: inline-block; width: 84px; height: 84px; border-radius: 22px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.cta-line-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-line-card h3 { margin-top: 18px; font-size: 1.5rem; color: var(--charcoal); }
.cta-line-card > p { margin-top: 10px; color: var(--ink-soft); font-size: 1rem; max-width: 340px; margin-inline: auto; }
.contact-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contact-btns .btn { gap: 10px; }
.chan-ico { width: 22px; height: 22px; fill: #fff; flex: none; }
.btn-line { background: #06C755; color: #fff; }
.btn-line:hover { background: #05b34c; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebd5b; }
.btn-wechat { background: #07C160; color: #fff; }
.btn-wechat:hover { background: #06a854; }
.cta-line-note { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: #d8d4cd; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.brand-footer { align-items: center; }
.footer-mark {
  width: 60px; height: 60px; border-radius: 18px; flex: none;
  background: var(--offwhite); display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .3s var(--ease);
}
.footer-mark img { width: 74%; height: 74%; object-fit: contain; }
.brand-footer:hover .footer-mark { transform: rotate(-4deg) scale(1.05); }
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-sub { color: var(--green); }
.footer-tag { margin-top: 18px; font-size: 1rem; color: #b8b3aa; }
.footer-tag em { color: var(--green); font-style: normal; font-family: "Quicksand", sans-serif; font-weight: 600; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-col a { display: block; color: #b8b3aa; font-size: .95rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--green); padding-left: 4px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; }
.footer-bottom p { font-size: .88rem; color: #908b82; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--green); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { order: 2; }
  /* cap the visual to the card width and pin chips to its edges so they
     can't float past the viewport once the hero stacks to one column */
  .hero-visual { order: 1; width: min(440px, 100%); margin-inline: auto; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .lede { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .feature-grid, .steps, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { columns: 2; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { row-gap: 44px; }
}
/* nav collapses to hamburger before the wide desktop nav can overflow (~900px) */
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--offwhite); padding: 18px 24px 26px; gap: 4px;
    box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    transform: translateY(-150%); transition: transform .4s var(--ease); visibility: hidden;
  }
  .nav.open { transform: none; visibility: visible; }
  .nav > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .quote-grid { columns: 1; max-width: 560px; margin-inline: auto; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px 0; padding: 26px 14px; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
}
@media (max-width: 480px) {
  .cat-grid, .feature-grid, .steps, .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* ---------- rental set cards ---------- */
.sets-grid { grid-template-columns: repeat(3, 1fr); max-width: 1040px; margin-inline: auto; }
.set-card .product-media { aspect-ratio: 16/7; }
.set-letter {
  font-family: "Baloo 2", sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 3.4rem); color: var(--charcoal); opacity: .8; line-height: 1;
}
.set-featured { outline: 2px solid var(--green-deep); outline-offset: -2px; }
.set-list { list-style: none; margin: 4px 0 6px; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.set-list li { position: relative; padding-left: 22px; font-size: .96rem; color: var(--ink-soft); font-weight: 600; }
.set-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 6px;
  border-left: 2px solid var(--green-deep); border-bottom: 2px solid var(--green-deep);
  transform: rotate(-45deg) translateY(-2px);
}
.set-term { font-size: .82rem; color: var(--brown); font-weight: 700; margin: 2px 0 12px; }
.plans-note {
  max-width: 760px; margin: 34px auto 0; text-align: center;
  font-size: .88rem; color: var(--ink-soft); line-height: 1.7;
}
.cta-contacts a { display: flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; }
.cta-contacts a:hover { text-decoration: underline; }

@media (max-width: 820px) {
  .sets-grid { grid-template-columns: 1fr; max-width: 460px; }
  .set-card .product-media { aspect-ratio: 16/6; }
}
