/* Whynew.in storefront */
:root {
  --brand: #2b2a8c; --brand-2: #1f86db; --brand-3: #5b3fd6; --ink: #0f1222; --ink-2: #3b4056; --muted: #6b7185;
  --line: #e6e8f0; --soft: #f5f6fb; --card: #fff; --green: #16a34a; --red: #dc2626; --amber: #d97706; --wa: #1faa55;
  --grad: linear-gradient(120deg, #2b2a8c 0%, #3b49c9 45%, #1f86db 100%);
  --r: 14px; --r-sm: 10px; --shadow: 0 1px 2px rgba(16,18,34,.05), 0 6px 20px rgba(16,18,34,.06);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: #fff; font-size: 15px; line-height: 1.55; }
body.bg-soft { background: var(--soft); }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-3); }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); } h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); } h3 { font-size: 1.12rem; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
.muted { color: var(--muted); } .small { font-size: .85rem; } .center { text-align: center; } .hidden { display: none !important; }
.green { color: var(--green) !important; } .danger { color: var(--red) !important; }
.ic { flex: none; vertical-align: middle; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border-radius: 999px; border: 1.5px solid transparent;
  font: 600 .95rem var(--font); cursor: pointer; text-decoration: none; transition: .15s; white-space: nowrap; line-height: 1.2; }
.btn-sm { padding: 8px 14px; font-size: .85rem; } .btn-lg { padding: 14px 26px; font-size: 1rem; } .btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(43,42,140,.25); } .btn-primary:hover { color: #fff; filter: brightness(1.08); }
.btn-dark { background: var(--ink); color: #fff; } .btn-dark:hover { background: #262a44; color: #fff; }
.btn-outline { border-color: var(--line); background: #fff; color: var(--ink); } .btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--ink); } .btn-light:hover { color: var(--brand); }
.btn-wa { background: var(--wa); color: #fff; } .btn-wa:hover { background: #178f47; color: #fff; }
.btn-link, .btn-link:hover { background: none; border: 0; color: var(--brand); padding: 6px 0; font: 600 .9rem var(--font); cursor: pointer; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.icon-btn { background: none; border: 0; padding: 8px; border-radius: 10px; cursor: pointer; color: var(--ink); display: inline-flex; }
.icon-btn:hover { background: var(--soft); }

/* announcement */
.announce { background: #11133a; color: #dfe3ff; font-size: .82rem; overflow: hidden; white-space: nowrap; }
.announce-track { display: inline-flex; gap: 48px; padding: 8px 0; animation: marquee 38s linear infinite; }
.announce span { display: inline-flex; align-items: center; gap: 6px; } .announce .ic { color: #7cc3ff; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-row { display: flex; align-items: center; gap: 22px; height: 70px; }
.logo { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; }
.logo img { width: 40px; height: auto; } .logo b { font-weight: 800; color: var(--brand); } .logo i { font-style: normal; color: var(--muted); font-weight: 600; font-size: .9rem; }
.logo-light { color: #fff; } .logo-light b { color: #8fb8ff; } .logo-light i { color: #9aa0bd; }
.main-nav { display: flex; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; padding: 10px 12px; color: var(--ink-2); font-weight: 600; font-size: .92rem; border-radius: 10px; }
.nav-item > a:hover { color: var(--brand); background: var(--soft); }
.nav-accent { color: var(--brand-3) !important; }
.drop { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 14px; min-width: 220px; gap: 24px; }
.has-drop:hover .drop, .has-drop:focus-within .drop { display: flex; }
.drop a { display: flex; justify-content: space-between; gap: 16px; padding: 7px 10px; border-radius: 8px; color: var(--ink-2); font-size: .9rem; }
.drop a:hover { background: var(--soft); color: var(--brand); } .drop small { color: var(--muted); }
.drop-col { display: flex; flex-direction: column; min-width: 170px; } .drop h6 { margin: 4px 10px 6px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.has-drop:hover .drop-grid, .has-drop:focus-within .drop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 8px; min-width: 360px; }
.search { flex: 1; display: flex; align-items: center; gap: 8px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 0 16px; max-width: 380px; margin-left: auto; color: var(--muted); }
.search input { border: 0; background: none; outline: none; padding: 11px 0; width: 100%; font: 500 .9rem var(--font); color: var(--ink); }
.search:focus-within { border-color: var(--brand); background: #fff; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-link { position: relative; display: flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.cart-count { position: absolute; top: -8px; left: 12px; background: var(--brand-3); color: #fff; font-size: .7rem; min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center; padding: 0 4px; }
.cart-count:empty { display: none; }
.nav-toggle { display: none; }
.flash-wrap { padding-top: 16px; }

/* alerts & tags */
.alert { padding: 12px 16px; border-radius: var(--r-sm); margin-bottom: 14px; font-weight: 500; font-size: .92rem; }
.alert-success { background: #e9f9ef; color: #0f6b33; border: 1px solid #bfe9cf; } .alert-error { background: #fdecec; color: #9b1c1c; border: 1px solid #f6c9c9; }
.alert-info { background: #eaf2ff; color: #1c3d8f; border: 1px solid #c8dafc; }
.tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.tag-green { background: #e6f7ec; color: #0f6b33; } .tag-red { background: #fdecec; color: #9b1c1c; } .tag-amber { background: #fff4e0; color: #8a4b00; }
.tag-blue { background: #e8efff; color: #2b2a8c; } .tag-grey { background: #eef0f4; color: #4b5064; }

/* hero */
.hero { background: radial-gradient(1200px 500px at 85% 20%, #e7ecff 0%, transparent 60%), linear-gradient(180deg, #f7f8ff, #fff); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--brand); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.08rem; color: var(--ink-2); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--ink-2); font-weight: 600; font-size: .9rem; }
.hero-points li { display: flex; align-items: center; gap: 6px; } .hero-points .ic { color: var(--brand-2); }
.hero-art { position: relative; min-height: 360px; display: grid; place-items: center; }
.hero-blob { position: absolute; inset: 8% 6%; background: var(--grad); border-radius: 42% 58% 55% 45% / 50% 40% 60% 50%; opacity: .95; }
.hero-laptop { position: relative; width: 82%; filter: drop-shadow(0 30px 40px rgba(20,20,80,.35)); }
.float-card { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 12px 16px; display: flex; gap: 10px; align-items: center; font-size: .85rem; }
.float-card small { display: block; color: var(--muted); } .float-card .ic { color: var(--green); }
.fc-1 { left: 0; bottom: 14%; } .fc-2 { right: 2%; top: 10%; flex-direction: column; gap: 0; } .fc-2 b { font-size: 1.5rem; color: var(--brand); }

/* sections */
.section { padding: 44px 20px 8px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.section-head h2 { margin: 0; }
.kicker { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--brand-3); margin-bottom: 4px; }
.kicker-light { color: #9db8ff; }
.link-more { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: .9rem; } .link-more.light { color: #fff; }
.cat-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: -18px; position: relative; }
.cat-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--ink); box-shadow: var(--shadow); transition: .15s; }
.cat-tile:hover { transform: translateY(-3px); border-color: #c9ccf5; color: var(--ink); }
.cat-tile img { height: 64px; object-fit: contain; } .cat-tile span { font-weight: 700; } .cat-tile small { color: var(--muted); font-size: .78rem; }

/* product grid & card */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-products.grid-3 { grid-template-columns: repeat(3, 1fr); }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: .18s; }
.pcard:hover { box-shadow: 0 10px 30px rgba(16,18,34,.10); transform: translateY(-2px); }
.pcard-img { position: relative; background: linear-gradient(180deg, #f6f7fc, #eef0f8); aspect-ratio: 4/3; display: grid; place-items: center; padding: 18px; }
.pcard-img img { max-height: 100%; object-fit: contain; }
.badge-off { position: absolute; top: 10px; left: 10px; background: var(--green); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; z-index: 1; }
.badge-grade { position: absolute; top: 10px; right: 10px; background: #fff; color: var(--ink-2); font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; border: 1px solid var(--line); }
.pcard-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard-brand { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.pcard h3 { font-size: .98rem; margin: 0; } .pcard h3 a { color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chips span { font-size: .72rem; background: var(--soft); border: 1px solid var(--line); color: var(--ink-2); padding: 2px 7px; border-radius: 6px; font-weight: 600; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price-row strong { font-size: 1.2rem; } .price-row s { color: var(--muted); font-size: .85rem; }
.pcard-meta { font-size: .76rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.pcard-meta .ic { color: var(--green); }
.add-form.added .btn { background: var(--green); }

.brand-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.brand-tile { border: 1px solid var(--line); border-radius: var(--r); padding: 18px; text-align: center; color: var(--ink); background: #fff; }
.brand-tile b { display: block; font-size: 1.1rem; } .brand-tile small { color: var(--muted); } .brand-tile:hover { border-color: var(--brand); color: var(--brand); }
.apple-band { background: #0c0d1d; color: #fff; padding: 48px 0; margin-top: 44px; }
.apple-band h2 { color: #fff; } .apple-band .pcard { border-color: #23253d; }
.budget-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.budget-tile { border: 1px solid var(--line); border-radius: var(--r); padding: 22px; color: var(--ink); background: linear-gradient(160deg, #fff, #f3f5ff); display: flex; flex-direction: column; }
.budget-tile small { color: var(--muted); font-weight: 600; } .budget-tile b { font-size: 1.7rem; letter-spacing: -.02em; } .budget-tile span { color: var(--ink-2); font-size: .88rem; }
.budget-tile:hover { border-color: var(--brand); color: var(--ink); }
.budget-tile.dark { background: var(--grad); color: #fff; border: 0; } .budget-tile.dark small, .budget-tile.dark span { color: #dfe6ff; }
.use-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1px solid var(--line); padding: 9px 18px; border-radius: 999px; color: var(--ink-2); font-weight: 600; font-size: .9rem; background: #fff; }
.pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card { border: 1px solid var(--line); border-radius: var(--r); padding: 20px; background: #fff; }
.why-card .ic { color: var(--brand-3); margin-bottom: 8px; } .why-card h4 { margin: 0 0 4px; } .why-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.expert-band { background: var(--grad); color: #fff; border-radius: 22px; padding: 34px 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.expert-band h2 { color: #fff; } .expert-band p { margin: 0; color: #e3e8ff; max-width: 560px; }
.expert-cta { display: flex; gap: 12px; flex-wrap: wrap; }
details.faq { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 0 18px; margin-bottom: 10px; background: #fff; }
details.faq summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
details.faq summary::after { content: '+'; font-size: 1.3rem; color: var(--brand); line-height: 1; }
details.faq[open] summary::after { content: '–'; }
details.faq > div { padding-bottom: 14px; color: var(--ink-2); }
.faq-hero { text-align: center; padding: 40px 0 10px; } .faq-hero .contact-btns { justify-content: center; }
.faq-group { margin-top: 32px; font-size: 1.1rem; }

/* shop */
.crumbs { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); padding-top: 18px; padding-bottom: 6px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); } .crumbs span { color: var(--ink-2); }
.shop-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; padding-bottom: 16px; flex-wrap: wrap; }
.shop-head h1 { margin: 0; }
.sort { display: flex; gap: 10px; align-items: center; } .sort label { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; }
.sort select, .filters select { padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px; font: 500 .9rem var(--font); background: #fff; }
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 26px; padding-bottom: 50px; align-items: start; }
.filters { position: sticky; top: 86px; border: 1px solid var(--line); border-radius: var(--r); padding: 16px; background: #fff; max-height: calc(100vh - 100px); overflow: auto; }
.fgroup { border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 12px; }
.fgroup h5 { margin: 0 0 8px; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.check, .radio { display: flex; align-items: center; gap: 8px; font-size: .9rem; padding: 3px 0; cursor: pointer; }
.check small { margin-left: auto; color: var(--muted); } .check input, .radio input { accent-color: var(--brand); width: 16px; height: 16px; }
.price-inputs { display: flex; align-items: center; gap: 6px; } .price-inputs input { width: 100%; padding: 8px; border: 1px solid var(--line); border-radius: 8px; font: 500 .85rem var(--font); }
.filters select { width: 100%; }
.pager { display: flex; gap: 6px; justify-content: center; margin: 28px 0; flex-wrap: wrap; }
.pager a { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); font-weight: 600; }
.pager a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.seo-copy { margin-top: 30px; padding: 22px; border-radius: var(--r); background: var(--soft); color: var(--ink-2); } .seo-copy h2 { font-size: 1.1rem; }
.empty { text-align: center; padding: 48px 20px; } .empty .ic { color: var(--muted); margin-bottom: 10px; }

/* product page */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 10px; padding-bottom: 20px; }
.gallery-main { position: relative; background: linear-gradient(180deg, #f6f7fc, #eceef8); border-radius: 20px; aspect-ratio: 4/3; display: grid; place-items: center; padding: 30px; }
.gallery-main img { max-height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; } .thumb { width: 70px; height: 56px; border: 1.5px solid var(--line); border-radius: 10px; background: #f6f7fc; padding: 4px; cursor: pointer; }
.thumb.active { border-color: var(--brand); } .thumb img { width: 100%; height: 100%; object-fit: contain; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.trust-row div { border: 1px solid var(--line); border-radius: 12px; padding: 10px; display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; line-height: 1.25; }
.trust-row .ic { color: var(--brand-3); }
.pdp-info h1 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-top: 6px; }
.pdp-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.pdp-price strong { font-size: 2rem; letter-spacing: -.02em; } .pdp-price s { color: var(--muted); }
.pdp-price .save { background: #e6f7ec; color: #0f6b33; font-weight: 700; font-size: .8rem; padding: 3px 8px; border-radius: 6px; }
.pdp-price small { width: 100%; color: var(--muted); font-size: .78rem; margin-top: -6px; }
.spec-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; }
.spec-chips div { display: flex; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font-weight: 600; font-size: .9rem; }
.spec-chips small { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; } .spec-chips .ic { color: var(--brand); }
.stock { font-weight: 600; color: var(--green); font-size: .9rem; margin: 0 0 10px; } .stock.low { color: var(--amber); }
.buy-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cod-note { display: flex; gap: 8px; align-items: center; background: #f1f8f3; border: 1px solid #cfead8; color: #185c30; padding: 10px 14px; border-radius: 12px; margin: 14px 0; font-size: .88rem; }
.contact-box { border: 1px dashed #c9ccf5; background: #f8f8ff; border-radius: 16px; padding: 16px; margin-top: 16px; }
.contact-box p { margin: 0 0 10px; }
.contact-btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0; }
.callback summary { cursor: pointer; font-weight: 700; color: var(--brand); margin-top: 6px; font-size: .9rem; }
.callback .form-grid { margin-top: 10px; grid-template-columns: 1fr 1fr; }
.pdp-details { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; padding-bottom: 20px; }
.spec-table { width: 100%; border-collapse: collapse; } .spec-table th, .spec-table td { text-align: left; padding: 10px 6px; border-bottom: 1px solid var(--line); font-size: .9rem; vertical-align: top; }
.spec-table th { color: var(--muted); font-weight: 600; width: 40%; }
.prose ul { padding-left: 20px; } .prose li { margin-bottom: 4px; }
.page-body { padding-bottom: 50px; } .page-body h2 { margin-top: 28px; font-size: 1.2rem; }
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: #fff; border-top: 1px solid var(--line); padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 -6px 20px rgba(0,0,0,.06); }
.sticky-buy > div { flex: 1; } .sticky-buy small { color: var(--green); font-weight: 700; }

/* cards / forms */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; margin-bottom: 16px; }
.card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; }
label { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
input, select, textarea { font: 500 .95rem var(--font); padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); width: 100%; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(43,42,140,.12); }
input[type=checkbox], input[type=radio] { width: auto; }
.form-grid { display: grid; gap: 14px; } .form-grid.two { grid-template-columns: 1fr 1fr; } .span2 { grid-column: span 2; }
.input-prefix { display: flex; } .input-prefix span { padding: 11px 12px; border: 1px solid var(--line); border-right: 0; border-radius: 10px 0 0 10px; background: var(--soft); font-weight: 600; }
.input-prefix input { border-radius: 0 10px 10px 0; }
.field-err { color: var(--red); font-weight: 600; font-size: .78rem; }
.inline-form { display: flex; gap: 8px; } .inline-form input { flex: 1; }

/* cart & checkout */
.checkout-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; padding-bottom: 18px; flex-wrap: wrap; }
.checkout-head h1 { margin: 0; display: flex; align-items: center; gap: 10px; }
.count-pill { font-size: .78rem; background: #ece9ff; color: var(--brand-3); padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.steps { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; align-items: center; font-size: .85rem; color: var(--muted); font-weight: 600; }
.steps li { display: flex; align-items: center; gap: 6px; } .steps li + li::before { content: ''; width: 36px; height: 1px; background: var(--line); margin-right: 4px; }
.steps i { font-style: normal; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; font-size: .72rem; }
.steps .on { color: var(--ink); } .steps .on i, .steps .done i { background: var(--ink); color: #fff; border-color: var(--ink); } .steps .done { color: var(--ink); }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 22px; padding-bottom: 50px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 84px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart-line:first-child { padding-top: 0; }
.cart-thumb { background: var(--soft); border-radius: 12px; padding: 8px; aspect-ratio: 4/3; display: grid; place-items: center; }
.cart-name { font-weight: 700; color: var(--ink); display: block; } .cart-price { font-size: 1.05rem; }
.cart-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty button { border: 0; background: #fff; width: 34px; height: 34px; font-size: 1.1rem; cursor: pointer; } .qty button:hover { background: var(--soft); }
.qty span { min-width: 34px; text-align: center; font-weight: 700; }
.cart-foot { display: flex; justify-content: space-between; padding-top: 12px; }
.perk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.perk-grid div { display: flex; flex-direction: column; gap: 2px; font-size: .88rem; } .perk-grid small { color: var(--muted); } .perk-grid .ic { color: var(--brand-3); margin-bottom: 4px; }
.summary { position: sticky; top: 86px; }
.coupon { display: flex; align-items: center; gap: 8px; border: 1.5px dashed #c9ccf5; border-radius: 12px; padding: 6px 6px 6px 12px; margin-bottom: 14px; color: var(--brand); }
.coupon input { border: 0; padding: 8px 4px; box-shadow: none !important; } .coupon.applied { background: #f1f8f3; border-color: #bfe9cf; color: #185c30; padding: 10px 12px; }
.coupon.applied button { margin-left: auto; }
.totals { display: grid; grid-template-columns: 1fr auto; gap: 10px 12px; margin: 0 0 18px; font-size: .92rem; }
.totals dt { color: var(--ink-2); } .totals dd { margin: 0; text-align: right; font-weight: 600; }
.totals .grand { font-size: 1.15rem; font-weight: 800; color: var(--ink); border-top: 1px dashed var(--line); padding-top: 12px; }
.mini-trust { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 6px; font-size: .82rem; color: var(--muted); }
.mini-trust li { display: flex; gap: 6px; align-items: center; }
.sum-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .88rem; margin-bottom: 8px; }
.sum-line img { background: var(--soft); border-radius: 8px; padding: 4px; aspect-ratio: 4/3; object-fit: contain; }
.sum-line small { display: block; color: var(--muted); }
.pay-group { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin: 16px 0 8px; }
.pay-opt { flex-direction: row; align-items: center; gap: 14px; border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 16px; margin-bottom: 10px; cursor: pointer; color: var(--ink); font-size: .95rem; }
.pay-opt:has(input:checked) { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.pay-opt input { order: 3; margin-left: auto; width: 20px; height: 20px; accent-color: var(--ink); }
.pay-opt small { display: block; color: var(--muted); font-weight: 500; font-size: .8rem; }
.pay-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--soft); display: grid; place-items: center; color: var(--brand); flex: none; }
.secure-note { display: flex; gap: 6px; align-items: center; margin: 12px 0 0; }
.create-acc { margin-top: 16px; }
.pay-card { text-align: center; padding: 40px 24px; margin-top: 40px; }
.demo-gw { border: 2px dashed var(--amber); border-radius: 16px; padding: 22px; background: #fffaf0; }
.demo-tag { display: inline-block; background: var(--amber); color: #fff; font-weight: 800; letter-spacing: .1em; font-size: .75rem; padding: 3px 10px; border-radius: 6px; }
.demo-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.order-hero { display: flex; gap: 18px; align-items: flex-start; margin-top: 28px; }
.order-hero.ok .order-ic { color: var(--green); } .order-hero.warn .order-ic { color: var(--amber); }
.order-hero h1 { font-size: 1.5rem; }
.retry-box { display: flex; gap: 12px; flex-wrap: wrap; }
.upi-box { border-color: #c9ccf5; background: #f8f8ff; }

/* account */
.auth-wrap { display: grid; place-items: center; padding: 50px 20px; }
.auth-box { width: 100%; max-width: 440px; display: grid; gap: 14px; padding: 30px; }
.auth-box h1 { margin: 0; font-size: 1.6rem; } .auth-box p { margin: 0; }
.account { display: grid; grid-template-columns: 260px 1fr; gap: 22px; padding-top: 28px; padding-bottom: 50px; align-items: start; }
.account-nav { display: flex; flex-direction: column; gap: 2px; padding: 14px; position: sticky; top: 86px; }
.account-nav a { display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 10px; color: var(--ink-2); font-weight: 600; font-size: .92rem; }
.account-nav a.on, .account-nav a:hover { background: var(--soft); color: var(--brand); }
.acct-user { display: flex; gap: 10px; align-items: center; padding: 6px 8px 14px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.acct-user small { display: block; color: var(--muted); font-size: .78rem; word-break: break-all; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat small { color: var(--muted); font-weight: 600; } .stat b { display: block; font-size: 1.5rem; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: .9rem; } .table th { text-align: left; color: var(--muted); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.table th, .table td { padding: 11px 8px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.addr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin-bottom: 20px; }
.addr { border: 1px solid var(--line); border-radius: 12px; padding: 14px; font-size: .9rem; } .addr.default { border-color: var(--brand); }
.addr p { margin: 6px 0; color: var(--ink-2); } .addr-actions { display: flex; gap: 14px; }

/* footer */
.site-footer { background: #0b0c1a; color: #b8bdd6; margin-top: 60px; padding-top: 50px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.site-footer h6 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer a { display: flex; align-items: center; gap: 6px; color: #b8bdd6; padding: 4px 0; } .site-footer a:hover { color: #fff; }
.footer-brand p { margin: 14px 0; max-width: 340px; } .footer-contact { display: flex; gap: 6px; }
.popular { border-top: 1px solid #1e2036; margin-top: 36px; padding-top: 24px; }
.popular-links { display: flex; flex-wrap: wrap; gap: 4px 18px; } .popular-links a { display: inline; color: #8a91b6; font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid #1e2036; margin-top: 24px; padding-top: 18px; padding-bottom: 22px; font-size: .8rem; flex-wrap: wrap; }
.wa-float { position: fixed; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(31,170,85,.4); z-index: 45; }
.wa-float:hover { color: #fff; transform: scale(1.05); }
.show-sm { display: none !important; }

/* ============================================================
   RESPONSIVE LAYER
   Breakpoints: 1200 (small desktop) · 1024 (tablet landscape: drawer menu)
                768 (tablet portrait) · 600 (phone) · 380 (small phone)
   ============================================================ */
body { overflow-x: clip; }
.checkout-grid > *, .shop-layout > *, .pdp > *, .pdp-details > *, .account > *, .hero-grid > *, .why > *, .q-layout > *, .card, .panel { min-width: 0; }
.table-wrap { -webkit-overflow-scrolling: touch; }
input[type=checkbox], input[type=radio] { width: 18px; height: 18px; flex: none; }
.link-more, .btn-link { min-height: 36px; display: inline-flex; align-items: center; }
.nav-head, .sub-toggle, .nav-backdrop, .filters-head { display: none; }
.sort label { flex-direction: row; }

@media (max-width: 1200px) {
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .search { max-width: 260px; }
  .main-nav .nav-item:nth-child(4) { display: none; }
  .header-row { gap: 14px; }
}

/* ---- tablet landscape & below: drawer navigation, filters drawer ---- */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .icon-btn { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .header-row { flex-wrap: wrap; height: auto; padding-top: 8px; padding-bottom: 8px; gap: 8px 12px; }
  .search { order: 5; flex-basis: 100%; max-width: none; margin: 0; }
  .header-actions { margin-left: auto; gap: 8px; }
  .cart-link { min-width: 44px; min-height: 44px; justify-content: center; }
  .hide-sm { display: none; } .show-sm { display: flex !important; }

  /* the sticky header is its own stacking context: lift it above the backdrop while the menu is open,
     and drop backdrop-filter so the fixed drawer is positioned against the viewport, not the header */
  .site-header { backdrop-filter: none; background: #fff; }
  .nav-open .site-header { z-index: 61; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,12,30,.45); z-index: 59; }
  .nav-open .nav-backdrop { display: block; }
  .nav-open { overflow: hidden; }
  .main-nav { display: flex; position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 340px); background: #fff; flex-direction: column; gap: 0;
    padding: 0 0 24px; box-shadow: 0 0 40px rgba(0,0,0,.25); overflow-y: auto; z-index: 60; transform: translateX(-105%); transition: transform .22s ease; visibility: hidden; }
  .main-nav.open { transform: none; visibility: visible; }
  .nav-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 12px 12px 16px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; z-index: 1; }
  .main-nav .nav-item, .main-nav .nav-item:nth-child(4) { display: block; position: relative; border-bottom: 1px solid var(--line); }
  .nav-item > a { padding: 14px 56px 14px 16px; font-size: 1rem; min-height: 50px; border-radius: 0; }
  .nav-item > a .ic { display: none; }
  .sub-toggle { display: flex; position: absolute; right: 4px; top: 3px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; color: var(--ink-2); cursor: pointer; transition: transform .2s; }
  .nav-item.sub-open > .sub-toggle { transform: rotate(180deg); }
  .drop, .has-drop:hover .drop, .has-drop:focus-within .drop, .has-drop:hover .drop-grid, .has-drop:focus-within .drop-grid { display: none; position: static; box-shadow: none; border: 0; border-radius: 0; padding: 0 8px 10px 16px; min-width: 0; flex-direction: column; gap: 0; }
  .nav-item.sub-open > .drop { display: flex; }
  .drop-col { min-width: 0; } .drop a { padding: 11px 10px; font-size: .95rem; }

  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; bottom: 0; right: 0; left: auto; width: min(92vw, 380px); z-index: 70; max-height: none; border-radius: 0; border: 0; padding: 0 16px 90px;
    transform: translateX(105%); transition: transform .22s ease; visibility: hidden; box-shadow: 0 0 40px rgba(0,0,0,.25); overflow-y: auto; display: block; }
  .filters.open { transform: none; visibility: visible; }
  .filters-open { overflow: hidden; } .filters-open .nav-backdrop { display: block; z-index: 69; }
  .filters-head { display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: #fff; padding: 12px 0; margin-bottom: 8px; border-bottom: 1px solid var(--line); z-index: 1; }
  .filters-head h4 { margin: 0; font-size: 1.05rem; }
  .filters .filters-actions { position: fixed; bottom: 0; right: 0; width: min(92vw, 380px); background: #fff; padding: 12px 16px; border-top: 1px solid var(--line); display: flex; gap: 10px; }
  .filters .filters-actions > * { flex: 1; margin: 0; }
  .check, .radio { padding: 7px 0; }

  .grid-products, .grid-products.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-grid { gap: 24px; padding-top: 36px; padding-bottom: 36px; }
  .hero-art { min-height: 300px; }
  .pdp { gap: 28px; }
  .checkout-grid { grid-template-columns: 1fr 340px; gap: 18px; }
  .account { grid-template-columns: 220px 1fr; }
  .why { grid-template-columns: 1fr; }
  .q-layout { grid-template-columns: 1fr 260px; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1 / -1; }
  .drawer-close { display: none !important; }
}

/* ---- tablet portrait ---- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 28px; padding-bottom: 28px; }
  .hero-copy { order: 1; } .hero-art { order: 2; min-height: 0; max-width: 520px; width: 100%; margin: 0 auto; aspect-ratio: 16 / 10; }
  .cat-strip { grid-template-columns: repeat(3, 1fr); margin-top: 8px; }
  .pdp, .pdp-details, .checkout-grid, .account, .q-layout { grid-template-columns: 1fr; }
  .summary, .account-nav, .q-side { position: static; }
  .account-nav { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .account-nav .acct-user { flex-basis: 100%; }
  .account-nav a { border: 1px solid var(--line); padding: 9px 12px; }
  .budget-row { grid-template-columns: repeat(2, 1fr); }
  .perk-grid { grid-template-columns: 1fr 1fr; }
  .expert-band { flex-direction: column; align-items: flex-start; }
  body:has(.sticky-buy) .wa-float { display: none; }
  body:has(.sticky-buy) .site-footer { padding-bottom: 76px; }
  .gallery { max-width: 560px; margin: 0 auto; width: 100%; }
}

/* ---- phone ---- */
@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .section { padding: 30px 16px 4px; }
  .announce { font-size: .76rem; } .announce-track { gap: 32px; padding: 6px 0; }
  .logo { font-size: 1.15rem; } .logo img { width: 34px; }
  .search input { padding: 10px 0; font-size: 16px; } /* 16px stops iOS zoom on focus */
  input, select, textarea { font-size: 16px; }
  .hero h1 { font-size: clamp(1.8rem, 8.4vw, 2.3rem); }
  .lead { font-size: 1rem; }
  .hero-cta { margin: 20px 0; } .hero-cta .btn { flex: 1 1 100%; }
  .hero-points { gap: 8px 16px; font-size: .85rem; }
  .hero-art { max-width: 340px; } .fc-1 { display: none; } .float-card { padding: 8px 12px; } .fc-2 b { font-size: 1.2rem; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; } .cat-tile { padding: 12px; } .cat-tile img { height: 48px; } .cat-tile:last-child { grid-column: span 2; }
  .section-head { flex-wrap: wrap; align-items: flex-end; }
  .grid-products, .grid-products.grid-3, .grid-products.grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pcard-img { padding: 10px; } .pcard-body { padding: 10px; gap: 6px; } .pcard h3 { font-size: .88rem; } .pcard-brand { font-size: .66rem; }
  .price-row { flex-wrap: wrap; gap: 2px 6px; } .price-row strong { font-size: 1.02rem; } .price-row s { font-size: .76rem; }
  .chips span:nth-child(n+3) { display: none; } .pcard-meta { font-size: .7rem; } .pcard .btn-sm { padding: 10px 8px; min-height: 40px; }
  .badge-off, .badge-grade { font-size: .64rem; padding: 2px 6px; top: 8px; } .badge-off { left: 8px; } .badge-grade { right: 8px; }
  .brand-row { grid-template-columns: repeat(2, 1fr); }
  .budget-tile { padding: 16px; } .budget-tile b { font-size: clamp(1.15rem, 6vw, 1.5rem); } .budget-tile span { font-size: .8rem; }
  .use-row { gap: 8px; } .pill { padding: 9px 14px; font-size: .85rem; }
  .why-grid { grid-template-columns: 1fr; }
  .expert-band { padding: 24px 20px; border-radius: 18px; } .expert-cta, .expert-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; } .site-footer { margin-top: 40px; padding-top: 36px; }
  .site-footer a { padding: 7px 0; } .popular-links a { padding: 4px 0; }
  .footer-bottom { flex-direction: column; }

  .crumbs { font-size: .78rem; padding-top: 12px; }
  .shop-head { align-items: stretch; gap: 10px; } .shop-head h1 { font-size: 1.5rem; }
  .sort { width: 100%; } .sort label { flex: 1; } .sort select { flex: 1; width: 100%; min-height: 44px; } .sort .sort-label { display: none; }
  .sort .btn { min-height: 44px; }
  .pager a { min-width: 44px; height: 44px; }

  .gallery-main { padding: 16px; border-radius: 16px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); } .trust-row div { font-size: .74rem; padding: 8px; }
  .pdp-info h1 { font-size: 1.25rem; } .pdp-price strong { font-size: 1.6rem; }
  .spec-chips { gap: 8px; } .spec-chips div { padding: 8px 10px; font-size: .84rem; }
  .buy-box { grid-template-columns: 1fr 1fr; } .buy-box .btn { padding: 13px 10px; }
  .contact-btns .btn { flex: 1 1 100%; }
  .callback .form-grid, .form-grid.two { grid-template-columns: 1fr; } .span2 { grid-column: auto; }
  .card { padding: 16px; border-radius: 12px; } .pdp-details .card { padding: 18px 16px; }
  .spec-table th { width: 42%; font-size: .84rem; } .spec-table td { font-size: .86rem; }
  .procon { grid-template-columns: 1fr; }

  .checkout-head { padding-top: 18px; padding-bottom: 12px; } .checkout-head h1 { font-size: 1.5rem; }
  .steps { width: 100%; justify-content: space-between; font-size: .8rem; } .steps li + li::before { width: 12px; }
  .cart-line { grid-template-columns: 72px 1fr; gap: 12px; } .cart-price { grid-column: 2; } .qty button { width: 40px; height: 40px; }
  .cart-foot { flex-wrap: wrap; gap: 6px; }
  .perk-grid { gap: 12px; } .pay-opt { padding: 12px; gap: 10px; } .pay-ic { width: 38px; height: 38px; }
  .coupon input { min-width: 0; }
  .order-hero { flex-direction: column; gap: 8px; } .retry-box > *, .retry-box .btn { width: 100%; }
  .inline-form { flex-direction: column; } .inline-form .btn { width: 100%; }
  .auth-wrap { padding: 24px 0; } .auth-box { padding: 22px 18px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 8px; } .stat { padding: 12px; } .stat b { font-size: 1.05rem; }
  .account-nav a { flex: 1 1 calc(50% - 6px); justify-content: center; font-size: .85rem; }

  /* tables become stacked cards */
  .table.stack thead { display: none; }
  .table.stack, .table.stack tbody, .table.stack tr, .table.stack td { display: block; width: 100%; }
  .table.stack tr { border: 1px solid var(--line); border-radius: 12px; padding: 6px 12px; margin-bottom: 10px; }
  .table.stack td { border: 0; padding: 6px 0; white-space: normal; display: flex; justify-content: space-between; gap: 12px; text-align: right; }
  .table.stack td::before { content: attr(data-label); color: var(--muted); font-weight: 600; font-size: .78rem; text-align: left; }
  .table.stack td:empty { display: none; }

  .q-grid, .blog-grid { grid-template-columns: 1fr; } .blog-card.feature { grid-column: auto; } .blog-card.feature h2 { font-size: 1.3rem; }
  .q-article .prose { font-size: 1rem; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; } .wa-float svg { width: 26px; height: 26px; }
  .sticky-buy { padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); } .sticky-buy .btn { min-height: 44px; }
  .seo-copy { padding: 18px; }
  .callback summary { padding: 10px 0; } .card-head a { padding: 8px 0; display: inline-block; }
  .table.stack td > * { min-width: 0; overflow-wrap: anywhere; }
}
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .logo span i { display: none; }
  .grid-products, .grid-products.grid-3 { gap: 8px; }
  .pcard h3 { font-size: .82rem; } .chips { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .buy-box { grid-template-columns: 1fr; }
  .steps { font-size: .74rem; }
  .stat-row { grid-template-columns: 1fr; }
}
label.check, label.radio { flex-direction: row; align-items: center; font-weight: 500; color: var(--ink); }
.verdict { background: #f3f2ff; border-left: 4px solid var(--brand-3); padding: 12px 16px; border-radius: 0 10px 10px 0; }
.prose h2 { font-size: 1.05rem; margin: 22px 0 6px; } .prose h3 { font-size: 1rem; margin: 18px 0 6px; }
.procon { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .procon h3 { display: flex; gap: 6px; align-items: center; }
.procon ul { padding-left: 18px; margin: 0; } .procon li { margin-bottom: 6px; }
.procon > div:first-child .ic { color: var(--green); } .procon > div:last-child .ic { color: var(--amber); }
@media (max-width: 560px) { .procon { grid-template-columns: 1fr; } }
.shop-intro { max-width: 760px; color: var(--ink-2); margin: 6px 0; }
.link-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.link-cloud a { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 5px 12px; font-size: .84rem; color: var(--ink-2); }
.link-cloud a:hover { border-color: var(--brand); color: var(--brand); }
.seo-copy.prose h2 { font-size: 1.15rem; margin-top: 18px; } .seo-copy .faq { background: #fff; }
/* questions & blog */
.q-hero { padding-top: 10px; padding-bottom: 10px; } .q-hero .lead { max-width: 680px; } .q-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.q-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.q-jump a { border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.q-jump a:hover { background: var(--ink); color: #fff; }
.q-cat { padding-top: 26px; } .q-cat h2 { font-size: 1.2rem; }
.q-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.q-card { border: 1px solid var(--line); border-radius: var(--r); padding: 16px; background: #fff; color: var(--ink); display: flex; flex-direction: column; gap: 6px; }
.q-card:hover { border-color: var(--brand); color: var(--ink); box-shadow: var(--shadow); } .q-card span { color: var(--muted); font-size: .86rem; }
.q-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; padding-bottom: 20px; align-items: start; }
.q-article h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); } .q-article .prose { font-size: 1.02rem; line-height: 1.7; }
.q-article .prose h2 { font-size: 1.15rem; margin-top: 26px; } .q-article .prose code { background: var(--soft); padding: 1px 6px; border-radius: 5px; }
.q-help { margin-top: 26px; background: #f8f8ff; border-color: #dcdcfa; } .q-help p { margin: 4px 0 0; }
.q-side { position: sticky; top: 86px; } .q-side h3 { font-size: .95rem; }
.q-links { list-style: none; margin: 0; padding: 0; } .q-links li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .9rem; } .q-links li:last-child { border: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 10px; }
.blog-card { border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: #fff; color: var(--ink); display: flex; flex-direction: column; gap: 6px; }
.blog-card:hover { color: var(--ink); box-shadow: var(--shadow); border-color: #c9ccf5; } .blog-card h2 { font-size: 1.1rem; margin: 0; } .blog-card p { color: var(--muted); margin: 0; flex: 1; }
.blog-card.feature { grid-column: span 3; background: var(--grad); color: #fff; border: 0; } .blog-card.feature h2 { font-size: 1.6rem; } .blog-card.feature p, .blog-card.feature .kicker, .blog-card.feature .link-more { color: #e3e8ff; }
@media (max-width: 900px) { .q-grid, .blog-grid { grid-template-columns: 1fr 1fr; } .q-layout { grid-template-columns: 1fr; } .q-side { position: static; } .blog-card.feature { grid-column: span 2; } }
@media (max-width: 560px) { .q-grid, .blog-grid { grid-template-columns: 1fr; } .blog-card.feature { grid-column: auto; } }
.filters-actions { display: grid; gap: 8px; margin-top: 6px; }
