/* Traffic Ticket Authority — design system */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-500.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-600.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-700.woff2") format("woff2");
}

@font-face {
  font-family: "Mukta";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/mukta-400.woff2") format("woff2");
}

@font-face {
  font-family: "Mukta";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/mukta-500.woff2") format("woff2");
}

:root {
  --accent: #4e86c5;
  --accent-dark: #3a6db0;
  --anchor: #1a2e4a;
  --white: #ffffff;
  --paper: #f5f6f8;
  --tint-blue: #eef3fa;
  --accent-gold: #d9a441;
  --hero-phone-gold: #f2b632;
  --text: #1c1c2e;
  --muted: #6b7280;
  --muted-on-dark: #b8c4d4;
  --gutter: 24px;
  --header-h: 72px;
  --mobile-bar-h: 56px;
  --max-content: 1280px;
  --focus-ring: 2px solid #ffffff;
  --focus-offset: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  padding-top: var(--header-h);
}

@media (max-width: 767px) {
  body {
    padding-bottom: var(--mobile-bar-h);
  }
}

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

a {
  color: var(--anchor);
}

a:hover {
  color: var(--accent-dark);
}

.container {
  width: min(100% - 2 * var(--gutter), var(--max-content));
  margin-inline: auto;
}

#how-it-works,
#tickets,
#why,
#contact,
#faq {
  scroll-margin-top: var(--header-h);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-outline--on-dark {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline--on-dark:hover {
  background: var(--white);
  color: var(--anchor);
}

.btn-nav-call {
  background: var(--anchor);
  color: var(--white);
  border-color: var(--anchor);
}

.btn-nav-call:hover {
  background: #243a5c;
  border-color: #243a5c;
  color: var(--white);
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.site-header :focus-visible,
.hero :focus-visible,
.mobile-nav :focus-visible {
  outline-color: var(--accent);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--anchor);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 2 * var(--gutter), 1920px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: none;
}

.header-actions {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle__bars {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-toggle__bars::before {
  top: -7px;
}

.menu-toggle__bars::after {
  top: 7px;
}

/* Tablet + mobile: hamburger only (no horizontal nav in bar) */
@media (max-width: 1023px) {
  .site-header .main-nav,
  .site-header .header-actions {
    display: none;
  }

  .site-header .menu-toggle {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .main-nav a {
    font-family: "Montserrat", system-ui, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
  }

  .main-nav a:hover {
    color: var(--accent);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .header-phone {
    font-family: "Montserrat", system-ui, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
  }

  .header-phone:hover {
    color: var(--accent);
  }
}

/* Mobile nav overlay */
.mobile-nav[hidden] {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 74, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  background: var(--anchor);
  color: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav__title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.mobile-nav__list a {
  display: block;
  padding: 0.85rem var(--gutter);
  color: var(--white);
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.mobile-nav__list a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.mobile-nav__footer {
  margin-top: auto;
  padding: var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mobile-nav__phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

body.mobile-nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(72vh, 740px);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 46, 74, 0.82) 0%,
    rgba(26, 46, 74, 0.45) 42%,
    rgba(26, 46, 74, 0.55) 68%,
    rgba(26, 46, 74, 0.88) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(
    to right,
    #1b6ef3 0%,
    #4e86c5 22%,
    #e8912e 60%,
    #f2b632 82%,
    #f2b632 100%
  );
  box-shadow:
    0 2px 10px 0 rgba(242, 182, 50, 0.28),
    0 2px 10px 0 rgba(78, 134, 197, 0.22);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 3rem var(--gutter);
  max-width: 760px;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.hero__title {
  margin: 0 0 0.85rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.95rem, 5vw, 3.75rem);
  line-height: 1.12;
  color: var(--white);
}

.hero__subhead {
  margin: 0 0 0.85rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.75vw, 1.875rem);
  line-height: 1.2;
  color: var(--white);
}

.hero__tagline {
  margin: 0 0 1.25rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--white);
}

.hero__tagline-sep {
  opacity: 0.85;
  padding-inline: 0.35rem;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.45rem);
  line-height: 1.15;
  color: var(--hero-phone-gold);
  text-decoration: none;
}

.hero__phone-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  color: inherit;
}

.hero__phone:hover,
.hero__phone:focus-visible {
  color: #f5c84a;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.hero__actions .btn {
  width: 100%;
}

.hero__reassurance {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .hero__inner {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero__phone {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .hero__phone-icon,
  .hero__phone-call {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    width: auto;
  }
}

/* Main content bands */
.site-main {
  min-height: 0;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  padding: 40px var(--gutter);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: min(100%, var(--max-content));
  margin-inline: auto;
}

.trust-strip__cell {
  text-align: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}

.trust-strip__cell:nth-child(odd) {
  border-right: 1px solid rgba(107, 114, 128, 0.2);
}

.trust-strip__cell:nth-last-child(-n + 2) {
  border-bottom: none;
}

.trust-strip__stat {
  margin: 0 0 0.35rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: var(--anchor);
}

.trust-strip__stat::after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  margin: 0.5rem auto 0;
  background: var(--accent);
  border-radius: 2px;
}

.trust-strip__label {
  margin: 0;
  font-family: "Mukta", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .trust-strip {
    padding: 56px var(--gutter);
  }

  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-strip__cell {
    padding: 0 1.5rem;
    border-bottom: none;
    border-right: 1px solid rgba(107, 114, 128, 0.2);
  }

  .trust-strip__cell:nth-child(odd) {
    border-right: 1px solid rgba(107, 114, 128, 0.2);
  }

  .trust-strip__cell:last-child {
    border-right: none;
  }
}

/* How it works */
.how-it-works {
  background: var(--tint-blue);
  padding: 48px var(--gutter);
}

.how-it-works__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.how-it-works__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.how-it-works__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--anchor);
}

.how-it-works__lead {
  margin: 0 auto;
  max-width: 560px;
  font-size: 16px;
  color: var(--muted);
}

.how-it-works__steps {
  display: grid;
  gap: 1.25rem;
  width: min(100%, var(--max-content));
  margin: 0 auto 2.5rem;
}

.how-it-works__card {
  background: var(--white);
  border: 1px solid rgba(26, 46, 74, 0.08);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(26, 46, 74, 0.06);
}

.how-it-works__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.how-it-works__card h3 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--anchor);
}

.how-it-works__card p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.how-it-works__cta {
  text-align: center;
}

.how-it-works__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.how-it-works__phone-link {
  font-family: "Mukta", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--anchor);
  text-decoration: none;
}

.how-it-works__phone-link:hover {
  color: var(--accent-dark);
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 72px var(--gutter);
  }

  .how-it-works__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .how-it-works__cta-row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }
}

/* Tickets We Fight (dark band) */
.tickets-we-fight {
  background: linear-gradient(to bottom, var(--anchor) 0%, #16283f 100%);
  padding: 48px var(--gutter);
}

.tickets-we-fight__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.tickets-we-fight__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ea3d8;
}

.tickets-we-fight__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--white);
}

.tickets-we-fight__lead {
  margin: 0 auto;
  max-width: 560px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.tickets-we-fight__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 601px) {
  .tickets-we-fight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tickets-we-fight .ticket-tile {
  background: #22344f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tickets-we-fight .ticket-tile__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: #6ea3d8;
}

.tickets-we-fight .ticket-tile__title {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
}

.tickets-we-fight .ticket-tile__caption {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

@media (hover: hover) and (pointer: fine) {
  .tickets-we-fight .ticket-tile:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tickets-we-fight .ticket-tile {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .tickets-we-fight .ticket-tile:hover {
    transform: none;
  }
}

@media (min-width: 768px) {
  .tickets-we-fight {
    padding: 72px var(--gutter);
  }
}

@media (min-width: 1024px) {
  .tickets-we-fight__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Why TTA */
.why-tta {
  background: var(--tint-blue);
  padding: 48px var(--gutter);
}

.why-tta__header {
  text-align: left;
  max-width: 640px;
  margin: 0 0 2.5rem;
}

.why-tta__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.why-tta__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--anchor);
}

.why-tta__lead {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.why-tta__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.why-tta__block {
  padding: 0.25rem 0;
}

.why-tta__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.why-tta__block h3 {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--anchor);
}

.why-tta__block h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 10px 0;
  background: var(--accent);
  border-radius: 2px;
}

.why-tta__block p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.why-tta__cta {
  text-align: center;
}

.why-tta__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.why-tta__phone-link {
  font-family: "Mukta", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--anchor);
  text-decoration: none;
}

.why-tta__phone-link:hover {
  color: var(--accent-dark);
}

.why-tta__reviews {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding-top: 1rem;
}

.reviews-eyebrow {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.why-tta__reviews .ti-widget {
  width: 100%;
}

@media (min-width: 768px) {
  .why-tta {
    padding: 72px var(--gutter);
  }

  .why-tta__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }

  .why-tta__cta-row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }
}

/* Contact / submit form */
.contact-submit {
  background: var(--white);
  padding: 48px var(--gutter);
}

.contact-submit__layout {
  display: grid;
  gap: 2.5rem;
}

.contact-submit__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.contact-submit__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--anchor);
}

.contact-submit__body {
  margin: 0 0 1.25rem;
  font-size: 16px;
  color: var(--text);
  max-width: 36rem;
}

.contact-submit__trust {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  font-size: 15px;
  color: var(--muted);
  max-width: 34rem;
}

.contact-submit__trust-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.contact-submit__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--white);
  background: var(--accent);
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 46, 74, 0.12);
}

.contact-submit__phone-icon {
  width: 22px;
  height: 22px;
}

.contact-submit__phone:hover,
.contact-submit__phone:focus-visible {
  background: var(--accent-dark);
  color: var(--white);
}

.contact-submit__form-wrap {
  min-width: 0;
}

.tta-form {
  background: var(--paper);
  border: 1px solid rgba(26, 46, 74, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(26, 46, 74, 0.06);
}

.tta-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tta-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tta-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.tta-field label,
.tta-field__label-row label,
.tta-field--radios legend {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--anchor);
}

.tta-field__label-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
}

.tta-field__label-row label {
  margin-bottom: 0;
}

.tta-required {
  color: var(--anchor);
  font-weight: 600;
}

.tta-field input[type="text"],
.tta-field input[type="email"],
.tta-field input[type="tel"],
.tta-field input[type="date"],
.tta-field select,
.tta-field textarea {
  width: 100%;
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(26, 46, 74, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  min-height: 48px;
}

.tta-field textarea {
  min-height: 120px;
  resize: vertical;
}

.tta-field__hint {
  margin: 0.35rem 0 0.5rem;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(26, 46, 74, 0.72);
}

.tta-field--file {
  padding: 14px 16px;
  border: 1px dashed rgba(78, 134, 197, 0.45);
  border-radius: 8px;
  background: rgba(78, 134, 197, 0.06);
}

.tta-file-input {
  width: 100%;
  font-size: 15px;
  padding: 8px 0 0;
  border: none;
  background: transparent;
}

.tta-field input:focus,
.tta-field select:focus,
.tta-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78, 134, 197, 0.35);
}

.tta-field input[aria-invalid="true"],
.tta-field select[aria-invalid="true"],
.tta-field textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.tta-field__error {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #9a3412;
  min-height: 0;
}

.tta-field__error:not(:empty)::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='%239a3412'/%3E%3Cpath d='M8 4.5v4M8 11h.01' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.tta-field--radios {
  border: none;
  margin: 0;
  padding: 0;
}

.tta-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.tta-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
}

.tta-radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.tta-tooltip-wrap {
  position: relative;
  display: inline-flex;
}

.tta-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
}

.tta-tooltip-trigger:hover,
.tta-tooltip-trigger:focus-visible {
  background: rgba(78, 134, 197, 0.12);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tta-tooltip {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  width: min(260px, 80vw);
  padding: 0.65rem 0.75rem;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(26, 46, 74, 0.15);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(26, 46, 74, 0.12);
}

.tta-tooltip[hidden] {
  display: none;
}

.tta-tooltip-wrap.is-open .tta-tooltip {
  display: block;
}

.tta-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  min-height: 48px;
}

.tta-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.tta-form__global-error {
  margin: 0;
  padding: 0.75rem;
  font-size: 15px;
  color: #9a3412;
  background: #fff4ed;
  border: 1px solid rgba(154, 52, 18, 0.25);
  border-radius: 6px;
}

.tta-form__success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.tta-form__success-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.tta-form__success-title {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--anchor);
}

.tta-form__success-text {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.tta-form__success-text a {
  font-weight: 500;
}

@media (min-width: 1024px) {
  .contact-submit {
    padding: 72px var(--gutter);
  }

  .contact-submit__layout {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Home contact CTA (form lives on /submit/) */
.contact-cta {
  background: var(--white);
  padding: 48px var(--gutter);
  text-align: center;
}

.contact-cta__title {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--anchor);
}

.contact-cta__lead {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  font-size: 16px;
  color: var(--text);
}

.contact-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-cta__phone {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--hero-phone-gold);
  text-decoration: none;
}

.contact-cta__phone:hover,
.contact-cta__phone:focus-visible {
  color: #f5c84a;
  text-decoration: underline;
}

.contact-cta__reassurance {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .contact-cta {
    padding: 72px var(--gutter);
  }

  .contact-cta__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }
}

/* Submit page */
.submit-page {
  background: var(--white);
  padding: 48px var(--gutter) 64px;
}

.submit-page__header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.submit-page__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  color: var(--anchor);
}

.submit-page__intro {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.contact-submit--standalone {
  padding: 0;
  background: transparent;
}

.contact-submit--standalone .contact-submit__layout {
  max-width: var(--max-content);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .submit-page {
    padding: 64px var(--gutter) 80px;
  }
}

/* Thank-you page */
.thank-you-page {
  background: var(--white);
  padding: 64px var(--gutter) 80px;
}

.thank-you-page__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-page__icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.thank-you-page__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--anchor);
}

.thank-you-page__body {
  margin: 0 0 1.5rem;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

.thank-you-page__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--hero-phone-gold);
  text-decoration: none;
}

.thank-you-page__phone:hover,
.thank-you-page__phone:focus-visible {
  color: #f5c84a;
  text-decoration: underline;
}

.thank-you-page__phone-icon {
  width: 1.1em;
  height: 1.1em;
}

.thank-you-page__actions {
  margin: 0;
}

/* Legal + error pages */
.legal-page,
.error-page {
  background: var(--paper);
  padding: 0 0 64px;
}

.legal-page__divider {
  height: 4px;
  background: linear-gradient(
    to right,
    #1b6ef3 0%,
    #4e86c5 22%,
    #e8912e 60%,
    #f2b632 82%,
    #f2b632 100%
  );
  box-shadow:
    0 2px 10px 0 rgba(242, 182, 50, 0.28),
    0 2px 10px 0 rgba(78, 134, 197, 0.22);
}

.legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px var(--gutter) 0;
}

.legal-page__title {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  color: var(--anchor);
}

.legal-page__updated {
  margin: 0 0 2rem;
  font-size: 15px;
  color: var(--muted);
}

.legal-prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--anchor);
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p {
  margin: 0 0 1rem;
}

.legal-prose ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-prose li {
  margin-bottom: 0.5rem;
}

.legal-prose a {
  color: var(--anchor);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose a:hover,
.legal-prose a:focus-visible {
  color: var(--accent);
}

.error-page__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px var(--gutter) 0;
  text-align: center;
}

.error-page__code {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}

.error-page__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--anchor);
}

.error-page__body {
  margin: 0 0 1.75rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

.error-page__actions {
  margin: 0 0 1.5rem;
}

.error-page__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--hero-phone-gold);
  text-decoration: none;
}

.error-page__phone:hover,
.error-page__phone:focus-visible {
  color: #f5c84a;
  text-decoration: underline;
}

.error-page__home {
  margin: 0;
  font-size: 16px;
}

.error-page__home a {
  color: var(--anchor);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .legal-page__inner {
    padding-top: 64px;
  }

  .error-page__inner {
    padding-top: 72px;
  }
}

/* FAQ */
.tta-faq {
  background: var(--tint-blue);
  padding: 48px var(--gutter);
}

.tta-faq__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.tta-faq__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.tta-faq__title {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--anchor);
}

.tta-faq__lead {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.tta-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tta-faq__item {
  background: var(--white);
  border: 1px solid rgba(26, 46, 74, 0.08);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(26, 46, 74, 0.05);
  overflow: hidden;
}

.tta-faq__question {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.tta-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.15rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--anchor);
}

.tta-faq__trigger:hover,
.tta-faq__trigger:focus-visible {
  background: rgba(78, 134, 197, 0.06);
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.tta-faq__q-text {
  flex: 1;
}

.tta-faq__chevron {
  flex-shrink: 0;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}

.tta-faq__trigger[aria-expanded="true"] .tta-faq__chevron {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .tta-faq__chevron {
    transition: none;
  }
}

.tta-faq__panel {
  padding: 0 1.15rem 1.15rem;
}

.tta-faq__panel[hidden] {
  display: none;
}

.tta-faq__panel p {
  margin: 0;
  font-family: "Mukta", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

@media (min-width: 768px) {
  .tta-faq {
    padding: 72px var(--gutter);
  }

  .tta-faq__trigger {
    font-size: 1.05rem;
    padding: 1.1rem 1.25rem;
  }

  .tta-faq__panel {
    padding: 0 1.25rem 1.25rem;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  z-index: 140;
  right: 1rem;
  bottom: calc(var(--mobile-bar-h) + 12px);
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--anchor);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26, 46, 74, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.15s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--accent);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--anchor);
  color: var(--white);
  padding: 0;
}

.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    #1b6ef3 0%,
    #4e86c5 22%,
    #e8912e 60%,
    #f2b632 82%,
    #f2b632 100%
  );
  box-shadow:
    0 -2px 10px 0 rgba(242, 182, 50, 0.22),
    0 -2px 10px 0 rgba(78, 134, 197, 0.18);
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding: 3rem var(--gutter) 2rem;
}

.footer-heading {
  margin: 0 0 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-zone--contact .footer-heading,
.footer-zone--links .footer-heading,
.footer-zone--legal .footer-heading,
.footer-main .footer-zone:not(.footer-zone--logo) > .footer-heading {
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.footer-zone--contact .footer-heading::after,
.footer-zone--links .footer-heading::after,
.footer-zone--legal .footer-heading::after,
.footer-main .footer-zone:not(.footer-zone--logo) > .footer-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.18);
}

.footer-zone p {
  margin: 0 0 0.45rem;
  font-size: 16px;
  line-height: 1.55;
}

.footer-zone a {
  color: var(--white);
  text-decoration: none;
}

.footer-zone a:hover {
  color: var(--accent);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: min(100%, 200px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.footer-tagline,
.footer-identity {
  margin: 0;
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-on-dark);
  max-width: 280px;
}

.footer-contact-intro {
  margin-bottom: 1.35rem;
}

.footer-contact-name {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--white);
}

.footer-contact-division {
  margin: 0.35rem 0 0;
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  color: var(--muted-on-dark);
}

.footer-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 10px;
  align-items: start;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact-text {
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: var(--white);
}

.footer-contact-text--address {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.footer-contact-text a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact-text a:hover {
  color: var(--accent);
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 16px;
}

.footer-legal-disclaimer {
  margin: 1.25rem 0 0;
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-on-dark);
}

.footer-disclaimer-strip {
  display: none;
}

.footer-disclaimer-inner {
  max-width: 900px;
  margin-inline: auto;
}

.footer-disclaimer-inner p {
  margin: 0 0 0.75rem;
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-on-dark);
}

.footer-disclaimer-inner p:last-child {
  margin-bottom: 0;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem var(--gutter) 1.35rem;
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
}

.footer-bar__compliance {
  display: none;
}

.footer-bar__copy {
  margin: 0;
  font: inherit;
  color: inherit;
  letter-spacing: normal;
}

.footer-bar__admin {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}

.footer-bar__admin:hover,
.footer-bar__admin:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.15fr 1fr 0.85fr 0.85fr;
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .header-inner {
    max-width: 1920px;
  }
}

/* Mobile bottom CTA bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--mobile-bar-h);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  height: 100%;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.mobile-bar__call {
  background: var(--anchor);
}

.mobile-bar__submit {
  background: var(--accent);
}

.mobile-bar__call svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mobile-bar {
    display: none;
  }
}
