*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --slate:        #c05229;
  --slate-mid:    #a0411f;
  --slate-light:  #e8eef7;
  --slate-pale:   #f0f4fb;
  --white:        #ffffff;
  --off-white:    #fafbfd;
  --surface:      #f5f7fa;
  --border:       #e2e8f0;
  --border-mid:   #cbd5e1;
  --copper:       #c0522a;
  --copper-lt:    #e8673a;
  --copper-pale:  #fdf2ee;
  --ink:          #a69a80;
  --ink-mid:      #374151;
  --ink-soft:     #6b7280;
  --ink-faint:    #9ca3af;
  --green:        #15803d;
  --green-bg:     #f0fdf4;
  --green-bdr:    #bbf7d0;
  --red:          #b91c1c;
  --red-bg:       #fef2f2;
  --red-bdr:      #fecaca;
  --amber:        #92400e;
  --amber-bg:     #fffbeb;
  --amber-bdr:    #fde68a;
  --sh-sm:        0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --sh-md:        0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --sh-lg:        0 10px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* TOPBAR */
.topbar {
  background: var(--slate);
  color: rgba(255,255,255,.6);
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tb-badge {
  background: var(--copper);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tb-sep { opacity: .3; }

/* SITE HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--sh-sm);
}
.site-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Serif 4', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--slate);
  text-decoration: none;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--slate);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Source Serif 4', serif;
  font-weight: 900;
  font-size: 15px;
  border-radius: 4px;
}
.h-nav { display: flex; gap: 6px; align-items: center; }
.h-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .15s;
}
.h-nav a:hover { background: var(--slate-pale); color: var(--slate); }
.h-nav .cta {
  background: var(--slate);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}
.h-nav .cta:hover { background: var(--slate-mid); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), #e8923a, var(--copper));
  z-index: 3;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,24,39,.92) 0%, rgba(17,24,39,.72) 40%, rgba(30,58,95,.5) 100%);
}
.hero-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 80px 32px 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-inner .hero-kicker { align-self: center; }
.hero-inner { align-items: center; text-align: center; }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-desc { color: rgba(255,255,255); margin-left: auto; margin-right: auto; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.hero-stats { justify-content: center; }
.hs-num { text-shadow: 0 1px 6px rgba(0,0,0,.3);  color: #f5a87a;}
.hs-lbl { color: rgba(255,255,255,.65); }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  margin-bottom: 20px;
}
.kicker-dot { width: 6px; height: 6px; background: var(--copper-lt); border-radius: 50%; }
.hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero h1 .acc { color: #f5a87a; }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.hs { display: flex; flex-direction: column; gap: 2px; }
.hs-num {
  font-family: 'Source Serif 4', serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}
.hs-lbl {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-trust {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 200px;
  flex-shrink: 0;
}
.ht-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.ti {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.ti-icon {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* QUICK NAV */
.qnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
}
.qnav::-webkit-scrollbar { height: 0; }
.qn-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 12px 14px 0;
  border-right: 1px solid var(--border);
  margin-right: 8px;
  flex-shrink: 0;
}
.qn-a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .15s;
  flex-shrink: 0;
}
.qn-a:hover { color: var(--slate); border-bottom-color: var(--slate); }
.qn-a.top { color: var(--copper); border-bottom-color: var(--copper); }
.qn-num {
  width: 19px; height: 19px;
  background: var(--slate-light);
  color: var(--slate);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* CONTAINER */
.wrap { max-width: 900px; margin: 0 auto; padding: 0 32px; }

/* SECTION HEADER */
.sec-hd {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.sec-title {
  font-family: 'Source Serif 4', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.sec-sub { font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; }

/* INTRO */
.intro { padding: 64px 0 56px; }
.art-body { display: flex; flex-direction: column; gap: 44px; }
.cb p {
  font-size: 16.5px;
  color: var(--ink-mid);
  line-height: 1.78;
  margin-bottom: 12px;
}
.cb p:last-child { margin-bottom: 0; }

/* RATING CARDS */
.r-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.r-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.r-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.r-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.r-card.entry::before { background: #64748b; }
.r-card.mid::before   { background: var(--slate); }
.r-card.pro::before   { background: var(--copper); }
.r-tier {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.r-card.entry .r-tier { color: #64748b; }
.r-card.mid .r-tier   { color: var(--slate); }
.r-card.pro .r-tier   { color: var(--copper); }
.r-name {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.r-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* PULL QUOTE */
.pq {
  background: var(--slate-pale);
  border-left: 4px solid var(--slate);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-top: 20px;
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.65;
}

/* DATA TABLE */
.dtbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  font-size: 14px;
  margin-top: 16px;
}
.dtbl thead tr { background: var(--slate); }
.dtbl thead th {
  padding: 13px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.dtbl tbody tr { border-top: 1px solid var(--border); transition: background .12s; }
.dtbl tbody tr:hover { background: var(--slate-pale); }
.dtbl tbody td { padding: 12px 18px; color: var(--ink-mid); }
.dtbl tbody td:first-child { font-weight: 600; color: var(--ink); }
.td-a {
  font-weight: 700;
  color: var(--amber);
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
}
.td-tag {
  display: inline-block;
  background: var(--amber-bg);
  border: 1px solid var(--amber-bdr);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

/* MISTAKES */
.m-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.m-item {
  background: var(--red-bg);
  border: 1px solid var(--red-bdr);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.m-ico {
  width: 22px; height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.m-txt { font-size: 14.5px; color: var(--ink-mid); line-height: 1.5; }

/* PICKS BANNER */
.picks-banner {
  background: linear-gradient(135deg, var(--copper) 0%, #d4693e 100%);
  padding: 52px 32px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.picks-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
}
.pb-inner { position: relative; z-index: 1; }
.pb-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.picks-banner h2 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.picks-banner p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══ PRODUCT LIST ══ */
.pl-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 44px;
}
.pl-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pl-label {
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.pl-hint { font-size: 14px; color: var(--ink-faint); font-style: italic; }
.pl-list {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.pl-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  position: relative;
}
.pl-row:last-child { border-bottom: none; }
.pl-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .15s;
}
.pl-row:hover { background: var(--slate-pale); }
.pl-row:hover::before { background: var(--slate); }
.pl-row:first-child:hover::before { background: var(--copper); }
.pl-row:last-child:hover::before  { background: var(--green); }

.pl-num {
  width: 32px; height: 32px;
  min-width: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
}
.pl-row:first-child .pl-num { background: var(--copper); border-color: var(--copper); color: #fff; }

.pl-body { flex: 1; min-width: 0; }
.pl-name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.pl-meta {
  font-size: 13px;
  color: var(--ink-soft);
  font-family: 'Source Code Pro', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.pl-tags { display: flex; gap: 6px; }
.pl-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
.pl-tag.ed  { background: var(--copper-pale); color: var(--copper); }
.pl-tag.fi  { background: var(--amber-bg);    color: var(--amber); }
.pl-tag.val { background: var(--green-bg);    color: var(--green); }
.pl-tag.sec { background: var(--slate-pale);  color: var(--slate); }
.pl-tag.war { background: #faf5ff;            color: #7c3aed; }

.pl-score {
  font-family: 'Source Code Pro', monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  min-width: 46px;
  text-align: right;
}
.pl-score small { font-size: 11px; color: var(--ink-faint); }
.pl-price {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  min-width: 72px;
  text-align: right;
}
.pl-arr {
  font-size: 15px;
  color: var(--ink-faint);
  transition: transform .15s, color .15s;
  width: 20px;
  text-align: center;
}
.pl-row:hover .pl-arr { transform: translateX(4px); color: var(--slate); }
.pl-row:first-child:hover .pl-arr { color: var(--copper); }

/* PRODUCT LIST THUMBNAIL */
.pl-thumb {
  width: 52px; height: 52px;
  min-width: 52px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.pl-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* SAFES SECTION */
.safes { padding: 56px 0 72px; }
.safe-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 36px;
  box-shadow: var(--sh-md);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  animation: cardIn .45s ease both;
}
.safe-card:nth-child(2) { animation-delay: .07s; }
.safe-card:nth-child(3) { animation-delay: .14s; }
.safe-card:nth-child(4) { animation-delay: .21s; }
.safe-card:nth-child(5) { animation-delay: .28s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.safe-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }

.c-accent { height: 4px; background: linear-gradient(90deg, var(--slate), var(--slate-mid)); }
.safe-card:first-child .c-accent { background: linear-gradient(90deg, var(--copper), #e8923a); }
.safe-card:last-child  .c-accent { background: linear-gradient(90deg, #15803d, #22c55e); }

.c-head {
  padding: 22px 26px 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--surface);
}
.c-num {
  width: 44px; height: 44px;
  background: var(--slate);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}
.safe-card:first-child .c-num { background: var(--copper); }

/* card image panel */
.c-img-panel {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-img-panel img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .3s;
}
.safe-card:hover .c-img-panel img { transform: scale(1.03); }
.c-title-wrap { flex: 1; }
.c-labels { display: flex; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.c-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.cp-ed  { background: var(--copper-pale); color: var(--copper); }
.cp-val { background: var(--green-bg);    color: var(--green); }
.cp-fi  { background: var(--amber-bg);    color: var(--amber); }
.cp-sec { background: var(--slate-pale);  color: var(--slate); }

.c-name {
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.c-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
.c-rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stars { display: flex; gap: 1px; }
.st { color: #f59e0b; font-size: 14px; }
.score {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.sep-dot { color: var(--ink-faint); font-size: 12px; }
.rec { font-size: 13.5px; color: var(--ink-soft); }

.c-price-row {
  background: var(--green-bg);
  border-bottom: 1px solid var(--green-bdr);
  padding: 14px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.price-now {
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -.02em;
  line-height: 1;
}
.price-was { font-size: 14px; color: var(--ink-faint); text-decoration: line-through; }
.price-save {
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.del-tag { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--green); }

.c-body {
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
}
.pc-block { display: flex; flex-direction: column; gap: 10px; }
.pc-box { border-radius: 8px; padding: 14px 16px; }
.pc-box.pros { background: var(--green-bg); border: 1px solid var(--green-bdr); }
.pc-box.cons { background: var(--red-bg);   border: 1px solid var(--red-bdr); }
.pc-hd {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.pc-box.pros .pc-hd { color: var(--green); }
.pc-box.cons .pc-hd { color: var(--red); }
.pc-dot { width: 8px; height: 8px; border-radius: 50%; }
.pc-box.pros .pc-dot { background: var(--green); }
.pc-box.cons .pc-dot { background: var(--red); }
.pc-ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.pc-ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-mid);
}
.pc-ul li::before { font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.pc-box.pros .pc-ul li::before { content: '✓'; color: var(--green); font-weight: 700; }
.pc-box.cons .pc-ul li::before { content: '✗'; color: var(--red);   font-weight: 700; }

.c-desc { display: flex; flex-direction: column; gap: 10px; }
.c-desc p { font-size: 15.5px; color: var(--ink-mid); line-height: 1.78; }

.c-specs { padding: 0 26px 22px; }
.specs-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 8px;
}
.sp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  transition: background .15s;
}
.sp:hover { background: var(--slate-pale); border-color: var(--border-mid); }
.sp-k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.sp-v {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Source Code Pro', monospace;
}
.sp-v.bl { color: var(--slate); }
.sp-v.cu { color: var(--copper); }

.c-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.vat { font-size: 13.5px; color: var(--ink-soft); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--slate);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn:hover {
  background: var(--slate-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30,58,95,.25);
}
.btn .arr { transition: transform .15s; }
.btn:hover .arr { transform: translateX(3px); }
.safe-card:first-child .btn { background: var(--copper); }
.safe-card:first-child .btn:hover { background: var(--copper-lt); box-shadow: 0 4px 14px rgba(192,82,42,.3); }

/* DISCLAIMER */
.disc {
  background: var(--amber-bg);
  border-top: 1px solid var(--amber-bdr);
  border-bottom: 1px solid var(--amber-bdr);
  padding: 28px 32px;
}
.disc-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.disc-ico {
  width: 26px; height: 26px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.disc-txt { font-size: 14px; color: #78350f; line-height: 1.65; }
.disc-txt strong { font-weight: 700; }

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 48px 32px 32px;
}
.ft-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ft-logo { font-family: 'Source Serif 4', serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 28px; }
.ft-sections {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  text-align: left;
}
.ft-section h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.ft-section p, .ft-section a {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  text-decoration: none;
  display: block;
}
.ft-logo a {
  font-size: 23.5px;
  color: rgb(245, 245, 245);
  line-height: 3.7;
  text-decoration: none;
  display: block;
}
.ft-section a:hover { color: rgba(255,255,255,.9); }
.ft-section a + a { margin-top: 4px; }
.ft-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
}
.ft-copy { font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero { min-height: 420px; }
  .hero-inner { padding: 60px 16px 40px; }
  .c-body { grid-template-columns: 1fr; }
  .r-grid { grid-template-columns: 1fr; }
  .m-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 20px 60px; }
  .wrap { padding: 0 16px; }
  .site-header-inner { padding: 12px 16px; }
  .h-nav .nav-only { display: none; }
  .del-tag { margin-left: 0; width: 100%; }
  .pl-tags { display: none; }
  .pl-meta { display: none; }
  .pl-hint { display: none; }
  .pl-thumb { display: none; }
  .pl-score { min-width: 38px; font-size: 13px; }
  .pl-price { min-width: 60px; font-size: 15px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .c-head { flex-direction: column; }
  .c-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* STATIC PAGES */
.page-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 32px 72px;
}
.page-title {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.page-updated {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.page-body h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 32px 0 10px;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.78;
  margin-bottom: 12px;
}
.page-body ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-body ul li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.page-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--slate);
  border-radius: 50%;
}
.page-body a {
  color: var(--slate-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.page-body a:hover { color: var(--copper); }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.contact-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.contact-card h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 8px;
}
.contact-card a {
  font-size: 14px;
  color: var(--slate-mid);
  text-decoration: none;
  font-weight: 600;
}
.contact-card a:hover { color: var(--copper); }
.contact-form-section h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form-section > p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--sh-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate-mid);
  box-shadow: 0 0 0 3px rgba(45,82,130,.12);
}
.form-group textarea { resize: vertical; }

/* FORM ALERTS */
.form-alert {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.form-alert-success {
  background: var(--green-bg);
  border: 1px solid var(--green-bdr);
  color: var(--green);
}
.form-alert-error {
  background: var(--red-bg);
  border: 1px solid var(--red-bdr);
  color: var(--red);
}
.form-alert strong { font-weight: 700; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  border-top: 3px solid var(--copper);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  animation: cookieSlide .4s ease;
}
@keyframes cookieSlide {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 260px;
}
.cookie-text strong {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover { color: #fff; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.cookie-btn-primary {
  background: var(--copper);
  color: #fff;
}
.cookie-btn-primary:hover {
  background: var(--copper-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192,82,42,.3);
}
.cookie-btn-outline {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
}
.cookie-btn-outline:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

/* COOKIE TABLE (policy page) */
.cookie-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 14px;
  margin: 12px 0 24px;
}
.cookie-table thead tr { background: var(--slate); }
.cookie-table thead th {
  padding: 11px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.cookie-table tbody td {
  padding: 10px 16px;
  color: var(--ink-mid);
  border-top: 1px solid var(--border);
}
.cookie-table tbody td:first-child {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 700px) {
  .cookie-banner-inner { padding: 18px 16px; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 700px) {
  .page-wrap { padding: 40px 16px 56px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
