
:root {
  --bg: #f6f8fb;
  --text: #142232;
  --muted: #607080;
  --line: #dfe7ef;
  --card: #ffffff;
  --accent: #1769e8;
  --accent-dark: #0b4fb9;
  --accent-soft: #eaf3ff;
  --green: #0b8d6d;
  --dark: #0e233e;
  --shadow: 0 18px 55px rgba(18, 31, 56, .11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.58;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: 13px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: .15s ease;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; transform: translateY(-1px); }
.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--line);
}
.btn.secondary:hover { background: var(--accent-soft); }
.hero {
  padding: 78px 0 60px;
  background:
    radial-gradient(circle at 12% 12%, #d7e9ff 0, transparent 34%),
    radial-gradient(circle at 86% 18%, #edf6ff 0, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 38px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid #d5e7ff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.015em;
}
p { margin-top: 0; }
.lead {
  margin: 0 0 26px;
  font-size: 19px;
  color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.microcopy { font-size: 13px; color: var(--muted); max-width: 690px; }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.quote-card h2 { font-size: 26px; margin-bottom: 8px; }
.form-note { color: var(--muted); margin: 0 0 20px; }
.field { margin-bottom: 14px; }
label {
  display: block;
  font-size: 13px;
  color: #3b4650;
  font-weight: 700;
  margin-bottom: 6px;
}
select, input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 15px;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
select:focus, input:focus, textarea:focus {
  outline: 2px solid #cfe2ff;
  border-color: var(--accent);
}
.small { font-size: 12px; color: #7a8794; }
.section { padding: 64px 0; }
.section-title { max-width: 780px; margin-bottom: 30px; }
.section-title p { margin: 0; color: var(--muted); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.card p { color: var(--muted); margin: 0; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 900;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.panel p { color: var(--muted); }
.list { margin: 18px 0 0; padding: 0; list-style: none; }
.list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
}
.check { color: var(--green); font-weight: 900; }
.info-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.stat strong { display: block; font-size: 26px; letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 14px; }
.cta {
  background: var(--dark);
  color: #fff;
  padding: 64px 0;
}
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: #cbd5e1; max-width: 760px; }
.page-hero {
  padding: 58px 0 36px;
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero p { color: var(--muted); max-width: 820px; font-size: 18px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr .42fr;
  gap: 26px;
  align-items: start;
}
.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
}
.article h2 { font-size: 28px; margin-top: 28px; }
.article h2:first-child { margin-top: 0; }
.article p, .article li { color: var(--muted); }
.sidebar { position: sticky; top: 96px; }
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
}
.footer {
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer-grid { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a { color: var(--muted); margin-left: 14px; }
@media (max-width: 920px) {
  .hero-grid, .split, .content-grid { grid-template-columns: 1fr; }
  .cards, .info-strip { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .nav { align-items: flex-start; padding: 16px 0; flex-direction: column; }
}
@media (max-width: 560px) {
  .nav-links { gap: 12px; }
  .footer a { margin: 0 10px 0 0; display: inline-block; }
  .quote-card, .panel, .article, .contact-box { padding: 22px; }
}


/* Mobile conversion and layout improvements */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 920px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
  }

  .nav {
    min-height: auto;
    padding: 14px 0 12px;
    align-items: stretch;
    gap: 12px;
    flex-direction: column;
  }

  .logo {
    gap: 9px;
    font-size: 20px;
    line-height: 1.15;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 16px;
    flex: 0 0 auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    font-size: 13px;
  }

  .nav-links a {
    background: #f2f6ff;
    border: 1px solid #dce8ff;
    border-radius: 999px;
    padding: 9px 8px;
    text-align: center;
    line-height: 1.1;
    color: #1769e8;
    white-space: nowrap;
  }

  .nav-links a.btn {
    display: none;
  }

  .hero {
    padding: 34px 0 36px;
  }

  .hero-grid {
    gap: 22px;
  }

  .badge {
    max-width: 100%;
    font-size: 13px;
    padding: 7px 10px;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
    margin: 14px 0 12px;
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .lead {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .microcopy {
    font-size: 13px;
    line-height: 1.45;
  }

  .quote-card {
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 12px 36px rgba(18, 31, 56, .09);
  }

  .quote-card h2 {
    font-size: 28px;
  }

  .form-note {
    font-size: 16px;
    line-height: 1.5;
  }

  select, input, textarea {
    min-height: 50px;
    font-size: 16px;
    border-radius: 12px;
  }

  .quote-card .btn {
    width: 100%;
  }

  .section {
    padding: 42px 0;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .section-title p {
    font-size: 17px;
    line-height: 1.55;
  }

  .info-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat {
    padding: 16px;
    border-radius: 17px;
    min-height: 106px;
  }

  .stat strong {
    font-size: 28px;
    line-height: 1.1;
  }

  .stat span {
    font-size: 14px;
    line-height: 1.35;
  }

  .cards {
    gap: 12px;
  }

  .cards .card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 18px;
    color: var(--text);
  }

  .cards .card:hover {
    text-decoration: none;
    transform: translateY(-1px);
  }

  .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 0;
  }

  .card h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .card p {
    font-size: 15px;
    line-height: 1.45;
  }

  .split {
    gap: 14px;
  }

  .panel {
    padding: 22px;
    border-radius: 20px;
  }

  .panel h2 {
    font-size: 32px;
  }

  .panel p {
    font-size: 16px;
    line-height: 1.5;
  }

  .list li {
    padding: 14px 0;
    gap: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .check {
    font-size: 20px;
    line-height: 1.2;
  }

  .cta {
    padding: 44px 0 90px;
  }

  .cta h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .cta p {
    font-size: 18px;
    line-height: 1.5;
  }

  .cta .btn {
    width: 100%;
    max-width: 360px;
  }

  .page-hero {
    padding: 36px 0 28px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .page-hero p {
    font-size: 17px;
    line-height: 1.55;
  }

  .article, .contact-box {
    padding: 22px;
    border-radius: 20px;
  }

  .article h2 {
    font-size: 27px;
  }

  .article p,
  .article li {
    font-size: 16px;
    line-height: 1.55;
  }

  .footer {
    padding: 24px 0 92px;
  }

  .footer-grid {
    gap: 14px;
  }

  .footer a {
    display: inline-block;
    margin: 0 12px 8px 0;
  }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 40;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: #1769e8;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(23, 105, 232, .35);
    text-decoration: none;
  }

  .mobile-sticky-cta:hover {
    text-decoration: none;
    background: #0b4fb9;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    font-size: 14px;
    padding: 10px 8px;
  }

  h1 {
    font-size: 36px;
  }

  .section-title h2,
  .panel h2,
  .cta h2 {
    font-size: 31px;
  }

  .cards .card {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .icon {
    width: 44px;
    height: 44px;
  }

  .card h3 {
    font-size: 20px;
  }

  .info-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 96px;
    padding: 14px;
  }

  .stat strong {
    font-size: 24px;
  }
}


/* Mobile v2 clean layout patch */
@media (max-width: 920px) {
  .mobile-sticky-cta {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  .topbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.98);
  }

  .nav {
    padding: 14px 0 16px !important;
    gap: 14px !important;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .nav-links a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 8px !important;
    border-radius: 999px !important;
    background: #f3f7ff !important;
    border: 1px solid #dbe8ff !important;
    color: #1769e8 !important;
    text-align: center;
    white-space: nowrap;
    font-size: 15px !important;
    font-weight: 600;
  }

  .hero {
    padding: 34px 0 34px !important;
  }

  .hero-actions .btn,
  .quote-card .btn,
  .cta .btn {
    width: 100%;
  }

  .section {
    padding: 38px 0 !important;
  }

  .info-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .stat {
    min-height: 96px !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .stat strong {
    font-size: 26px !important;
  }

  .cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .cards .card,
  a.card {
    display: block !important;
    padding: 22px !important;
    border-radius: 22px !important;
    width: 100% !important;
    min-height: auto !important;
    color: var(--text);
  }

  .cards .card .icon,
  a.card .icon {
    width: 50px !important;
    height: 50px !important;
    margin: 0 0 14px 0 !important;
  }

  .cards .card h3,
  a.card h3 {
    font-size: 24px !important;
    line-height: 1.15 !important;
    margin: 0 0 10px 0 !important;
  }

  .cards .card p,
  a.card p {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    grid-column: 1 / -1 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: #607080 !important;
  }

  .split {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .panel {
    padding: 24px !important;
    border-radius: 22px !important;
  }

  .list li {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  .cta {
    padding: 44px 0 !important;
  }

  .footer {
    padding-bottom: 28px !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, 1120px) !important;
  }

  .logo {
    font-size: 19px !important;
  }

  .logo-mark {
    width: 40px !important;
    height: 40px !important;
  }

  .nav-links a {
    font-size: 14px !important;
    min-height: 40px;
  }

  h1 {
    font-size: 35px !important;
    line-height: 1.08 !important;
  }

  .lead {
    font-size: 17px !important;
  }

  .quote-card,
  .panel,
  .article,
  .contact-box {
    padding: 22px !important;
  }

  .cards .card,
  a.card {
    padding: 20px !important;
  }
}


/* Mobile burger menu header */
.mobile-menu {
  display: none;
}

@media (max-width: 920px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.98);
  }

  .nav {
    min-height: 72px !important;
    padding: 12px 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .logo {
    min-width: 0;
    flex: 1;
    font-size: 19px !important;
    line-height: 1.15 !important;
  }

  .logo-mark {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    flex: 0 0 auto;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu {
    display: block !important;
    position: relative;
    flex: 0 0 auto;
  }

  .mobile-menu summary {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(23, 105, 232, .14);
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 10px 26px rgba(18, 31, 56, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu summary:hover,
  .mobile-menu[open] summary {
    transform: translateY(-1px);
    border-color: rgba(23, 105, 232, .24);
    box-shadow: 0 14px 30px rgba(18, 31, 56, .12);
    background: linear-gradient(180deg, #ffffff 0%, #e9f1ff 100%);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 22px;
    height: 2.5px;
    background: #1769e8;
    border-radius: 999px;
    display: block;
    margin: 0;
    transition: transform .2s ease, opacity .2s ease, width .2s ease, background .2s ease;
    transform-origin: center;
  }

  .mobile-menu summary span:nth-child(2) {
    width: 16px;
  }

  .mobile-menu[open] summary span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.4);
  }

  .mobile-menu[open] summary span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(292px, calc(100vw - 32px));
    background: #ffffff;
    border: 1px solid #dfe7ef;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(18, 31, 56, .16);
    padding: 10px;
    z-index: 200;
  }

  .mobile-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #142232;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu-panel a:hover {
    background: #f3f7ff;
    text-decoration: none;
  }

  .mobile-menu-panel .menu-cta {
    justify-content: center;
    margin-top: 8px;
    background: #1769e8;
    color: #ffffff;
  }

  .mobile-menu-panel .menu-cta:hover {
    background: #0b4fb9;
  }

  .hero {
    padding-top: 34px !important;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 18px !important;
  }

  .mobile-menu summary {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
}


/* Mobile quick category buttons below compact header */
.mobile-quick-links {
  display: none;
}

@media (max-width: 920px) {
  .mobile-quick-links {
    display: block;
    background: #ffffff;
    border-bottom: 1px solid #dfe7ef;
    padding: 10px 0 12px;
  }

  .quick-links-wrap {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1px;
  }

  .quick-links-wrap::-webkit-scrollbar {
    display: none;
  }

  .quick-links-wrap a {
    min-width: 94px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f3f7ff;
    border: 1px solid #dbe8ff;
    color: #1769e8;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
  }

  .quick-links-wrap a:hover {
    text-decoration: none;
    background: #eaf3ff;
  }

  .quick-links-wrap .quick-cta {
    background: #1769e8;
    color: #ffffff;
    border-color: #1769e8;
    min-width: 112px;
  }

  .quick-links-wrap .quick-cta:hover {
    background: #0b4fb9;
  }

  .hero {
    padding-top: 28px !important;
  }
}

@media (max-width: 420px) {
  .mobile-quick-links {
    padding: 9px 0 11px;
  }

  .quick-links-wrap a {
    min-width: 88px;
    min-height: 38px;
    font-size: 13px;
    padding: 9px 12px;
  }

  .quick-links-wrap .quick-cta {
    min-width: 104px;
  }
}


/* Fix: hide burger menu fully on desktop */
@media (min-width: 921px) {
  .mobile-menu,
  .mobile-menu summary,
  .mobile-menu-panel,
  .mobile-quick-links {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .nav-links {
    display: flex !important;
  }
}

/* Fix: on mobile show burger, hide desktop nav */
@media (max-width: 920px) {
  .mobile-menu {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-links {
    display: none !important;
  }
}


/* Contact page quote form cleanup */
.contact-box .btn,
.quote-card .btn {
  text-align: center;
}

@media (max-width: 920px) {
  .content-grid .quote-card {
    width: 100%;
  }
}


/* Final mobile header spacing and quick-links polish */
@media (max-width: 920px) {
  .topbar {
    background: rgba(255,255,255,.99) !important;
    box-shadow: 0 4px 18px rgba(18, 31, 56, .04);
  }

  .nav {
    min-height: 82px !important;
    padding: 16px 0 17px !important;
    gap: 16px !important;
  }

  .logo {
    gap: 12px !important;
    font-size: 19px !important;
    line-height: 1.15 !important;
  }

  .logo-mark {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
  }

  .mobile-menu summary {
    width: 50px !important;
    height: 50px !important;
    border-radius: 17px !important;
  }

  .mobile-quick-links {
    display: block !important;
    background: #ffffff !important;
    border-bottom: 1px solid #dfe7ef !important;
    padding: 14px 0 16px !important;
  }

  .quick-links-wrap {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .quick-links-wrap a {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 6px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 14px rgba(18, 31, 56, .035);
  }

  .quick-links-wrap .quick-cta {
    min-width: 0 !important;
  }

  .hero {
    padding-top: 36px !important;
  }

  .badge {
    margin-bottom: 4px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, 1120px) !important;
  }

  .nav {
    min-height: 80px !important;
    padding: 15px 0 16px !important;
  }

  .logo {
    font-size: 18px !important;
    gap: 11px !important;
  }

  .logo-mark {
    width: 40px !important;
    height: 40px !important;
  }

  .mobile-menu summary {
    width: 48px !important;
    height: 48px !important;
  }

  .mobile-quick-links {
    padding: 13px 0 15px !important;
  }

  .quick-links-wrap {
    gap: 7px !important;
  }

  .quick-links-wrap a {
    min-height: 40px !important;
    padding: 9px 4px !important;
    font-size: 12.5px !important;
  }

  .hero {
    padding-top: 34px !important;
  }
}
