/* ===== Daily Deal Liquidation ===== */
:root {
  --navy: #12274a;
  --navy2: #1b3563;
  --navy-deep: #0d1c37;
  --blue: #1f6fe0;
  --orange: #ff6a1a;
  --orange-dark: #e5560c;
  --amber: #ffb020;
  --deal: #e01f3d;
  --deal-dark: #bd1631;
  --green: #23a35a;
  --ink: #1b2434;
  --ink-soft: #55617a;
  --ink-faint: #8a94a8;
  --gray: #f1f4f9;
  --gray2: #e4eaf3;
  --gray3: #d3dbe9;
  --cloud: #f7f9fc;
  --white: #ffffff;
  --bg: #f7f9fc;
  --bg-dark: #0c1729;
  --card: #ffffff;
  --border: #e2e8f2;
  --line: #cfd8e6;
  --shadow: 0 10px 30px rgba(18, 39, 74, 0.08);
  --shadow-lg: 0 20px 50px rgba(18, 39, 74, 0.16);
  --radius: 12px;
  --radius-sm: 7px;
  --maxw: 1200px;
  --sans: "Inter", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --display: "Montserrat", "Segoe UI", "Helvetica Neue", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--navy); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; color: var(--ink); font-weight: 800; letter-spacing: -0.01em; }
section { scroll-margin-top: 120px; }

/* Utility */
.eyebrow { font-size: 0.76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); font-weight: 800; display: inline-block; }
.eyebrow.blue { color: var(--blue); }

/* Topbar */
.topbar { background: var(--deal); color: #fff; font-size: 0.86rem; padding: 8px 0; text-align: center; font-weight: 600; }
.topbar .container { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: #fff; display: flex; align-items: center; gap: 11px; letter-spacing: -0.02em; flex-shrink: 0; }
.brand .logo { width: 46px; height: 46px; border-radius: 10px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.brand .b-text { line-height: 1.0; }
.brand .b-text b { color: var(--amber); }
.brand .b-text small { display: block; font-family: var(--sans); font-size: 0.54rem; letter-spacing: .18em; text-transform: uppercase; color: #8ea6cf; font-weight: 700; margin-top: 2px; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: #d5e0f2; font-size: 0.9rem; padding: 9px 14px; font-weight: 600; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .18s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links .cta { background: var(--orange); color: #fff; border-radius: 8px; padding: 10px 20px; margin-left: 8px; }
.nav-links .cta::after { display: none; }
.nav-links .cta:hover { background: var(--orange-dark); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.7rem; cursor: pointer; }

/* Buttons */
.btn { font-family: var(--display); font-size: 0.9rem; font-weight: 700; letter-spacing: .01em; padding: 13px 28px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; display: inline-block; transition: all .16s; text-align: center; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }
.btn-deal { background: var(--deal); color: #fff; }
.btn-deal:hover { background: var(--deal-dark); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy2); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gray); color: var(--navy); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-line-light:hover { background: #fff; color: var(--navy); }
.btn-lg { font-size: 1rem; padding: 15px 34px; }
.btn-sm { font-size: 0.78rem; padding: 9px 18px; }
.btn-block { width: 100%; }

/* Hero */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 82% 26%, rgba(255,106,26,.30), transparent 46%),
  radial-gradient(circle at 12% 84%, rgba(31,111,224,.28), transparent 50%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px; padding: 76px 0 82px; }
.hero-text .eyebrow { color: var(--amber); margin-bottom: 18px; }
.hero-text h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.02; margin-bottom: 20px; color: #fff; letter-spacing: -0.02em; }
.hero-text h1 .orange { color: var(--orange); }
.hero-text h1 .amber { color: var(--amber); }
.hero-text .lede { font-size: 1.2rem; color: #c2d1ea; max-width: 500px; margin-bottom: 30px; }
.hero-text .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual .box { width: min(400px, 84vw); aspect-ratio: 1; border-radius: 20px; background: linear-gradient(150deg, var(--navy2), var(--navy-deep)); display: flex; align-items: center; justify-content: center; font-size: 9rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.hero-visual .burst { position: absolute; top: 6%; right: 2%; background: var(--deal); color: #fff; width: 96px; height: 96px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; line-height: 1; box-shadow: var(--shadow); transform: rotate(-12deg); }
.hero-visual .burst .big { font-size: 1.6rem; }
.hero-visual .burst .small { font-size: 0.7rem; margin-top: 2px; }
.hero-visual .chip { position: absolute; background: #fff; border-radius: 40px; padding: 9px 18px; box-shadow: var(--shadow); font-family: var(--display); font-weight: 700; font-size: 0.84rem; display: flex; align-items: center; gap: 8px; color: var(--navy); }
.hero-visual .chip.c2 { bottom: 12%; left: -3%; color: var(--green); }

/* Trust bar */
.trustbar { background: var(--white); border-bottom: 1px solid var(--border); }
.trustbar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar .t { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-right: 1px solid var(--border); }
.trustbar .t:last-child { border-right: 0; }
.trustbar .t .ico { font-size: 1.6rem; }
.trustbar .t h4 { font-size: 0.94rem; color: var(--ink); margin-bottom: 1px; }
.trustbar .t p { font-size: 0.82rem; color: var(--ink-soft); }

/* Marquee */
.strip { background: var(--orange); color: #fff; padding: 12px 0; overflow: hidden; white-space: nowrap; }
.strip .track { display: inline-block; animation: marquee 28s linear infinite; }
.strip .track span { margin: 0 24px; font-family: var(--display); font-weight: 700; font-size: 0.98rem; letter-spacing: .03em; text-transform: uppercase; }
.strip .track span.dot { color: var(--navy); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Page head */
.page-head { background: var(--navy); color: #fff; padding: 54px 0 46px; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 40%, rgba(255,106,26,.24), transparent 46%); }
.page-head .container { position: relative; z-index: 1; }
.page-head .breadcrumb { font-size: 0.82rem; color: #8ea6cf; margin-bottom: 12px; }
.page-head .breadcrumb a { color: #c2d1ea; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; max-width: 900px; }
.page-head h1 .orange { color: var(--orange); }
.page-head .sub { margin-top: 14px; font-size: 1.12rem; color: #c2d1ea; max-width: 640px; }

/* Sections */
section.block { padding: 70px 0; }
section.block.gray { background: var(--gray); }
section.block.white { background: var(--white); }
section.block.navy { background: var(--navy); color: #fff; }
.block.navy h1, .block.navy h2, .block.navy h3 { color: #fff; }
.block.navy .eyebrow { color: var(--amber); }

/* Section head */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.sec-head .eyebrow { margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.sec-head h2 .orange { color: var(--orange); }
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 12px; }
.block.navy .sec-head p { color: #c2d1ea; }
.sec-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.sec-bar h2 { font-size: 1.7rem; }
.sec-bar h2 .orange { color: var(--orange); }
.sec-bar a { font-family: var(--display); font-size: 0.85rem; font-weight: 700; }

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Product cards */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; border: 1px solid var(--border); }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prod-card .p-img { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 3.6rem; position: relative; background: var(--gray); }
.prod-card .p-img .disc { position: absolute; top: 10px; left: 10px; background: var(--deal); color: #fff; font-family: var(--display); font-size: 0.72rem; font-weight: 800; padding: 4px 10px; border-radius: 6px; }
.prod-card .p-img .tag2 { position: absolute; top: 10px; right: 10px; background: var(--navy); color: #fff; font-family: var(--display); font-size: 0.66rem; font-weight: 700; padding: 4px 9px; border-radius: 6px; text-transform: uppercase; letter-spacing: .04em; }
.prod-card .p-img .tag2.age { background: var(--deal); }
.prod-card .body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-card .p-cat { font-size: 0.7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-bottom: 5px; }
.prod-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.3; font-weight: 700; }
.prod-card h3 a { color: var(--ink); }
.prod-card h3 a:hover { color: var(--blue); }
.prod-card .p-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; margin-bottom: 12px; }
.prod-card .p-price .now { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: var(--deal); }
.prod-card .p-price .now .fill { background: var(--gray2); border-bottom: 1px dashed var(--orange); border-radius: 3px; padding: 0 5px; font-size: 1.05rem; }
.prod-card .p-price .was { font-size: 0.9rem; color: var(--ink-faint); text-decoration: line-through; }
.prod-card .p-price .was .fill { background: var(--gray2); border-radius: 3px; padding: 0 4px; }
.prod-card .btn { width: 100%; }

/* Category pills */
.cat-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-pill { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 18px; text-align: center; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; }
.cat-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-pill .ico { font-size: 2.4rem; margin-bottom: 12px; }
.cat-pill h3 { font-size: 1.02rem; color: var(--ink); margin-bottom: 4px; }
.cat-pill p { font-size: 0.82rem; color: var(--ink-faint); }

/* Single product */
.prod-single { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.prod-gallery .main-img { aspect-ratio: 1; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 9rem; box-shadow: var(--shadow); background: var(--white); border: 1px solid var(--border); position: relative; }
.prod-gallery .main-img .disc { position: absolute; top: 16px; left: 16px; background: var(--deal); color: #fff; font-family: var(--display); font-size: 0.9rem; font-weight: 800; padding: 6px 14px; border-radius: 8px; }
.prod-gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.prod-gallery .thumb { aspect-ratio: 1; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; background: var(--white); border: 1px solid var(--border); cursor: pointer; transition: border-color .15s; }
.prod-gallery .thumb:hover { border-color: var(--orange); }
.prod-info .p-cat { font-size: 0.78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 10px; }
.prod-info h1 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 12px; line-height: 1.2; }
.prod-info .rating { color: var(--amber); margin-bottom: 16px; letter-spacing: 2px; font-size: 0.95rem; }
.prod-info .rating span { color: var(--ink-faint); font-size: 0.85rem; }
.price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.price-block .now { font-family: var(--display); font-size: 2.2rem; font-weight: 800; color: var(--deal); }
.price-block .now .fill { background: var(--gray2); border-bottom: 1px dashed var(--orange); border-radius: 3px; padding: 0 10px; }
.price-block .was { font-size: 1.1rem; color: var(--ink-faint); text-decoration: line-through; }
.price-block .was .fill { background: var(--gray2); border-radius: 3px; padding: 0 6px; }
.price-block .save { background: #fde7ea; color: var(--deal); font-family: var(--display); font-weight: 800; font-size: 0.82rem; padding: 4px 12px; border-radius: 40px; }
.stock-line { font-size: 0.9rem; color: var(--green); font-weight: 700; margin-bottom: 18px; }
.stock-line .fill { background: var(--gray2); border-bottom: 1px dashed var(--orange); border-radius: 3px; padding: 0 6px; color: var(--ink); font-weight: 600; }
.prod-info .p-desc { color: var(--ink-soft); margin-bottom: 20px; }
.age-note { background: #fde7ea; border: 1px solid #f6bcc6; border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 20px; font-size: 0.88rem; color: var(--deal-dark); font-weight: 600; display: flex; gap: 10px; align-items: flex-start; }
.prod-meta { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 20px; }
.prod-meta .m-row { display: flex; gap: 10px; margin-bottom: 7px; font-size: 0.92rem; }
.prod-meta .m-row .k { color: var(--ink-faint); min-width: 110px; text-transform: uppercase; font-size: 0.74rem; letter-spacing: .06em; font-weight: 700; padding-top: 2px; }
.prod-meta .m-row .fill { background: var(--gray2); border-bottom: 1px dashed var(--orange); border-radius: 3px; padding: 0 5px; }
.prod-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-box button { background: var(--gray); border: 0; width: 44px; height: 50px; font-size: 1.2rem; cursor: pointer; color: var(--ink); }
.qty-box input { width: 54px; height: 50px; border: 0; text-align: center; font-family: var(--display); font-weight: 700; font-size: 1rem; background: #fff; color: var(--ink); }

/* Tabs */
.tabs { margin-top: 52px; }
.tab-btns { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn { background: none; border: 0; padding: 13px 22px; font-family: var(--display); font-weight: 700; font-size: 0.98rem; color: var(--ink-faint); cursor: pointer; position: relative; }
.tab-btn.active { color: var(--orange); }
.tab-btn.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--orange); border-radius: 3px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Feature icons */
.feat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-ico { text-align: center; }
.feat-ico .ico { width: 70px; height: 70px; margin: 0 auto 14px; border-radius: 14px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; box-shadow: var(--shadow); }
.block.navy .feat-ico .ico { background: var(--navy2); }
.feat-ico h3 { font-size: 1.08rem; margin-bottom: 7px; }
.feat-ico p { color: var(--ink-soft); font-size: 0.9rem; }
.block.navy .feat-ico p { color: #c2d1ea; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { text-align: center; }
.step .num { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 12px; background: var(--orange); color: #fff; font-family: var(--display); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.08rem; margin-bottom: 7px; }
.step p { color: var(--ink-soft); font-size: 0.9rem; }
.block.navy .step p { color: #c2d1ea; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .n { font-family: var(--display); font-size: 2.6rem; color: var(--amber); font-weight: 800; line-height: 1; }
.stat .l { font-size: 0.82rem; letter-spacing: .06em; text-transform: uppercase; color: #a8bbd9; margin-top: 6px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-top: 3px solid var(--orange); }
.review .stars { color: var(--amber); margin-bottom: 10px; letter-spacing: 2px; }
.review p { color: var(--ink-soft); font-style: italic; margin-bottom: 12px; font-size: 0.96rem; }
.review .who { font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: var(--ink); }

/* Prose */
.prose { font-size: 1.04rem; line-height: 1.8; }
.prose p { color: #37415a; margin-bottom: 16px; }
.prose h2 { font-size: 1.6rem; margin: 30px 0 12px; }
.prose h3 { font-size: 1.24rem; margin: 24px 0 10px; color: var(--navy); }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; color: #37415a; }
.prose li { margin-bottom: 8px; }
.prose .fill { background: var(--gray2); border-bottom: 1px dashed var(--orange); padding: 0 4px; border-radius: 2px; font-weight: 600; }
.prose .note { background: var(--gray); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 15px 19px; margin: 20px 0; font-size: 0.96rem; }
.spec-table { width: 100%; border-collapse: collapse; margin: 8px 0 16px; }
.spec-table td { padding: 11px 15px; border: 1px solid var(--border); font-size: 0.95rem; }
.spec-table td:first-child { background: var(--gray); font-weight: 700; width: 38%; color: var(--ink); }
.spec-table td .fill { background: var(--white); border-bottom: 1px dashed var(--orange); border-radius: 2px; padding: 0 5px; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-split .c-info { background: var(--navy); color: #c2d1ea; padding: 48px 44px; }
.contact-split .c-info h2 { color: #fff; font-size: 1.9rem; margin-bottom: 14px; }
.contact-split .c-info h2 .orange { color: var(--orange); }
.contact-split .c-info p { color: #a8bbd9; margin-bottom: 24px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-row .ico { font-size: 1.1rem; width: 42px; height: 42px; flex-shrink: 0; background: rgba(255,255,255,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-row h4 { color: #fff; font-family: var(--display); font-size: 0.9rem; margin-bottom: 2px; }
.contact-row p { color: #a8bbd9; margin: 0; font-size: 0.93rem; }
.contact-row .fill { background: rgba(255,255,255,.1); border-bottom: 1px dashed var(--orange); border-radius: 3px; padding: 0 6px; }
.contact-split .c-form { background: var(--card); padding: 48px 44px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: var(--display); font-size: 0.8rem; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--cloud); font-family: var(--sans); font-size: 1rem; color: var(--ink); outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--orange); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 10px; }
.form-msg { padding: 13px 17px; border-radius: var(--radius-sm); margin-top: 14px; display: none; background: #e4f6ec; color: #17703f; border: 1px solid var(--green); font-size: 0.94rem; }
.form-msg.ok { display: block; }

/* CTA band */
.cta-band { padding: 76px 0; text-align: center; background: linear-gradient(135deg, var(--orange), var(--deal)); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: "\1F4E6"; position: absolute; font-size: 13rem; opacity: .12; top: -10px; left: 5%; }
.cta-band::after { content: "\1F3F7\FE0F"; position: absolute; font-size: 10rem; opacity: .12; bottom: -20px; right: 6%; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 5vw, 3.2rem); margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; opacity: .96; font-size: 1.12rem; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #93a3bf; padding: 56px 0 26px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid #1e3153; }
.footer-brand .fb-name { font-family: var(--display); font-size: 1.4rem; color: #fff; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand .fb-name .logo { width: 40px; height: 40px; border-radius: 10px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-family: var(--display); color: #fff; font-size: 0.9rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #93a3bf; font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: #64749a; }
.footer-bottom a { color: #93a3bf; }

/* Responsive */
@media (max-width: 1000px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-pills { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 52px 0 60px; }
  .hero-text .lede { margin-left: auto; margin-right: auto; }
  .hero-text .cta-row { justify-content: center; }
  .hero-visual { margin-top: 12px; }
  .trustbar .container { grid-template-columns: 1fr 1fr; }
  .trustbar .t:nth-child(2) { border-right: 0; }
  .trustbar .t { border-bottom: 1px solid var(--border); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .feat-icons { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .review-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .prod-single { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--navy); padding: 14px 24px; gap: 2px; display: none; align-items: stretch; }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; color: #d5e0f2; }
  .nav-links .cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .prod-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .cat-pills { grid-template-columns: 1fr; }
  .feat-icons, .steps, .stat-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-split .c-info, .contact-split .c-form { padding: 34px 26px; }
}
