:root {
  --ink: #07111f;
  --ink-2: #12233a;
  --blue: #2f6bff;
  --blue-dark: #1747c6;
  --orange: #e11d2e;
  --orange-soft: #fff0f2;
  --white: #ffffff;
  --canvas: #f5f7fb;
  --line: #dfe5ee;
  --muted: #607086;
  --success: #087a55;
  --danger: #b42318;
  --shadow: 0 18px 60px rgba(7, 17, 31, 0.1);
  --radius: 24px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open, body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; padding: 12px 18px; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 251, 0.9);
  border-bottom: 1px solid rgba(223, 229, 238, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -0.04em; }
.brand-mark { display: grid; grid-template-columns: 1fr 1fr; width: 39px; height: 39px; overflow: hidden; border-radius: 11px; box-shadow: 0 8px 20px rgba(47,107,255,.2); }
.brand-mark i { display: grid; place-items: center; color: white; background: var(--blue); font-style: normal; font-size: 15px; }
.brand-mark i + i { background: var(--orange); }
.brand-name { font-size: 21px; }
.brand-name b { color: var(--orange); }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 10px 13px; border-radius: 10px; color: #26364a; font-size: 15px; font-weight: 650; }
.main-nav a:hover, .main-nav a.active { color: var(--blue-dark); background: #eaf0ff; }
.main-nav .cart-link { background: var(--ink); color: var(--white); padding-left: 17px; }
.main-nav .cart-link:hover, .main-nav .cart-link.active { color: white; background: var(--blue-dark); }
#cart-count { display: inline-grid; place-items: center; min-width: 23px; height: 23px; margin-left: 5px; padding: 0 5px; border-radius: 20px; color: var(--ink); background: var(--white); font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--ink); padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: white; }

main { min-height: 65vh; }
.route-loading { min-height: 55vh; display: grid; place-content: center; justify-items: center; color: var(--muted); }
.route-loading span { width: 34px; height: 34px; border: 3px solid var(--line); border-top-color: var(--blue); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.eyebrow { margin: 0 0 16px; color: var(--blue-dark); font-size: 13px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.light { color: #9fbbff; }
.display { margin: 0; font-size: clamp(46px, 6.5vw, 88px); line-height: .98; letter-spacing: -.065em; }
.display span { color: var(--orange); }
.section-title { margin: 0; max-width: 720px; font-size: clamp(34px, 4.3vw, 58px); line-height: 1.05; letter-spacing: -.05em; }
.section-copy { max-width: 620px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 38px; }
.section-heading .text-link { flex: none; }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 0 21px; border: 1px solid transparent; border-radius: 13px; background: var(--blue); color: white; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 12px 25px rgba(47,107,255,.2); }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.button-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
.button-secondary:hover { color: var(--blue-dark); background: var(--white); }
.button-dark { background: var(--ink); }
.button-dark:hover { background: #152a47; }
.button-orange { background: var(--orange); }
.button-orange:hover { background: #bd1121; box-shadow: 0 12px 25px rgba(225,29,46,.22); }
.button-block { width: 100%; }
.button-small { min-height: 42px; padding: 0 15px; font-size: 14px; }
.text-link { color: var(--blue-dark); font-weight: 800; }
.text-link::after { content: '  →'; }

.hero { padding: 64px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 60px; }
.hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 25px 0 32px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; color: #405067; font-size: 14px; font-weight: 700; }
.hero-proof span::before { content: '✓'; margin-right: 7px; color: var(--success); }
.hero-visual { position: relative; min-height: 520px; }
.visual-panel { position: absolute; inset: 16px 0 42px 34px; overflow: hidden; border-radius: 38px; background: var(--ink); box-shadow: var(--shadow); }
.visual-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.visual-orbit { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; right: -60px; top: -35px; }
.visual-orbit::before, .visual-orbit::after { content: ''; position: absolute; inset: 48px; border: inherit; border-radius: inherit; }
.visual-orbit::after { inset: 105px; }
.visual-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 46px; color: white; }
.visual-kicker { width: max-content; padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.visual-title { max-width: 420px; margin: auto 0 32px; font-size: clamp(36px, 4vw, 58px); line-height: 1; letter-spacing: -.05em; }
.visual-route { display: flex; align-items: center; gap: 12px; color: #cdd8e7; font-size: 13px; }
.visual-route i { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(225,29,46,.15); }
.visual-route b { flex: 1; height: 1px; background: linear-gradient(90deg, var(--orange), var(--blue)); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 13px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 17px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.floating-card strong { display: block; font-size: 14px; }
.floating-card small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.floating-card i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: #eaf0ff; color: var(--blue-dark); font-style: normal; font-weight: 900; }
.floating-card.one { left: 0; top: 78px; }
.floating-card.two { right: -12px; bottom: 0; }
.floating-card.two i { color: #a90f20; background: var(--orange-soft); }

.services { padding: 88px 0; background: white; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-card { position: relative; min-height: 390px; padding: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #f7f9fc; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.dark { color: white; background: var(--ink); border-color: var(--ink); }
.service-number { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; color: var(--blue-dark); background: #e7eeff; font-weight: 900; }
.service-card.dark .service-number { color: #ffb1ba; background: rgba(225,29,46,.15); }
.service-card h3 { max-width: 480px; margin: 58px 0 15px; font-size: clamp(30px, 3.6vw, 47px); line-height: 1.05; letter-spacing: -.045em; }
.service-card p { max-width: 500px; color: var(--muted); font-size: 17px; }
.service-card.dark p { color: #b8c5d5; }
.service-card .text-link { position: absolute; bottom: 36px; }
.service-card.dark .text-link { color: #ff8c98; }

.featured { padding: 92px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(7,17,31,.09); }
.product-visual { position: relative; display: grid; place-items: center; aspect-ratio: 1.25; overflow: hidden; background: linear-gradient(145deg, #eef3fb, #dfe9f8); }
.product-visual::before { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(47,107,255,.12); transform: translate(45px,-30px); }
.product-visual .device { position: relative; z-index: 1; display: grid; place-items: center; width: 92px; height: 112px; border: 8px solid var(--ink); border-radius: 18px; color: var(--blue-dark); background: white; box-shadow: 17px 20px 0 rgba(47,107,255,.14); font-size: 26px; font-weight: 900; letter-spacing: -.05em; }
.product-visual.computadores .device { width: 132px; height: 82px; border-radius: 10px; }
.product-visual.computadores .device::after { content: ''; position: absolute; width: 155px; height: 8px; left: -19px; bottom: -16px; border-radius: 0 0 10px 10px; background: var(--ink); }
.product-visual.imagem-impressao .device { width: 120px; height: 90px; border-radius: 8px; }
.product-visual.redes-acessorios .device { width: 124px; height: 54px; border-width: 6px; border-radius: 12px; }
.stock-badge { position: absolute; left: 13px; top: 13px; z-index: 2; padding: 6px 9px; border-radius: 999px; color: #056246; background: #dcfce7; font-size: 11px; font-weight: 850; }
.product-card-content { display: flex; flex: 1; flex-direction: column; padding: 19px; }
.product-meta { margin: 0 0 8px; color: var(--blue-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.product-card h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.25; }
.product-description { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.product-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { font-size: 19px; font-weight: 900; letter-spacing: -.025em; white-space: nowrap; }
.price small { display: block; color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: 0; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 12px; background: var(--ink); color: white; cursor: pointer; font-weight: 900; }
.icon-button:hover { background: var(--blue); }

.process { padding: 90px 0; color: white; background: var(--ink); }
.process .section-copy { color: #aebdd0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.step { padding: 28px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.035); }
.step span { display: inline-block; margin-bottom: 48px; color: #8da8ff; font-size: 13px; font-weight: 900; }
.step h3 { margin: 0 0 8px; font-size: 20px; }
.step p { margin: 0; color: #9daec2; font-size: 14px; }

.cta-strip { padding: 84px 0; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; padding: 48px; border-radius: 28px; background: linear-gradient(120deg, #dfe8ff, #fff0f2); }
.cta-panel h2 { max-width: 770px; margin: 0; font-size: clamp(30px, 4vw, 52px); line-height: 1.06; letter-spacing: -.045em; }
.cta-panel p { margin: 12px 0 0; color: var(--muted); }

.page-hero { padding: 60px 0 42px; }
.page-hero .section-copy { max-width: 700px; }
.page-hero-row { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.delivery-chip { flex: none; padding: 12px 15px; border: 1px solid #b7e7d5; border-radius: 12px; color: var(--success); background: #ecfdf5; font-size: 14px; font-weight: 750; }

.store-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; padding: 20px 0 90px; }
.filters { align-self: start; position: sticky; top: 104px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.filters h2 { margin: 0 0 17px; font-size: 16px; }
.category-list { display: grid; gap: 6px; }
.filter-button { width: 100%; padding: 11px 12px; border: 0; border-radius: 10px; color: #39495e; background: transparent; text-align: left; cursor: pointer; }
.filter-button:hover, .filter-button.active { color: var(--blue-dark); background: #eaf0ff; font-weight: 800; }
.store-main { min-width: 0; }
.store-tools { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 21px; }
.search-box { position: relative; flex: 1; max-width: 500px; }
.search-box input { width: 100%; height: 50px; padding: 0 46px 0 16px; border: 1px solid var(--line); border-radius: 13px; background: white; outline: none; }
.search-box input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,107,255,.1); }
.search-box button { position: absolute; right: 5px; top: 5px; width: 40px; height: 40px; border: 0; border-radius: 10px; color: white; background: var(--ink); cursor: pointer; }
.result-count { color: var(--muted); font-size: 14px; }
.store-products.product-grid { grid-template-columns: repeat(3, 1fr); }

.state-card { grid-column: 1 / -1; padding: 48px 28px; border: 1px dashed #bac5d3; border-radius: 18px; background: rgba(255,255,255,.6); text-align: center; }
.state-card h2, .state-card h3 { margin: 0 0 9px; }
.state-card p { margin: 0 auto 20px; max-width: 520px; color: var(--muted); }
.empty-cart { margin-top: 32px; }
.error-text { color: var(--danger); }

.detail { padding: 58px 0 94px; }
.back-link { display: inline-block; margin-bottom: 26px; color: var(--muted); font-weight: 750; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: start; }
.detail-visual.product-visual { aspect-ratio: 1.05; border-radius: 28px; }
.detail-visual.product-visual .device { transform: scale(1.7); }
.detail-copy h1 { margin: 6px 0 14px; font-size: clamp(36px, 5vw, 62px); line-height: 1.02; letter-spacing: -.055em; }
.detail-description { margin: 0 0 25px; color: var(--muted); font-size: 18px; }
.detail-price { margin: 0 0 22px; font-size: 31px; font-weight: 900; }
.availability { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--success); font-weight: 750; }
.availability::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.purchase-row { display: flex; gap: 12px; margin-bottom: 28px; }
.quantity-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: white; }
.quantity-control button { width: 43px; height: 48px; border: 0; background: transparent; cursor: pointer; font-size: 20px; }
.quantity-control input { width: 48px; border: 0; outline: none; text-align: center; font-weight: 800; }
.detail-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0; }
.detail-point { padding: 13px; border-radius: 12px; background: white; color: #37485c; font-size: 14px; }
.specs { margin-top: 32px; padding-top: 25px; border-top: 1px solid var(--line); }
.specs h2 { margin: 0 0 14px; font-size: 18px; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; margin: 0; }
.spec-list div { display: flex; justify-content: space-between; gap: 15px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; font-weight: 750; text-align: right; }

.cart-page { padding: 58px 0 95px; }
.cart-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: start; margin-top: 34px; }
.cart-items { display: grid; gap: 13px; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.cart-thumb.product-visual { aspect-ratio: 1; border-radius: 13px; }
.cart-thumb.product-visual .device { width: 42px; height: 52px; border-width: 4px; border-radius: 8px; box-shadow: 7px 8px 0 rgba(47,107,255,.14); font-size: 13px; }
.cart-thumb.product-visual.computadores .device { width: 60px; height: 39px; }
.cart-thumb.product-visual.computadores .device::after { width: 70px; height: 4px; left: -9px; bottom: -8px; }
.cart-item h3 { margin: 0 0 3px; font-size: 17px; }
.cart-item p { margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.cart-actions { display: flex; align-items: center; gap: 13px; }
.cart-actions input { width: 65px; height: 39px; border: 1px solid var(--line); border-radius: 9px; text-align: center; }
.remove-button { border: 0; color: var(--danger); background: transparent; cursor: pointer; font-size: 13px; font-weight: 750; }
.cart-line-total { min-width: 115px; text-align: right; font-weight: 900; }
.checkout-card { position: sticky; top: 104px; padding: 26px; border-radius: 20px; color: white; background: var(--ink); box-shadow: var(--shadow); }
.checkout-card h2 { margin: 0 0 7px; font-size: 25px; }
.checkout-card > p { margin: 0 0 23px; color: #9fb0c4; font-size: 14px; }
.checkout-summary { display: grid; gap: 10px; padding: 18px 0; border-block: 1px solid rgba(255,255,255,.13); }
.summary-line { display: flex; justify-content: space-between; gap: 20px; }
.summary-line span { color: #aebdd0; }
.summary-total { margin: 17px 0 23px; font-size: 21px; font-weight: 900; }

.form-section { padding: 74px 0 98px; }
.procurement-intro { padding: 76px 0; color: white; background: var(--ink); overflow: hidden; }
.procurement-intro .section-copy { color: #aebdd0; }
.procurement-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px; align-items: start; }
.route-card { padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.04); }
.route-card h3 { margin: 0 0 20px; font-size: 18px; }
.route-path { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 12px; }
.route-node { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%; background: #172a43; font-size: 12px; font-weight: 850; text-align: center; }
.route-line { height: 2px; background: linear-gradient(90deg, var(--orange), var(--blue)); }
.service-options { display: grid; gap: 12px; margin-top: 28px; }
.service-option { display: flex; align-items: start; gap: 13px; }
.service-option i { display: grid; flex: none; place-items: center; width: 29px; height: 29px; border-radius: 9px; color: white; background: var(--blue); font-style: normal; font-size: 12px; font-weight: 900; }
.service-option strong { display: block; }
.service-option span { color: #aebdd0; font-size: 14px; }

.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 23px; background: white; box-shadow: 0 22px 65px rgba(7,17,31,.08); }
.form-card h2 { margin: 0 0 7px; font-size: 28px; letter-spacing: -.035em; }
.form-card > p { margin: 0 0 26px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #314157; font-size: 14px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: #fbfcfe; outline: none; }
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,107,255,.09); }
.field small { color: var(--muted); }
.field-error { color: var(--danger); font-size: 12px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.form-note { max-width: 410px; color: var(--muted); font-size: 13px; }
.success-panel { padding: 34px; border: 1px solid #a7dfca; border-radius: 18px; background: #ecfdf5; }
.success-panel span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: white; background: var(--success); font-size: 24px; }
.success-panel h2 { margin: 18px 0 8px; }
.success-panel p { margin: 0 0 20px; color: #315f52; }

.modal-backdrop { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px; background: rgba(7,17,31,.72); backdrop-filter: blur(8px); }
.modal { width: min(620px, 100%); max-height: 90vh; overflow: auto; padding: 30px; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.modal h2 { margin: 0 0 8px; font-size: 28px; }
.modal > p { margin: 0 0 22px; color: var(--muted); }
.modal .form-grid { gap: 14px; }
.modal-actions { display: flex; justify-content: end; gap: 10px; margin-top: 22px; }

.toast-region { position: fixed; right: 20px; bottom: 20px; z-index: 300; display: grid; gap: 10px; width: min(380px, calc(100% - 40px)); }
.toast { padding: 14px 16px; border-radius: 12px; color: white; background: var(--ink); box-shadow: var(--shadow); animation: toast-in .25s ease; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
@keyframes toast-in { from { transform: translateY(12px); opacity: 0; } }

.site-footer { padding: 64px 0 24px; color: white; background: #050c16; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 65px; }
.brand-footer { color: white; }
.footer-grid > div:first-child p { max-width: 390px; color: #8ea0b7; }
.footer-grid h2 { margin: 0 0 15px; color: #8394aa; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a, .footer-grid > div > p { display: block; margin: 8px 0; color: #c4cfdd; font-size: 14px; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); color: #75869d; font-size: 12px; }
.footer-bottom p { margin: 0; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(720px, 100%); margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .store-products.product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { gap: 35px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-card { position: static; }
  .procurement-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 19px; }
  .header-inner { min-height: 68px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 68px 0 0; display: none; align-content: start; padding: 24px 14px; background: var(--canvas); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 14px 16px; font-size: 17px; }
  .main-nav .cart-link { margin-top: 8px; text-align: center; }
  .hero { padding: 45px 0 64px; }
  .display { font-size: clamp(44px, 14vw, 64px); }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .visual-panel { inset: 10px 0 35px 16px; }
  .visual-content { padding: 30px 26px; }
  .visual-title { font-size: 39px; }
  .floating-card.one { left: 0; top: 52px; }
  .floating-card.two { right: -4px; bottom: 0; }
  .services, .featured, .process { padding: 68px 0; }
  .service-grid, .product-grid, .store-products.product-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; padding: 28px; }
  .section-heading { align-items: start; flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  .step span { margin-bottom: 25px; }
  .cta-panel { grid-template-columns: 1fr; padding: 31px 25px; }
  .page-hero-row { align-items: start; flex-direction: column; }
  .store-layout { grid-template-columns: 1fr; padding-bottom: 70px; }
  .filters { position: static; }
  .category-list { display: flex; overflow-x: auto; padding-bottom: 4px; }
  .filter-button { width: auto; white-space: nowrap; }
  .store-tools { align-items: stretch; flex-direction: column; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail { padding-top: 35px; }
  .detail-points, .spec-list { grid-template-columns: 1fr; }
  .purchase-row { flex-wrap: wrap; }
  .purchase-row .button { flex: 1; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-line-total { grid-column: 2; min-width: 0; text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card { padding: 24px 19px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .route-path { gap: 7px; }
  .route-node { width: 62px; height: 62px; font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

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