
:root {
  --navy: #071c2c;
  --navy-2: #0d2e49;
  --navy-3: #16466a;
  --blue: #1f72ff;
  --orange: #ff6b1a;
  --orange-2: #ff8a3d;
  --gold: #ffc857;
  --sky: #eaf4ff;
  --cream: #fff7ed;
  --paper: #ffffff;
  --ink: #102235;
  --muted: #5b6c7d;
  --line: #dce6ef;
  --success: #1f7a55;
  --danger: #b33a32;
  --shadow: 0 28px 80px rgba(5, 24, 39, .28);
  --shadow-soft: 0 14px 38px rgba(7, 28, 44, .12);
  --radius: 20px;
  --radius-lg: 30px;
  --shell: 1180px;
  --header: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 16px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.045em; }
h1 { margin-bottom: 24px; font-size: clamp(3.2rem, 5.8vw, 5.65rem); font-weight: 850; }
h2 { margin-bottom: 18px; font-size: clamp(2.35rem, 4.4vw, 4.25rem); font-weight: 830; }
h3 { font-size: 1.25rem; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 28, 44, .09);
  backdrop-filter: blur(16px);
  transition: box-shadow .18s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(7, 28, 44, .11); }
.header-row { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  box-shadow: 0 9px 22px rgba(7, 28, 44, .18);
}
.brand-mark svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: grid; line-height: 1.06; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 820;
  line-height: 1;
  letter-spacing: -.015em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(31, 114, 255, .35);
  outline-offset: 3px;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.btn-small { min-height: 43px; padding: 12px 19px; font-size: .9rem; }
.btn-full { width: 100%; }
.btn-orange {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 34px rgba(255, 107, 26, .31);
}
.btn-orange:hover { box-shadow: 0 18px 42px rgba(255, 107, 26, .40); }
.btn-navy { color: #fff; background: var(--navy); box-shadow: 0 14px 30px rgba(7, 28, 44, .22); }
.btn-navy:hover { background: var(--navy-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: .74rem;
  font-weight: 860;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 4px; border-radius: 99px; background: currentColor; }
.eyebrow-light { color: var(--gold); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 770px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero-media, .hero-overlay, .hero-glow { position: absolute; inset: 0; }
.hero-media { height: 100%; object-fit: cover; object-position: 52% 36%; }
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 18, 30, .97) 0%, rgba(4, 18, 30, .90) 43%, rgba(4, 18, 30, .54) 72%, rgba(4, 18, 30, .67) 100%),
    linear-gradient(180deg, rgba(4, 18, 30, .10), rgba(4, 18, 30, .66));
}
.hero-glow {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 17%, rgba(255, 200, 87, .23), transparent 24%),
    radial-gradient(circle at 10% 83%, rgba(31, 114, 255, .22), transparent 28%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange) 0 35%, var(--gold) 35% 52%, var(--blue) 52% 100%);
}
.hero-row {
  position: relative;
  z-index: 2;
  min-height: 770px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding-block: 62px;
}
.hero-copy { max-width: 720px; padding-block: 24px; }
.hero h1 span { display: block; color: var(--gold); }
.hero-lead { max-width: 650px; margin-bottom: 27px; color: rgba(255, 255, 255, .87); font-size: clamp(1.08rem, 1.55vw, 1.28rem); line-height: 1.63; }
.hero-lead strong { color: #fff; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0; }
.hero-meta span {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  color: rgba(255, 255, 255, .94);
  background: rgba(255, 255, 255, .09);
  font-size: .86rem;
  font-weight: 730;
  backdrop-filter: blur(8px);
}
.hero-meta svg { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.quote-card {
  align-self: center;
  position: relative;
  color: var(--ink);
  background: rgba(255, 255, 255, .99);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quote-card::before { content: ""; display: block; height: 8px; background: linear-gradient(90deg, var(--orange), var(--gold), var(--blue)); }
.quote-head { padding: 25px 29px 19px; border-bottom: 1px solid var(--line); }
.quote-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 860;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.quote-time svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.quote-head h2 { margin-bottom: 8px; font-size: 1.9rem; letter-spacing: -.04em; }
.quote-head p:last-child { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
#lead-form { position: relative; padding: 21px 29px 27px; }
.field { margin: 0 0 14px; min-width: 0; }
.field label, .field legend { display: block; margin-bottom: 6px; color: var(--ink); font-size: .84rem; font-weight: 760; }
.field-pair { display: grid; grid-template-columns: 1fr 1.18fr; gap: 11px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd9e5;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input, select { min-height: 48px; padding: 0 13px; }
textarea { resize: vertical; padding: 11px 13px; }
input::placeholder, textarea::placeholder { color: #8797a6; }
input:hover, select:hover, textarea:hover { border-color: #9fb4c6; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31, 114, 255, .11); outline: 0; }
.invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 3px rgba(179, 58, 50, .10) !important; }
.service-field { padding: 0; border: 0; }
.service-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.service-buttons label { position: relative; cursor: pointer; }
.service-buttons input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.service-buttons span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #cbd9e5;
  border-radius: 12px;
  color: var(--muted);
  background: #f9fbfd;
  font-size: .82rem;
  font-weight: 780;
  transition: .15s ease;
}
.service-buttons span:hover { border-color: #8ea8bd; transform: translateY(-1px); }
.service-buttons input:checked + span { border-color: var(--navy); color: #fff; background: var(--navy); box-shadow: 0 8px 18px rgba(7, 28, 44, .17); }
.service-buttons input:focus-visible + span { outline: 3px solid rgba(31, 114, 255, .35); outline-offset: 3px; }
.error { min-height: 15px; display: block; margin-top: 4px; color: var(--danger); font-size: .72rem; line-height: 1.2; }
.optional-box { margin: 1px 0 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.optional-box summary { min-height: 46px; display: flex; align-items: center; gap: 6px; cursor: pointer; color: var(--ink); font-size: .82rem; font-weight: 760; list-style: none; }
.optional-box summary::-webkit-details-marker { display: none; }
.optional-box summary em { color: #788999; font-style: normal; font-weight: 580; }
.optional-box summary::after { content: "+"; margin-left: auto; color: var(--orange); font-size: 1.35rem; font-weight: 500; }
.optional-box[open] summary::after { content: "−"; }
.optional-content { padding-bottom: 2px; }
.upload-help { display: block; margin-top: 5px; color: var(--muted); font-size: .72rem; }
.file-list { display: grid; gap: 4px; margin-top: 6px; color: var(--muted); font-size: .72rem; }
.consent { display: grid; grid-template-columns: 17px 1fr; gap: 8px; align-items: start; color: var(--muted); cursor: pointer; font-size: .75rem; line-height: 1.4; }
.consent input { width: 17px; height: 17px; min-height: auto; margin: 1px 0 0; accent-color: var(--navy); }
.consent-error { margin-bottom: 1px; }
.privacy-note { margin: 9px 0 0; color: #6c7d8c; font-size: .69rem; line-height: 1.4; text-align: center; }
.form-error-message { margin: 10px 0 0; padding: 10px 12px; border: 1px solid rgba(179, 58, 50, .28); border-radius: 10px; color: var(--danger); background: rgba(179, 58, 50, .07); font-size: .78rem; font-weight: 650; line-height: 1.4; }
.form-error-message[hidden] { display: none; }
.form-success { position: absolute; inset: 0; z-index: 5; min-height: 100%; display: grid; place-content: center; justify-items: center; padding: 44px 32px; text-align: center; background: #fff; }
.form-success[hidden] { display: none; }
.success-check { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 50%; color: #fff; background: var(--success); }
.success-check svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { margin-bottom: 9px; font-size: 1.65rem; }
.form-success p { max-width: 320px; margin-bottom: 15px; color: var(--muted); }
.reset-link { padding: 0; color: var(--blue); background: transparent; cursor: pointer; font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }

.proof-section {
  position: relative;
  padding: clamp(82px, 9vw, 124px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(31, 114, 255, .10), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f6faff 100%);
}
.proof-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -140px;
  top: 90px;
  border: 42px solid rgba(255, 107, 26, .07);
  border-radius: 50%;
}
.proof-heading { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(270px, .62fr); align-items: end; gap: 60px; margin-bottom: 42px; }
.proof-heading h2 { max-width: 720px; margin-bottom: 0; }
.proof-heading > p { max-width: 440px; margin-bottom: 6px; color: var(--muted); font-size: 1.03rem; }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 255px); gap: 15px; }
.project-card { position: relative; grid-column: span 3; min-width: 0; margin: 0; overflow: hidden; border-radius: var(--radius); background: #d4e0e8; box-shadow: var(--shadow-soft); }
.project-card.feature { grid-column: span 6; grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s ease; }
.project-card:hover img { transform: scale(1.028); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4, 18, 30, .88) 100%); }
.project-card.feature::before { content: "Actual project"; position: absolute; z-index: 2; left: 18px; top: 18px; padding: 8px 11px; border-radius: 999px; color: var(--navy); background: var(--gold); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.project-card figcaption { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; display: grid; color: #fff; line-height: 1.15; }
.project-card figcaption strong { font-size: .98rem; letter-spacing: -.015em; }
.project-card figcaption span { margin-top: 4px; color: rgba(255, 255, 255, .78); font-size: .72rem; }
.project-card.feature figcaption { left: 24px; bottom: 22px; }
.project-card.feature figcaption strong { font-size: 1.25rem; }

.process-section { position: relative; padding: clamp(82px, 9vw, 120px) 0; background: var(--cream); overflow: hidden; }
.process-section::after { content: ""; position: absolute; left: -120px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; background: rgba(255, 107, 26, .08); }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(55px, 8vw, 105px); align-items: start; }
.process-copy { position: sticky; top: calc(var(--header) + 36px); }
.process-copy h2 { max-width: 540px; }
.process-copy > p:last-child { max-width: 440px; color: var(--muted); font-size: 1.02rem; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 17px; align-items: start; padding: 23px; border: 1px solid rgba(7, 28, 44, .10); border-radius: 18px; background: rgba(255, 255, 255, .82); box-shadow: 0 10px 26px rgba(7, 28, 44, .06); }
.steps .num { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(145deg, var(--blue), var(--navy-3)); font-size: .86rem; font-weight: 850; box-shadow: 0 9px 20px rgba(31, 114, 255, .20); }
.steps h3 { margin-bottom: 7px; }
.steps p { margin-bottom: 0; color: var(--muted); }
.process-note { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: start; margin-top: 16px; padding: 18px; border: 1px solid rgba(255, 107, 26, .22); border-radius: 16px; background: #fff; }
.process-note .note-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--orange); background: #fff0e7; }
.process-note svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.process-note p { margin: 0; color: var(--muted); font-size: .9rem; }
.process-note strong { color: var(--ink); }

.closing-section { position: relative; overflow: hidden; color: var(--navy); background: linear-gradient(118deg, var(--orange) 0%, var(--orange-2) 58%, var(--gold) 100%); }
.closing-section::before { content: ""; position: absolute; inset: -50% auto auto 53%; width: 520px; height: 520px; border: 80px solid rgba(255, 255, 255, .13); border-radius: 50%; }
.closing-row { position: relative; min-height: 330px; display: flex; align-items: center; justify-content: space-between; gap: 46px; padding-block: 62px; }
.closing-copy { max-width: 720px; }
.closing-copy .eyebrow { color: var(--navy); }
.closing-copy h2 { margin-bottom: 12px; font-size: clamp(2.5rem, 4.7vw, 4.5rem); }
.closing-copy p { margin-bottom: 0; color: rgba(7, 28, 44, .80); font-size: 1.05rem; }

.site-footer { color: rgba(255, 255, 255, .76); background: var(--navy); }
.footer-row { min-height: 145px; display: grid; grid-template-columns: 1fr 1.5fr auto; align-items: center; gap: 32px; padding-block: 30px; }
.footer-brand { display: grid; color: #fff; line-height: 1.1; }
.footer-brand small { margin-top: 6px; color: rgba(255, 255, 255, .52); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-row p { margin: 0; font-size: .82rem; }
.mobile-cta { display: none; }

@media (max-width: 1000px) {
  .hero-row { grid-template-columns: minmax(0, 1fr) minmax(355px, .86fr); gap: 38px; }
  .project-grid { grid-template-rows: repeat(2, 225px); }
  .footer-row { grid-template-columns: 1fr 1.5fr; }
  .footer-row > p:last-child { display: none; }
}

@media (max-width: 820px) {
  :root { --header: 70px; }
  .shell { width: min(calc(100% - 34px), var(--shell)); }
  .brand-copy small { display: none; }
  .hero { min-height: auto; }
  .hero-overlay { background: linear-gradient(180deg, rgba(4, 18, 30, .72) 0%, rgba(4, 18, 30, .82) 35%, rgba(4, 18, 30, .96) 69%, rgba(4, 18, 30, .99) 100%); }
  .hero-row { min-height: auto; grid-template-columns: 1fr; gap: 31px; padding-block: 72px 55px; }
  .hero-copy { max-width: 680px; padding: 0; }
  .quote-card { width: min(100%, 620px); }
  .proof-heading { grid-template-columns: 1fr; gap: 13px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 430px repeat(2, 220px); }
  .project-card, .project-card.feature { grid-column: span 1; grid-row: span 1; }
  .project-card.feature { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr; gap: 38px; }
  .process-copy { position: static; }
  .closing-row { min-height: 320px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 28px; }
  .footer-row { grid-template-columns: 1fr; gap: 14px; padding-block: 30px 92px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { height: 66px; }
  .brand { gap: 9px; }
  .brand-mark { width: 37px; height: 37px; border-radius: 11px; }
  .brand-copy strong { font-size: .9rem; }
  .header-row .btn { min-height: 40px; padding: 11px 15px; font-size: .81rem; }
  .hero-row { padding-block: 55px 42px; }
  h1 { margin-bottom: 19px; font-size: clamp(2.85rem, 12.2vw, 3.9rem); }
  .hero-lead { margin-bottom: 22px; font-size: 1.01rem; line-height: 1.56; }
  .hero-meta { gap: 7px; }
  .hero-meta span { min-height: 35px; padding: 7px 10px; font-size: .76rem; }
  .quote-card { border-radius: 23px; }
  .quote-head { padding: 22px 20px 17px; }
  .quote-head h2 { font-size: 1.6rem; }
  #lead-form { padding: 18px 20px 22px; }
  .service-buttons { gap: 6px; }
  .service-buttons span { min-height: 43px; padding: 7px 3px; font-size: .75rem; }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .proof-section, .process-section { padding-block: 70px; }
  .proof-heading { margin-bottom: 28px; }
  .proof-heading h2, .process-copy h2, .closing-copy h2 { font-size: clamp(2.25rem, 10.5vw, 3.1rem); }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 330px 190px 190px; gap: 10px; }
  .project-card { grid-column: span 1; }
  .project-card.feature { grid-column: 1 / -1; }
  .project-card figcaption { left: 12px; right: 12px; bottom: 11px; }
  .project-card figcaption strong { font-size: .82rem; }
  .project-card figcaption span { font-size: .62rem; }
  .steps li { grid-template-columns: 47px 1fr; gap: 13px; padding: 19px; }
  .steps .num { width: 42px; height: 42px; border-radius: 12px; }
  .steps h3 { font-size: 1.18rem; }
  .steps p { font-size: .92rem; }
  .closing-row { padding-block: 55px; }
  .closing-row .btn { width: 100%; }
  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 16px 38px rgba(4, 18, 30, .36);
    font-weight: 830;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .mobile-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
}

/* Launch wiring */
.honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.privacy-note a,.site-footer a{text-decoration:underline;text-underline-offset:3px}
.privacy-note a:hover,.site-footer a:hover{color:var(--orange)}

/* Production brand identity */
.brand-logo {
  display: block;
  width: clamp(196px, 22vw, 255px);
  height: auto;
}
.footer-brand { align-items: start; }
.footer-logo {
  display: block;
  width: min(270px, 100%);
  height: auto;
}
.footer-brand small { margin-top: 9px; }
@media (max-width: 560px) {
  .brand-logo { width: 184px; }
  .header-row { gap: 12px; }
  .btn-small { min-height: 40px; padding: 11px 15px; font-size: .82rem; }
  .footer-logo { width: 230px; }
}
