/* ============================================================
   GRIPR — Shared page system
   Confirmation · Suivi · Livraison & retours · Contact ·
   Mentions légales · CGV · Confidentialité
   Same brand: bone/ink, orange-roche, grain, Anton + Hanken + mono
   ============================================================ */

:root {
  --paper:   #E9E2D4;
  --paper-2: #E1D9C8;
  --chalk:   #F4F0E6;
  --white:   #FCFBF7;
  --ink:     #141109;
  --ink-2:   #1B1710;
  --ink-3:   #262019;
  --char:    #0C0A06;
  --stone:   #9A917E;
  --stone-d: #6E6555;
  --accent:  #E2552B;
  --accent-d:#C8431F;
  --amber:   #E8A33D;
  --green:   #5A7D4F;

  --line:        rgba(20,17,9,0.14);
  --line-soft:   rgba(20,17,9,0.08);
  --line-dark:   rgba(244,240,230,0.13);
  --line-dark-s: rgba(244,240,230,0.07);

  --wrap: 1180px;
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; color: var(--ink); }
::selection { background: var(--accent); color: var(--chalk); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.mono { font-family: var(--mono); }
.accent { color: var(--accent); }

.grain { position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ============================================================
   HEADER
   ============================================================ */
.pg-head { position: sticky; top: 0; z-index: 50; background: rgba(233,226,212,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); }
.pg-head-in { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--display); font-size: 25px; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 11px; }
.logo .glyph { width: 12px; height: 21px; background: var(--ink); clip-path: polygon(0 0, 100% 22%, 78% 100%, 22% 78%); }
.pg-nav { display: flex; align-items: center; gap: 28px; }
.pg-nav a { font-size: 14px; font-weight: 600; color: var(--stone-d); transition: color .2s; }
.pg-nav a:hover { color: var(--ink); }
.pg-nav a.cta { background: var(--accent); color: var(--chalk); padding: 10px 18px; border-radius: 100px; font-weight: 700; font-size: 13.5px; transition: background .2s, transform .15s; }
.pg-nav a.cta:hover { background: var(--accent-d); color: var(--chalk); transform: translateY(-1px); }

/* ============================================================
   HERO (page header)
   ============================================================ */
.pg-hero { padding: 78px 0 56px; border-bottom: 1px solid var(--line-soft); position: relative; }
.pg-hero .crumb { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-d); display: flex; align-items: center; gap: 9px; margin-bottom: 26px; }
.pg-hero .crumb a:hover { color: var(--accent); }
.pg-hero .crumb .sl { opacity: 0.5; }
.pg-hero .eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.pg-hero h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 78px); text-transform: uppercase; line-height: 0.9; letter-spacing: 0.01em; }
.pg-hero .lead { font-size: 18px; color: var(--stone-d); max-width: 56ch; margin-top: 20px; }
.pg-hero .lead strong { color: var(--ink); font-weight: 700; }
.pg-hero .updated { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--stone); margin-top: 18px; }

/* ============================================================
   BODY / PROSE (legal & info)
   ============================================================ */
.pg-body { padding: 60px 0 100px; }
.pg-grid { display: grid; grid-template-columns: 230px 1fr; gap: 64px; align-items: start; }

/* sticky table of contents */
.toc { position: sticky; top: 100px; }
.toc .toc-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; }
.toc ol { list-style: none; counter-reset: t; display: flex; flex-direction: column; gap: 2px; }
.toc a { display: flex; gap: 10px; padding: 8px 10px; font-size: 13.5px; color: var(--stone-d); border-radius: 5px; border-left: 2px solid transparent; transition: background .2s, color .2s, border-color .2s; counter-increment: t; }
.toc a::before { content: counter(t, decimal-leading-zero); font-family: var(--mono); font-size: 11px; color: var(--accent); opacity: 0.8; }
.toc a:hover { background: rgba(20,17,9,0.04); color: var(--ink); }
.toc a.active { border-left-color: var(--accent); color: var(--ink); background: rgba(226,85,43,0.06); }

.prose { max-width: 720px; }
.prose h2 { font-family: var(--display); font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; line-height: 0.95; letter-spacing: 0.01em; margin: 48px 0 16px; scroll-margin-top: 100px; display: flex; align-items: baseline; gap: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h2 .hn { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0; }
.prose h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
.prose p { margin: 0 0 16px; color: #2A251C; }
.prose ul, .prose ol { margin: 0 0 18px 0; padding-left: 22px; color: #2A251C; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--accent); }
.prose a.link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose .note { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 4px; padding: 16px 18px; margin: 22px 0; font-size: 14.5px; color: var(--stone-d); }
.prose .note strong { color: var(--ink); }
.prose .ph-data { color: var(--accent-d); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 14.5px; }
.prose table th, .prose table td { text-align: left; padding: 12px 14px; border: 1px solid var(--line); }
.prose table th { background: var(--ink); color: var(--chalk); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.prose table tr:nth-child(even) td { background: var(--white); }

/* ============================================================
   GENERIC CARDS / SECTIONS
   ============================================================ */
.section { padding: 70px 0; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px 26px; }
.card .ico { width: 46px; height: 46px; border-radius: 11px; background: rgba(226,85,43,0.1); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--stone-d); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; font-weight: 800; font-size: 15px; padding: 16px 28px; border-radius: 4px; position: relative; overflow: hidden; transition: transform .2s var(--ease); white-space: nowrap; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-fill { background: var(--accent); color: var(--chalk); }
.btn-fill::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .4s var(--ease); }
.btn-fill:hover { transform: translateY(-2px); }
.btn-fill:hover::after { transform: translateY(0); }
.btn-fill > * { position: relative; z-index: 1; }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--chalk); }

/* ============================================================
   FORM FIELDS (contact, tracking) — floating label
   ============================================================ */
.field { position: relative; margin-bottom: 14px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 22px 16px 8px; background: var(--white); border: 1px solid var(--line);
  border-radius: 4px; outline: none; transition: border-color .2s, box-shadow .2s; line-height: 1.3;
}
.field input, .field select { height: 60px; }
.field textarea { min-height: 130px; padding-top: 26px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field label { position: absolute; left: 16px; top: 19px; right: 16px; font-size: 15px; color: var(--stone); pointer-events: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: top .16s var(--ease), font-size .16s var(--ease), color .16s var(--ease), letter-spacing .16s var(--ease); }
.field textarea + label { top: 22px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226,85,43,0.1); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select.filled + label {
  top: 9px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-d);
}
.field input:focus + label, .field textarea:focus + label { color: var(--accent); }
.field.err input, .field.err textarea { border-color: var(--accent-d); }
.field .msg { font-size: 12px; color: var(--accent-d); margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.frow { display: grid; gap: 14px; }
.frow.two { grid-template-columns: 1fr 1fr; }

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.cf { padding: 70px 0 90px; }
.cf-top { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.cf-check { width: 78px; height: 78px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin: 0 auto 26px; position: relative; }
.cf-check svg { width: 40px; height: 40px; color: #fff; }
.cf-check::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1.5px solid var(--green); opacity: 0.3; }
.cf-top .eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cf-top h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 72px); text-transform: uppercase; line-height: 0.9; }
.cf-top p { font-size: 17px; color: var(--stone-d); margin-top: 18px; }
.cf-top p b { color: var(--ink); }
.cf-order { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; }
.cf-order b { color: var(--accent); }

.cf-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }

/* receipt card (ink) */
.cf-receipt { background: var(--ink); color: var(--chalk); border-radius: 8px; overflow: hidden; box-shadow: 0 30px 70px -34px rgba(20,17,9,0.5); }
.cf-receipt .rhead { padding: 20px 26px; border-bottom: 1px solid var(--line-dark-s); display: flex; justify-content: space-between; align-items: center; }
.cf-receipt .rhead h2 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,240,230,0.7); }
.cf-receipt .ritem { display: grid; grid-template-columns: 70px 1fr auto; gap: 16px; padding: 22px 26px; align-items: center; }
.cf-receipt .rthumb { width: 70px; height: 70px; border-radius: 6px; overflow: hidden; background: #0B0906; }
.cf-receipt .rthumb img { width: 100%; height: 100%; object-fit: cover; }
.cf-receipt .rname { font-weight: 700; font-size: 15px; }
.cf-receipt .rref { font-family: var(--mono); font-size: 11px; color: rgba(244,240,230,0.5); margin-top: 3px; }
.cf-receipt .rqty { font-family: var(--mono); font-size: 11px; color: rgba(244,240,230,0.5); margin-top: 6px; }
.cf-receipt .rprice { font-weight: 800; font-size: 16px; }
.cf-receipt .rtot { padding: 18px 26px; border-top: 1px solid var(--line-dark-s); display: flex; flex-direction: column; gap: 10px; }
.cf-receipt .trow { display: flex; justify-content: space-between; font-size: 14px; color: rgba(244,240,230,0.75); }
.cf-receipt .trow.free .v { color: var(--green); font-weight: 600; }
.cf-receipt .trow.grand { padding-top: 14px; border-top: 1px solid var(--line-dark-s); align-items: baseline; }
.cf-receipt .trow.grand .l { font-family: var(--display); font-size: 20px; text-transform: uppercase; color: var(--chalk); }
.cf-receipt .trow.grand .v { font-family: var(--display); font-size: 30px; color: var(--chalk); }
.cf-receipt .trow.grand .v small { font-family: var(--mono); font-size: 11px; color: rgba(244,240,230,0.5); margin-left: 5px; }

/* details column */
.cf-side { display: flex; flex-direction: column; gap: 18px; }
.cf-box { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px 24px; }
.cf-box h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-d); margin-bottom: 12px; }
.cf-box .addr { font-size: 15px; line-height: 1.55; }
.cf-box .addr b { font-weight: 700; }
.cf-eta { display: flex; align-items: center; gap: 14px; }
.cf-eta .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(226,85,43,0.1); color: var(--accent); display: grid; place-items: center; flex: none; }
.cf-eta .ic svg { width: 22px; height: 22px; }
.cf-eta .d1 { font-weight: 800; font-size: 17px; }
.cf-eta .d2 { font-size: 13px; color: var(--stone-d); }

/* next steps timeline */
.steps { margin-top: 14px; }
.steps .stp { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding-bottom: 22px; position: relative; }
.steps .stp::before { content: ""; position: absolute; left: 14px; top: 28px; bottom: -2px; width: 1.5px; background: var(--line); }
.steps .stp:last-child { padding-bottom: 0; }
.steps .stp:last-child::before { display: none; }
.steps .dot { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); display: grid; place-items: center; font-family: var(--mono); font-size: 11px; color: var(--stone-d); z-index: 1; }
.steps .stp.done .dot { background: var(--green); border-color: var(--green); color: #fff; }
.steps .stp.now .dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.steps .stp .sh { font-weight: 700; font-size: 15px; }
.steps .stp .sp { font-size: 13.5px; color: var(--stone-d); margin-top: 2px; }
.steps .dot svg { width: 14px; height: 14px; }

.cf-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ============================================================
   TRACKING (suivi)
   ============================================================ */
.trk-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: start; max-width: 760px; }
.trk-form .btn { height: 60px; }
.trk-result { margin-top: 40px; max-width: 860px; display: none; }
.trk-result.show { display: block; animation: fade .5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.trk-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.trk-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; border-bottom: 1px solid var(--line-soft); flex-wrap: wrap; }
.trk-head .o { font-family: var(--mono); font-size: 12px; color: var(--stone-d); letter-spacing: 0.04em; }
.trk-head .o b { color: var(--ink); }
.trk-status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; color: var(--accent); background: rgba(226,85,43,0.1); padding: 7px 13px; border-radius: 100px; }
.trk-status .live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(226,85,43,0.55);} 70%{box-shadow:0 0 0 8px rgba(226,85,43,0);} 100%{box-shadow:0 0 0 0 rgba(226,85,43,0);} }
.trk-rail { display: grid; grid-template-columns: repeat(4, 1fr); padding: 36px 26px 30px; position: relative; }
.trk-rail .seg { text-align: center; position: relative; }
.trk-rail .seg::before { content: ""; position: absolute; top: 13px; left: -50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.trk-rail .seg:first-child::before { display: none; }
.trk-rail .seg.done::before { background: var(--green); }
.trk-rail .seg .pt { width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 2px solid var(--line); display: grid; place-items: center; margin: 0 auto 12px; position: relative; z-index: 1; }
.trk-rail .seg.done .pt { background: var(--green); border-color: var(--green); }
.trk-rail .seg.now .pt { background: var(--accent); border-color: var(--accent); }
.trk-rail .seg .pt svg { width: 14px; height: 14px; color: #fff; }
.trk-rail .seg .sl { font-weight: 700; font-size: 13px; }
.trk-rail .seg .sd { font-size: 11.5px; color: var(--stone-d); margin-top: 3px; font-family: var(--mono); }
.trk-log { border-top: 1px solid var(--line-soft); padding: 22px 26px; }
.trk-log .row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 9px 0; font-size: 14px; }
.trk-log .row .dt { font-family: var(--mono); font-size: 12px; color: var(--stone-d); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 22px 22px; display: flex; gap: 16px; align-items: flex-start; }
.ci-card .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(226,85,43,0.1); color: var(--accent); display: grid; place-items: center; flex: none; }
.ci-card .ic svg { width: 22px; height: 22px; }
.ci-card h3 { font-size: 16px; margin-bottom: 3px; }
.ci-card p { font-size: 14px; color: var(--stone-d); }
.ci-card a.link { color: var(--accent); font-weight: 600; }
.contact-form .form-ok { display: none; background: rgba(90,125,79,0.1); border: 1px solid rgba(90,125,79,0.35); border-radius: 8px; padding: 22px; text-align: center; }
.contact-form .form-ok.show { display: block; }
.contact-form .form-ok .ck { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin: 0 auto 12px; }
.contact-form .form-ok .ck svg { width: 22px; height: 22px; color: #fff; }
.contact-form .form-ok h3 { font-size: 18px; margin-bottom: 6px; }
.contact-form .form-ok p { font-size: 14px; color: var(--stone-d); }

/* ============================================================
   FAQ inline (livraison/retours)
   ============================================================ */
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa .q { width: 100%; text-align: left; display: flex; gap: 16px; align-items: center; padding: 22px 2px; font-size: 17px; font-weight: 700; }
.qa .q .qt { flex: 1; }
.qa .qi { flex: none; width: 20px; height: 20px; position: relative; }
.qa .qi::before, .qa .qi::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.qa .qi::before { width: 100%; height: 2px; top: 9px; }
.qa .qi::after { height: 100%; width: 2px; left: 9px; }
.qa.open .qi::after { transform: scaleY(0); }
.qa .a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.qa .a p { padding: 0 2px 22px; color: var(--stone-d); font-size: 15px; max-width: 64ch; }

/* ============================================================
   FOOTER (dark)
   ============================================================ */
.ftr { background: var(--char); color: rgba(244,240,230,0.55); padding: 64px 0 36px; }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark-s); }
.ftr .logo { color: var(--chalk); margin-bottom: 16px; }
.ftr .logo .glyph { background: var(--chalk); }
.ftr-top p { font-size: 14px; max-width: 30ch; }
.fcol h5 { color: var(--chalk); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.fcol a { display: block; font-size: 14px; padding: 6px 0; transition: color .2s; }
.fcol a:hover { color: var(--accent); }
.ftr-bot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; padding-top: 26px; font-size: 12.5px; }
.pays { display: flex; gap: 7px; }
.pays span { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; padding: 5px 8px; border: 1px solid var(--line-dark-s); border-radius: 3px; color: rgba(244,240,230,0.5); }

/* ============================================================
   REVEAL
   ============================================================ */
.r-up { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.r-up.in { opacity: 1; transform: none; }
.r-up.d1 { transition-delay: .08s; } .r-up.d2 { transition-delay: .16s; } .r-up.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .r-up { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  :root { --gut: 24px; }
  .pg-grid { grid-template-columns: 1fr; gap: 30px; }
  .toc { display: none; }
  .cf-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards-3 { grid-template-columns: 1fr; }
  .trk-form { grid-template-columns: 1fr; }
  .trk-form .btn { width: 100%; }
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .ftr-top > :first-child { grid-column: 1 / -1; }
  .trk-rail { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .trk-rail .seg:nth-child(3)::before, .trk-rail .seg:nth-child(4)::before { display: none; }
}
@media (max-width: 560px) {
  .wrap, .pg-head-in { padding-left: 22px; padding-right: 22px; }
  .pg-nav { gap: 16px; }
  .pg-nav a:not(.cta) { display: none; }
  .frow.two { grid-template-columns: 1fr; }
  .cf-actions .btn { width: 100%; }
  .ftr-top { grid-template-columns: 1fr; }
  .ftr-bot { flex-direction: column; align-items: flex-start; }
  .trk-rail { grid-template-columns: 1fr; gap: 22px; }
  .trk-rail .seg::before { display: none !important; }
}
