:root {
  --bs-primary: #0c6c7c;
  --bs-primary-rgb: 12, 108, 124;
  --bs-secondary: #f29f67;
  --bs-secondary-rgb: 242, 159, 103;
  --bs-link-color: #0c6c7c;
  --bs-link-hover-color: #074853;
  --grd-ink: #122230;
  --grd-steel: #264653;
  --grd-sand: #f5efe6;
  --grd-cloud: #edf4f6;
  --grd-panel: #ffffff;
  --grd-signal: #f2c14e;
}

body {
  color: var(--grd-ink);
  background: linear-gradient(180deg, #fcfdfd 0%, #f2f7f8 100%);
}

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.bg-gradient-primary-to-secondary {
  background: linear-gradient(135deg, #0c6c7c 0%, #12324f 58%, #f29f67 100%);
}

#mainNav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

#mainNav .navbar-brand {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#mainNav .nav-link.active {
  color: var(--bs-primary);
  font-weight: 700;
}

#mainNav .dropdown-menu {
  border: 1px solid rgba(18, 50, 79, 0.08);
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(18, 50, 79, 0.12);
}

#mainNav .dropdown-item {
  color: var(--grd-steel);
  font-weight: 700;
}

#mainNav .dropdown-item:hover,
#mainNav .dropdown-item:focus {
  background: rgba(12, 108, 124, 0.08);
  color: var(--bs-primary);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--bs-primary);
  font-family: "Kanit", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: currentColor;
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.78);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(18, 50, 79, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--grd-steel);
  font-size: 0.9rem;
}

.masthead {
  position: relative;
  overflow: hidden;
}

.masthead::after {
  content: "";
  position: absolute;
  inset: auto -15% -12rem auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 159, 103, 0.22) 0%, rgba(242, 159, 103, 0) 70%);
  pointer-events: none;
}

.hero-app-preview {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #090909 0%, #020202 100%);
}

.hero-app-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.hero-app-preview__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transform: scale(1.015);
}

.hero-app-preview__badge {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  background: rgba(6, 10, 15, 0.45);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.2);
}

.hero-app-preview__badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-app-preview__badge strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.policy-page {
  min-height: 100vh;
}

.policy-main {
  padding-top: 7.5rem;
}

.policy-hero {
  padding: 2rem 0 1.5rem;
}

.policy-card {
  padding: 2rem;
  border: 1px solid rgba(18, 50, 79, 0.08);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(12, 108, 124, 0.05), transparent 28%),
    var(--grd-panel);
  box-shadow: 0 1.5rem 3rem rgba(18, 50, 79, 0.09);
}

.policy-card__header {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  background: var(--grd-cloud);
}

.policy-card__eyebrow {
  color: var(--bs-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-card__date {
  color: var(--grd-steel);
  font-size: 1rem;
  font-weight: 700;
}

.policy-lead {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy-section + .policy-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(18, 50, 79, 0.08);
}

.policy-section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.policy-section p {
  margin-bottom: 0.8rem;
  color: rgba(18, 34, 48, 0.84);
  line-height: 1.8;
}

.policy-section--contact p {
  margin-bottom: 0.85rem;
}

.policy-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(12, 108, 124, 0.08);
  color: var(--bs-primary);
  font-weight: 700;
  text-decoration: none;
}

.policy-contact:hover,
.policy-contact:focus {
  color: var(--bs-link-hover-color);
}

.support-page {
  min-height: 100vh;
}

.support-main {
  padding-top: 7.5rem;
}

.support-app-main {
  min-height: 100vh;
  padding: max(1.25rem, env(safe-area-inset-top)) 0 max(1.25rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at top left, rgba(12, 108, 124, 0.08), transparent 34%),
    linear-gradient(180deg, #f7fbfc 0%, #edf4f6 100%);
}

.support-app-main .container {
  max-width: 70rem;
}

.support-app-page .support-form-card {
  box-shadow: 0 1rem 2.2rem rgba(18, 50, 79, 0.07);
}

.support-hero {
  padding: 2rem 0 2.5rem;
}

.support-quick-link {
  margin-bottom: 1.2rem;
}

.support-hero-card,
.support-form-card,
.support-side-card {
  border: 1px solid rgba(18, 50, 79, 0.08);
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 3rem rgba(18, 50, 79, 0.08);
}

.support-hero-card {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(242, 159, 103, 0.14), transparent 34%),
    linear-gradient(180deg, #10232f 0%, #0b1721 100%);
  color: #fff;
}

.support-hero-card__eyebrow,
.support-side-card__eyebrow {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-hero-card h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.45rem;
}

.support-hero-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.support-hero-card__link {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.support-hero-card__link:hover,
.support-hero-card__link:focus {
  color: #fff;
  opacity: 0.92;
}

.support-form-card {
  scroll-margin-top: 7.5rem;
  padding: 2rem;
  background: var(--grd-panel);
}

.support-form {
  display: grid;
  gap: 1.5rem;
}

.support-form .form-label {
  margin-bottom: 0.55rem;
  color: var(--grd-steel);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.support-form .form-control,
.support-form .form-select {
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 50, 79, 0.12);
  border-radius: 1rem;
  background: #fff;
  color: var(--grd-ink);
  box-shadow: none;
}

.support-form .form-control:focus,
.support-form .form-select:focus {
  border-color: rgba(12, 108, 124, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(12, 108, 124, 0.12);
}

.support-form .form-select:disabled {
  background: rgba(237, 244, 246, 0.7);
  color: rgba(38, 70, 83, 0.7);
}

.support-textarea {
  min-height: 11rem;
  resize: vertical;
}

.support-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.support-form__fine-print {
  max-width: 28rem;
  color: var(--grd-steel);
  font-size: 0.92rem;
  line-height: 1.6;
}

.support-form__status {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: var(--grd-cloud);
  color: var(--grd-steel);
  font-size: 0.95rem;
}

.support-form__status[data-state="ready"] {
  background: rgba(12, 108, 124, 0.08);
  color: var(--bs-primary);
}

.support-form__status[data-state="error"] {
  background: rgba(178, 34, 34, 0.08);
  color: #b22222;
}

.support-alert {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  line-height: 1.6;
}

.support-alert--success {
  background: rgba(12, 108, 124, 0.08);
  color: var(--bs-primary);
}

.support-alert--error {
  background: rgba(178, 34, 34, 0.08);
  color: #9f1d1d;
}

.support-side-card {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(12, 108, 124, 0.11), transparent 28%),
    linear-gradient(180deg, #f7fbfc 0%, #eef5f6 100%);
}

.support-side-card__eyebrow {
  color: var(--bs-primary);
}

.support-side-card h3 {
  margin-bottom: 1.1rem;
  font-size: 1.45rem;
}

.support-side-card__list {
  display: grid;
  gap: 1rem;
}

.support-side-card__item {
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.85);
}

.support-side-card__item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.support-side-card__item p,
.support-side-card__note p {
  margin: 0;
  color: rgba(18, 34, 48, 0.82);
  line-height: 1.65;
}

.support-side-card__note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(18, 50, 79, 0.08);
}

.support-side-card__note h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.device-dashboard,
.phone-note {
  height: 100%;
  padding: 1.35rem 1.2rem;
  color: #f7fbfc;
  background:
    radial-gradient(circle at top right, rgba(242, 159, 103, 0.25), transparent 38%),
    linear-gradient(180deg, #10232f 0%, #081018 100%);
}

.device-dashboard__eyebrow,
.phone-note__kicker {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.device-dashboard h2,
.phone-note h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #fff;
}

.device-dashboard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.device-dashboard__chips span {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.device-dashboard__items {
  display: grid;
  gap: 0.85rem;
}

.device-dashboard__item {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.device-dashboard__item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
  line-height: 1.3;
}

.device-dashboard__item p,
.phone-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.45;
}

.device-dashboard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(12, 108, 124, 0.8), rgba(242, 159, 103, 0.8));
  font-size: 1rem;
}

.service-card,
.metric-card,
.stack-card,
.product-card {
  padding: 1.6rem;
  border: 1px solid rgba(18, 50, 79, 0.08);
  border-radius: 1.5rem;
  background: var(--grd-panel);
  box-shadow: 0 1.25rem 2.5rem rgba(18, 50, 79, 0.08);
}

.service-card {
  display: flex;
  gap: 1rem;
}

.service-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(12, 108, 124, 0.12), rgba(242, 159, 103, 0.18));
  color: var(--bs-primary);
  font-size: 1.3rem;
}

.service-card__category {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--grd-steel);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.react-shell {
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid rgba(18, 50, 79, 0.08);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1)),
    var(--grd-panel);
  box-shadow: 0 1.5rem 3rem rgba(18, 50, 79, 0.08);
}

.react-placeholder,
.react-loading,
.react-error {
  padding: 2rem 1rem;
  color: var(--grd-steel);
  text-align: center;
}

.react-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.react-count {
  font-weight: 700;
  color: var(--grd-ink);
}

.react-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.react-filter {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(18, 50, 79, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--grd-steel);
  font-weight: 600;
}

.react-filter.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #0c6c7c, #12324f);
  color: #fff;
}

.react-card {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(18, 50, 79, 0.08);
  border-radius: 1.25rem;
  background: #fff;
}

.react-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(12, 108, 124, 0.15), rgba(242, 159, 103, 0.2));
  color: var(--bs-primary);
  font-size: 1.15rem;
}

.react-card__category {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--grd-steel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-showcase {
  display: grid;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.9fr);
  gap: 1.5rem;
}

.product-card__tags,
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-card__tags {
  margin-bottom: 1.5rem;
}

.product-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(12, 108, 124, 0.08);
  color: var(--grd-steel);
  font-size: 0.9rem;
  font-weight: 600;
}

.product-card__visual {
  display: flex;
  align-items: stretch;
}

.product-panel {
  width: 100%;
  padding: 1.5rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(242, 159, 103, 0.22), transparent 40%),
    linear-gradient(180deg, #10232f 0%, #0b1721 100%);
  color: #fff;
}

.product-panel__eyebrow {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-panel h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.product-panel__item + .product-panel__item {
  margin-top: 1rem;
}

.product-panel__item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.product-panel__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.florida-fast-page {
  background:
    radial-gradient(circle at top left, rgba(12, 108, 124, 0.12), transparent 32rem),
    linear-gradient(180deg, #fcfdfd 0%, #eef6f8 100%);
}

.state-dmv-page {
  --state-primary: #0c6c7c;
  --state-deep: #10232f;
  --state-accent: #f2c14e;
  background:
    radial-gradient(circle at top left, rgba(12, 108, 124, 0.1), transparent 32rem),
    linear-gradient(180deg, #fcfdfd 0%, #eef6f8 100%);
}

.state-dmv-page.california {
  --state-primary: #0b4a7d;
  --state-deep: #08243d;
  --state-accent: #f2a541;
}

.state-dmv-page.idaho {
  --state-primary: #1b6f52;
  --state-deep: #123b31;
  --state-accent: #f2c14e;
}

.state-dmv-page.maryland {
  --state-primary: #7d1f2a;
  --state-deep: #111827;
  --state-accent: #f2c14e;
}

.state-dmv-page.massachusetts {
  --state-primary: #1f5f8b;
  --state-deep: #12243a;
  --state-accent: #7cc6a4;
}

.state-dmv-page.new-york {
  --state-primary: #254f9b;
  --state-deep: #13264f;
  --state-accent: #f26f63;
}

.state-dmv-page.washington {
  --state-primary: #246b4f;
  --state-deep: #15392f;
  --state-accent: #7db7df;
}

.state-dmv-page.south-carolina {
  --state-primary: #1c5b73;
  --state-deep: #102f44;
  --state-accent: #f4b85e;
}

.state-dmv-page.new-jersey {
  --state-primary: #5d6d2f;
  --state-deep: #24311b;
  --state-accent: #e7bd61;
}

.state-dmv-page.texas {
  --state-primary: #174a8b;
  --state-deep: #0b2140;
  --state-accent: #c3313b;
}

.ff-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.ff-hero::after {
  content: "";
  position: absolute;
  inset: 6rem -12rem auto auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 159, 103, 0.2), transparent 70%);
  pointer-events: none;
}

.ff-hero__copy {
  position: relative;
  z-index: 1;
}

.ff-app-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.ff-app-icon {
  flex: 0 0 auto;
  border-radius: 1.35rem;
  box-shadow: 0 1rem 2rem rgba(18, 50, 79, 0.18);
}

.ff-hero__eyebrow {
  color: var(--grd-steel);
  font-weight: 700;
}

.ff-hero-list {
  display: grid;
  gap: 0.65rem;
  padding-left: 0;
  list-style: none;
}

.ff-hero-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--grd-steel);
  font-weight: 700;
}

.ff-hero-list li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--bs-primary);
  font-family: bootstrap-icons;
}

.ff-price-note {
  display: inline-flex;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(12, 108, 124, 0.14);
  border-radius: 1rem;
  background: rgba(12, 108, 124, 0.08);
  color: var(--grd-ink);
}

.ff-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.ff-store-badge:hover,
.ff-store-badge:focus {
  transform: translateY(-2px);
  filter: drop-shadow(0 0.8rem 1.2rem rgba(18, 50, 79, 0.18));
}

.ff-store-badge--large {
  transform: scale(1.12);
  transform-origin: right center;
}

.ff-store-badge--large:hover,
.ff-store-badge--large:focus {
  transform: scale(1.12) translateY(-2px);
}

.ff-hero-stage {
  position: relative;
  z-index: 1;
  min-height: 42rem;
}

.state-dmv-stage {
  position: relative;
  z-index: 1;
  min-height: 36rem;
  max-width: 34rem;
  margin-left: auto;
}

.state-dmv-visual {
  overflow: hidden;
  position: absolute;
  border: 0.65rem solid rgba(255, 255, 255, 0.78);
  border-radius: 1.65rem;
  background: #fff;
  box-shadow: 0 1.75rem 3.25rem rgba(16, 35, 47, 0.16);
}

.state-dmv-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.state-dmv-visual--primary {
  right: 0;
  top: 0.25rem;
  width: 88%;
  aspect-ratio: 16 / 10;
  transform: rotate(2deg);
}

.state-dmv-visual--secondary {
  left: 0;
  bottom: 4.4rem;
  width: 66%;
  aspect-ratio: 16 / 10;
  transform: rotate(-3deg);
  z-index: 2;
}

.state-dmv-hero-card {
  right: 0;
  bottom: 0;
  max-width: 19rem;
  background:
    radial-gradient(circle at top right, rgba(242, 193, 78, 0.22), transparent 42%),
    linear-gradient(180deg, var(--state-deep) 0%, #081018 100%);
  z-index: 3;
}

.ff-phone {
  overflow: hidden;
  border: 0.65rem solid #050709;
  border-radius: 2.2rem;
  background: #050709;
  box-shadow: 0 2rem 4rem rgba(18, 50, 79, 0.2);
}

.ff-phone img,
.ff-tablet-frame img,
.ff-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

.ff-phone--primary {
  position: absolute;
  left: 4rem;
  top: 0;
  width: min(18.5rem, 54vw);
  transform: rotate(-3deg);
}

.ff-phone--secondary {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: min(15rem, 44vw);
  opacity: 0.94;
  transform: rotate(6deg);
}

.ff-hero-card {
  position: absolute;
  left: 0;
  right: 3rem;
  bottom: 4.5rem;
  max-width: 24rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(242, 159, 103, 0.22), transparent 42%),
    linear-gradient(180deg, #10232f 0%, #081018 100%);
  color: #fff;
  box-shadow: 0 1.5rem 3rem rgba(18, 50, 79, 0.22);
}

.ff-hero-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ff-hero-card strong {
  display: block;
  font-size: 1.15rem;
}

.fdmv-hero-collage {
  position: relative;
  min-height: 31rem;
  max-width: 30rem;
  margin-left: auto;
}

.fdmv-hero-shot {
  overflow: hidden;
  position: absolute;
  border: 0.55rem solid rgba(255, 255, 255, 0.72);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1.75rem 3.25rem rgba(16, 35, 47, 0.16);
}

.fdmv-hero-shot--phone {
  background: #050709;
}

.fdmv-hero-shot.fdmv-hero-shot--phone img {
  object-fit: cover;
  object-position: center top;
  background: #050709;
}

.fdmv-hero-shot img,
.fdmv-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.fdmv-hero-shot--primary {
  left: 1.5rem;
  top: 0.75rem;
  width: min(14rem, 46%);
  aspect-ratio: 1320 / 2868;
  transform: rotate(-2deg);
  z-index: 2;
}

.fdmv-hero-shot--secondary {
  right: 1rem;
  bottom: 4.75rem;
  width: min(11.75rem, 39%);
  aspect-ratio: 1320 / 2868;
  transform: rotate(4deg);
  z-index: 3;
}

.florida-dmv-page .ff-hero-card {
  background:
    radial-gradient(circle at top right, rgba(198, 255, 0, 0.18), transparent 42%),
    linear-gradient(180deg, #10232f 0%, #081018 100%);
  right: 0;
  bottom: 0;
  max-width: 17rem;
  z-index: 4;
}

.florida-dmv-page .ff-hero-stage {
  min-height: 36rem;
  max-width: 30rem;
  margin-left: auto;
}

.florida-dmv-page .ff-phone--primary {
  left: 2rem;
  width: min(16rem, 46vw);
}

.florida-dmv-page .ff-phone--secondary {
  right: 1rem;
  bottom: 1rem;
  width: min(12.75rem, 38vw);
}

.ff-proof-strip {
  padding: 0 0 5rem;
}

.ff-path-section,
.ff-preview-section,
.ff-exam-section,
.ff-info-section,
.ff-grade-section,
.ff-faq-section {
  padding: 6rem 0;
}

.ff-info-card,
.ff-grade-card,
.ff-faq-item {
  border: 1px solid rgba(18, 50, 79, 0.08);
  background: var(--grd-panel);
  box-shadow: 0 1.25rem 2.5rem rgba(18, 50, 79, 0.08);
}

.ff-info-card {
  padding: 2rem;
  border-radius: 2rem;
}

.ff-grade-section,
.ff-faq-section {
  background:
    radial-gradient(circle at top left, rgba(12, 108, 124, 0.08), transparent 26rem),
    var(--bs-light);
}

.ff-grade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.ff-grade-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.ff-grade-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.ff-grade-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(18, 34, 48, 0.78);
}

.ff-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ff-step-card,
.ff-gallery-card,
.ff-exam-card {
  border: 1px solid rgba(18, 50, 79, 0.08);
  background: var(--grd-panel);
  box-shadow: 0 1.25rem 2.5rem rgba(18, 50, 79, 0.08);
}

.ff-step-card {
  min-height: 15rem;
  padding: 1.45rem;
  border-radius: 1.5rem;
}

.ff-step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(12, 108, 124, 0.14), rgba(242, 159, 103, 0.2));
  color: var(--bs-primary);
  font-family: "Kanit", sans-serif;
  font-weight: 700;
}

.ff-step-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.ff-step-card p {
  margin: 0;
  color: rgba(18, 34, 48, 0.78);
  line-height: 1.65;
}

.ff-dark-section {
  overflow: hidden;
  padding: 6rem 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 159, 103, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 70%, rgba(12, 108, 124, 0.2), transparent 26rem),
    linear-gradient(135deg, #10232f 0%, #061019 100%);
}

.ff-tablet-frame {
  overflow: hidden;
  border: 0.75rem solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.26);
  transform: rotate(-1deg);
}

.ff-feature-list {
  display: grid;
  gap: 0.85rem;
}

.ff-feature-list__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.ff-feature-list__item i {
  color: #f2c14e;
  font-size: 1.1rem;
}

.ff-preview-section {
  background:
    radial-gradient(circle at top right, rgba(12, 108, 124, 0.08), transparent 28rem),
    var(--bs-light);
}

.ff-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.25fr);
  gap: 1.25rem;
  align-items: stretch;
}

.state-dmv-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.state-dmv-gallery .ff-gallery-card--tablet {
  grid-column: auto;
}

.fdmv-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.ff-gallery-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 1.65rem;
}

.ff-gallery-card img {
  background: #050709;
}

.ff-gallery-card--phone img {
  aspect-ratio: 9 / 18.5;
  object-fit: cover;
  object-position: center top;
}

.ff-gallery-card--tablet img {
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  object-position: center top;
}

.fdmv-preview-card img {
  aspect-ratio: 4 / 3;
  padding: 0.4rem;
}

.ff-gallery-card div {
  padding: 1.25rem;
}

.ff-gallery-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--bs-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ff-gallery-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.ff-exam-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(242, 159, 103, 0.13), transparent 34%),
    #fff;
}

.ff-exam-card__callout {
  padding: 1.5rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(242, 159, 103, 0.22), transparent 40%),
    linear-gradient(180deg, #10232f 0%, #0b1721 100%);
  color: #fff;
}

.ff-exam-card__callout strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.ff-exam-card__callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.ff-faq-list {
  display: grid;
  gap: 1rem;
}

.ff-faq-item {
  padding: 1.25rem 1.4rem;
  border-radius: 1.35rem;
}

.ff-faq-item summary {
  cursor: pointer;
  color: var(--grd-ink);
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.ff-faq-item p {
  margin: 1rem 0 0;
  color: rgba(18, 34, 48, 0.76);
  line-height: 1.7;
}

.ff-cta {
  min-height: 32rem;
}

.delivery-strip {
  padding: 0 0 5rem;
  background: var(--bs-light);
}

.metric-card,
.stack-card {
  height: 100%;
}

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

.cta-copy {
  max-width: 42rem;
}

.tracking-wide {
  letter-spacing: 0.14em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
  color: #fff;
}

@media (max-width: 991.98px) {
  .policy-main {
    padding-top: 6.5rem;
  }

  .support-main {
    padding-top: 6.5rem;
  }

  .support-form-card {
    scroll-margin-top: 6.75rem;
  }

  .support-app-page .support-form-card {
    scroll-margin-top: 1rem;
  }

  .ff-hero {
    padding: 8rem 0 4rem;
  }

  .ff-hero-stage {
    min-height: 34rem;
    margin-top: 3rem;
  }

  .state-dmv-stage {
    min-height: 32rem;
    margin: 3rem auto 0;
  }

  .ff-phone--primary {
    left: 18%;
  }

  .ff-phone--secondary {
    right: 12%;
  }

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

  .state-dmv-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ff-grade-grid {
    grid-template-columns: 1fr;
  }

  .ff-gallery-card--tablet {
    grid-column: 1 / -1;
  }

  .state-dmv-gallery .ff-gallery-card--tablet {
    grid-column: auto;
  }

  .ff-exam-card {
    grid-template-columns: 1fr;
  }

  .ff-store-badge--large {
    transform-origin: left center;
  }

  .ff-store-badge--large:hover,
  .ff-store-badge--large:focus {
    transform: scale(1.12) translateY(-2px);
  }

  .stack-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .react-shell {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .policy-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .support-form-card,
  .support-side-card,
  .support-hero-card {
    padding: 1.4rem;
    border-radius: 1.4rem;
  }

  .support-app-main {
    padding-top: max(0.85rem, env(safe-area-inset-top));
  }

  .support-app-page .support-form-card {
    padding: 1.25rem;
  }

  .support-app-page .display-6 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .support-hero {
    padding: 1rem 0 1.25rem;
  }

  .support-hero .display-4 {
    font-size: 2.4rem;
  }

  .ff-hero {
    padding: 7.5rem 0 3rem;
  }

  .ff-app-lockup {
    align-items: flex-start;
  }

  .ff-app-icon {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.05rem;
  }

  .ff-hero .display-2 {
    font-size: 3.2rem;
  }

  .ff-hero-stage {
    min-height: 29rem;
  }

  .state-dmv-stage {
    min-height: 28rem;
    max-width: 24rem;
  }

  .state-dmv-visual {
    border-width: 0.45rem;
    border-radius: 1.25rem;
  }

  .state-dmv-visual--primary {
    width: 92%;
  }

  .state-dmv-visual--secondary {
    bottom: 4rem;
    width: 72%;
  }

  .state-dmv-hero-card {
    max-width: 17rem;
  }

  .ff-phone {
    border-width: 0.45rem;
    border-radius: 1.65rem;
  }

  .ff-phone--primary {
    left: 4%;
    width: 62vw;
  }

  .ff-phone--secondary {
    right: 2%;
    bottom: 0;
    width: 44vw;
  }

  .ff-hero-card {
    right: 0;
    bottom: 2.25rem;
  }

  .ff-proof-strip {
    padding-bottom: 3rem;
  }

  .ff-path-section,
  .ff-preview-section,
  .ff-exam-section,
  .ff-dark-section,
  .ff-info-section,
  .ff-grade-section,
  .ff-faq-section {
    padding: 4rem 0;
  }

  .ff-step-grid,
  .ff-gallery,
  .fdmv-preview-grid {
    grid-template-columns: 1fr;
  }

  .state-dmv-gallery {
    grid-template-columns: 1fr;
  }

  .ff-step-card,
  .ff-exam-card,
  .ff-info-card,
  .ff-grade-card,
  .ff-faq-item {
    border-radius: 1.4rem;
  }

  .ff-tablet-frame {
    margin-bottom: 2rem;
    border-width: 0.45rem;
    border-radius: 1.4rem;
    transform: none;
  }

  .ff-store-badge--large {
    transform: none;
  }

  .ff-store-badge--large:hover,
  .ff-store-badge--large:focus {
    transform: translateY(-2px);
  }

  .fdmv-hero-collage {
    min-height: 28rem;
    max-width: 24rem;
  }

  .florida-dmv-page .ff-hero-stage {
    min-height: 32rem;
    max-width: 24rem;
  }

  .florida-dmv-page .ff-phone--primary {
    left: 9%;
    width: min(14rem, 46vw);
  }

  .florida-dmv-page .ff-phone--secondary {
    right: 6%;
    width: min(11rem, 36vw);
  }

  .fdmv-hero-shot--primary {
    width: min(12.25rem, 48%);
    left: 0.25rem;
  }

  .fdmv-hero-shot--secondary {
    width: min(10.25rem, 40%);
    bottom: 4.25rem;
  }

  .support-quick-link {
    width: 100%;
    margin-bottom: 1rem;
  }

  .support-form__actions {
    align-items: stretch;
  }

  .support-form__actions .btn {
    width: 100%;
  }

  .service-card {
    flex-direction: column;
  }

  .hero-badges {
    justify-content: center;
  }

  .fdmv-hero-collage {
    min-height: auto;
    display: grid;
    gap: 1rem;
    justify-items: center;
  }

  .florida-dmv-page .ff-hero-stage {
    min-height: 26rem;
    max-width: 100%;
    margin-top: 2rem;
  }

  .fdmv-hero-shot {
    position: static;
    width: min(100%, 16rem);
    transform: none;
    aspect-ratio: 1320 / 2868;
  }

  .florida-dmv-page .ff-hero-card {
    position: static;
    max-width: none;
  }
}
