/* True Advize client brief system */

:root {
  --red: #D22323;
  --red-deep: #A81A1A;
  --red-on-dark: #EF5B4F;
  --slate: #52667A;
  --slate-soft: #7C8EA0;
  --ink: #05080C;
  --ink-2: #0C1219;
  --ink-3: #151D26;
  --paper: #F2F1ED;
  --paper-2: #FAFAF8;
  --white: #FFFFFF;
  --line: rgba(82, 102, 122, 0.20);
  --line-dark: rgba(242, 241, 237, 0.14);
  --shadow-sm: 0 1px 2px rgba(5, 8, 12, 0.05), 0 4px 14px rgba(5, 8, 12, 0.05);
  --shadow-md: 0 2px 6px rgba(5, 8, 12, 0.06), 0 18px 48px rgba(5, 8, 12, 0.10);
  --shadow-lg: 0 4px 12px rgba(5, 8, 12, 0.08), 0 40px 90px rgba(5, 8, 12, 0.16);
  --wrap: 1120px;
  --narrow: 760px;
  --r: 14px;
  --r-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: var(--narrow); }

/* ---------- Header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.brand-logo { display: block; }
.brand-logo img { width: 148px; height: auto; }

.head-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-soft);
  text-align: right;
  line-height: 1.35;
}
.head-meta b { color: var(--paper); font-weight: 600; display: block; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 26px rgba(210, 35, 35, 0.30); }
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 16px 34px rgba(210, 35, 35, 0.38); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: rgba(242,241,237,.4); background: rgba(242,241,237,.06); }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(5,8,12,.22); }
.btn-outline:hover { border-color: var(--ink); background: rgba(5,8,12,.04); }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 76px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -34%;
  right: -14%;
  width: 74vw;
  max-width: 760px;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(210,35,35,.30), rgba(210,35,35,0) 66%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -20%;
  bottom: -46%;
  width: 70vw;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(82,102,122,.30), rgba(82,102,122,0) 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-on-dark);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--red-on-dark);
  display: block;
}
.eyebrow.on-light { color: var(--red); }

.hero h1 {
  font-size: clamp(34px, 7.2vw, 62px);
  max-width: 15ch;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--red); }

.hero .lede {
  font-size: clamp(17px, 2.3vw, 20px);
  color: rgba(242, 241, 237, 0.76);
  max-width: 60ch;
  line-height: 1.62;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-facts span {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(242,241,237,.72);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(242,241,237,.03);
}

/* ---------- Sections ---------- */

.sec { padding: 74px 0; }
.sec.tight { padding: 56px 0; }
.sec.dark { background: var(--ink); color: var(--paper); }
.sec.deep { background: var(--ink-2); color: var(--paper); }
.sec.alt { background: var(--paper-2); }
.sec + .sec:not(.dark):not(.deep):not(.alt) { padding-top: 0; }

.sec-head { margin-bottom: 34px; }
.sec-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}
.sec h2 {
  font-size: clamp(27px, 4.6vw, 40px);
  max-width: 20ch;
}
.sec.dark h2, .sec.deep h2 { color: var(--paper); }
.sec.dark .sec-num, .sec.deep .sec-num { color: var(--red-on-dark); }
.sec-sub {
  margin-top: 16px;
  font-size: clamp(16.5px, 2vw, 19px);
  color: var(--slate);
  max-width: 62ch;
  line-height: 1.6;
}
.sec.dark .sec-sub, .sec.deep .sec-sub { color: rgba(242,241,237,.7); }

.body-copy { max-width: 68ch; }
.body-copy p { font-size: 17px; color: #24303C; }
.sec.dark .body-copy p, .sec.deep .body-copy p { color: rgba(242,241,237,.78); }
.body-copy strong { color: var(--ink); font-weight: 600; }
.sec.dark .body-copy strong, .sec.deep .body-copy strong { color: var(--paper); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Cards ---------- */

.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.card p { font-size: 15.5px; color: var(--slate); margin-bottom: 0; line-height: 1.62; }
.card .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.card-dark {
  background: var(--ink-3);
  border-color: var(--line-dark);
  box-shadow: none;
}
.card-dark .kicker { color: var(--red-on-dark); }
.card-dark h3 { color: var(--paper); }
.card-dark p { color: rgba(242,241,237,.68); }

/* Numbered edge cards */
.edge {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.edge:last-child { border-bottom: 0; }
.edge-n {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.edge-b h3 { font-size: 20px; margin-bottom: 8px; }
.edge-b p { color: var(--slate); font-size: 16px; margin-bottom: 0; }
.sec.dark .edge, .sec.deep .edge { border-color: var(--line-dark); }
.sec.dark .edge-b h3, .sec.deep .edge-b h3 { color: var(--paper); }
.sec.dark .edge-b p, .sec.deep .edge-b p { color: rgba(242,241,237,.7); }

/* ---------- Teardown ---------- */

.teardown { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.td-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.td-head { padding: 24px 26px 20px; border-bottom: 1px solid var(--line); }
.td-head .tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag-you { background: rgba(210,35,35,.10); color: var(--red); }
.tag-them { background: rgba(82,102,122,.12); color: var(--slate); }
.td-head h3 { font-size: 22px; margin-bottom: 6px; }
.td-head .url { font-size: 13px; color: #627488; font-weight: 500; word-break: break-all; }

.td-list { list-style: none; margin: 0; padding: 8px 26px 26px; }
.td-list li {
  padding: 15px 0 15px 26px;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
  line-height: 1.58;
  color: var(--slate);
  position: relative;
}
.td-list li:last-child { border-bottom: 0; }
.td-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
  opacity: .55;
}
.td-list li b { color: var(--ink); font-weight: 600; }

.fix-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  margin-top: 22px;
}
.fix-band h3 { font-size: 21px; margin-bottom: 20px; color: var(--paper); }
.fix-grid { display: grid; gap: 14px 26px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.fix-grid div {
  font-size: 15px;
  color: rgba(242,241,237,.74);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.fix-grid div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--red);
}

/* ---------- Quote / callout ---------- */

.callout {
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 26px;
  margin: 30px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(19px, 2.8vw, 25px);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 30ch;
}
.sec.dark .callout, .sec.deep .callout { color: var(--paper); }

.note {
  background: rgba(210,35,35,.05);
  border: 1px solid rgba(210,35,35,.22);
  border-radius: var(--r);
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #3A2020;
  margin-top: 26px;
}
.note b { color: var(--red); }
.sec.dark .note, .sec.deep .note, .featured .note, .card-dark .note {
  background: rgba(210,35,35,.10);
  border-color: rgba(210,35,35,.32);
  color: rgba(242,241,237,.82);
}
.sec.dark .note b, .sec.deep .note b, .featured .note b, .card-dark .note b { color: #FF7A6E; }

/* ---------- Budget ---------- */

.budget {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.budget-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  white-space: nowrap;
}
.budget-num small { display: block; font-size: 13px; font-weight: 600; color: var(--slate); letter-spacing: 0.04em; margin-top: 10px; }
.budget p { font-size: 16px; color: var(--slate); margin: 0; }

/* ---------- Pricing ---------- */

.engine-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.engine-label i {
  font-style: normal;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px;
  letter-spacing: 0;
}

.featured {
  position: relative;
  background-color: var(--ink-2);
  background-image: linear-gradient(160deg, var(--ink-2) 0%, var(--ink) 68%);
  border: 1px solid rgba(210,35,35,.35);
  border-radius: 26px;
  padding: 42px 38px;
  color: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured::before {
  content: '';
  position: absolute;
  top: -40%; right: -18%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(210,35,35,.26), rgba(210,35,35,0) 68%);
  pointer-events: none;
}
.featured > * { position: relative; z-index: 2; }
.ribbon {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.featured h3 { font-size: clamp(26px, 4.4vw, 36px); color: var(--paper); margin-bottom: 12px; }
.featured .sub { color: rgba(242,241,237,.7); font-size: 17px; max-width: 54ch; margin-bottom: 30px; }

.price-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.price-box {
  background: rgba(242,241,237,.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 22px 24px;
}
.price-box .label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--slate-soft); display: block; margin-bottom: 10px;
}
.price-box .amt {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(30px, 5.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--paper);
}
.price-box .amt em { font-style: normal; font-size: 15px; font-weight: 500; color: var(--slate-soft); letter-spacing: 0; margin-left: 4px; }

.inc { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.inc li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(242,241,237,.8);
}
.inc li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.inc.on-light li { color: var(--slate); }

.spend-note {
  border-top: 1px solid var(--line-dark);
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242,241,237,.62);
}
.spend-note b { color: var(--paper); font-weight: 600; }
.spend-note.on-light { border-color: var(--line); color: var(--slate); }
.spend-note.on-light b { color: var(--ink); }

/* Tiers */
.tiers { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: stretch; }
.tier {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tier.rec {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.tier .tier-tag {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--red);
  color: #fff;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.tier h3 { font-size: 23px; margin-bottom: 8px; }
.tier .tier-for { font-size: 14.5px; color: #627488; margin-bottom: 22px; line-height: 1.5; min-height: 4.5em; }
.tier .tier-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 40px; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink); margin-bottom: 4px;
}
.tier .tier-price em { font-style: normal; font-size: 14px; font-weight: 500; color: var(--slate); letter-spacing: 0; }
.tier .tier-vol {
  font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--red); margin: 18px 0 14px; padding-top: 18px; border-top: 1px solid var(--line);
}
.tier ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.tier ul li { position: relative; padding-left: 26px; font-size: 15px; color: var(--slate); line-height: 1.5; }
.tier ul li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.tier .tier-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: #627488;
  line-height: 1.55;
}

.vs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  margin-top: 8px;
}
.vs-card {
  background: rgba(242,241,237,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}
.vs-card .kicker { color: var(--red-on-dark); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.vs-card h3 { font-size: 21px; color: var(--paper); margin-bottom: 10px; }
.vs-card p { font-size: 15.5px; color: rgba(242,241,237,.7); margin: 0; line-height: 1.6; }

/* ---------- CTA + Footer ---------- */

.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 26px;
  padding: 50px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: auto -10% -70% -10%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(210,35,35,.24), rgba(210,35,35,0) 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(26px, 4.4vw, 40px); color: var(--paper); margin: 0 auto 16px; max-width: 18ch; }
.cta-band p { color: rgba(242,241,237,.72); max-width: 52ch; margin: 0 auto 30px; font-size: 17px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.site-foot {
  background: var(--ink);
  color: var(--paper);
  padding: 58px 0 40px;
  margin-top: 0;
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-brand img { width: 168px; margin-bottom: 18px; }
.foot-brand p { font-size: 14.5px; color: rgba(242,241,237,.6); max-width: 34ch; margin: 0; }
.foot-contact { display: grid; gap: 14px; }
.foot-contact a {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--paper);
  transition: color .18s ease;
}
.foot-contact a:hover { color: var(--red); }
.foot-contact a span {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--slate-soft); display: block; margin-bottom: 2px;
}
.foot-contact a div { display: block; }
.foot-bottom {
  padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px; color: rgba(242,241,237,.58);
}

/* ---------- Reveal ---------- */

/* Content is visible by default. Only a JS capable browser opts into the
   entrance animation, so copy can never be stranded behind a script. */
.rv { opacity: 1; transform: none; }
html.js .rv { opacity: 0; transform: translateY(18px); }
html.js .rv-on {
  opacity: 1;
  transform: none;
  transition: opacity .62s cubic-bezier(.22,.7,.28,1), transform .62s cubic-bezier(.22,.7,.28,1);
}

/* Hero paints immediately, no observer involved. */
.hero .rise { animation: rise .68s cubic-bezier(.22,.7,.28,1) both; }
.hero .rise-1 { animation-delay: .06s; }
.hero .rise-2 { animation-delay: .13s; }
.hero .rise-3 { animation-delay: .20s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .rv { opacity: 1; transform: none; }
  html.js .rv-on { transition: none; }
  .hero .rise { animation: none; }
  .btn:hover { transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .g3, .tiers { grid-template-columns: 1fr; }
  .teardown, .vs { grid-template-columns: 1fr; }
  .fix-grid { grid-template-columns: 1fr; }
  .tier.rec { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .g2 { grid-template-columns: 1fr; }
  .price-split { grid-template-columns: 1fr; }
  .sec { padding: 54px 0; }
  .hero { padding: 56px 0 62px; }
  .head-meta { font-size: 10px; letter-spacing: .1em; }
  .brand-logo img { width: 124px; }
  .featured { padding: 32px 24px; }
  .cta-band { padding: 40px 24px; }
  .budget { grid-template-columns: 1fr; gap: 18px; text-align: left; padding: 28px 24px; }
  .card { padding: 26px 22px; }
  .btn { width: 100%; }
  .cta-actions .btn { width: auto; }
  .foot-top { gap: 26px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
