.case-swipe {
  display: none;
}

.mobile-title-break,
.contact-phone-number,
.contact-phone-mobile {
  display: none;
}

.contact-phone .contact-phone-mobile {
  display: none;
}

/*
 * Mobile art direction
 *
 * The desktop reference is intentionally fixed in styles.css. All smartphone
 * composition lives here so the 320–760px layout has one authoritative cascade.
 */
@media (max-width: 760px) {
  :root {
    --mobile-gutter: 14px;
    --mobile-radius: 12px;
    --mobile-shadow: 0 12px 28px rgba(3, 26, 61, 0.13);
  }

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .container,
  .container-wide {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 620px);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading,
  .section-reasons .section-heading,
  .section-services .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    margin-top: 7px;
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .mobile-title-break {
    display: block;
  }

  .section-lead {
    margin-top: 11px;
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .eyebrow {
    gap: 9px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 30px;
    height: 4px;
  }

  .button {
    min-height: 58px;
    border-radius: 7px;
    padding-inline: 16px;
  }

  .button-red {
    box-shadow: 0 10px 22px rgba(221, 2, 16, 0.24);
  }

  /* Header */
  .site-header {
    height: 64px;
    border-bottom: 3px solid var(--lime);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 18px rgba(3, 26, 61, 0.12);
    backdrop-filter: blur(12px);
  }

  .header-inner {
    width: calc(100% - 18px);
    gap: 8px;
  }

  .brand {
    margin-right: auto;
  }

  .brand img {
    width: 118px;
    height: 44px;
  }

  .brand span,
  .header-phone {
    display: none;
  }

  .menu-button {
    min-width: 76px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 9px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    background: var(--navy);
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .menu-button-icon {
    width: 18px;
    display: grid;
    gap: 4px;
  }

  .menu-button-icon i {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: var(--lime);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon i:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-icon i:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon i:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav.is-open {
    top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 12px 12px 16px;
    border-bottom: 5px solid var(--lime);
    color: #fff;
    background: var(--navy);
    box-shadow: 0 16px 30px rgba(3, 26, 61, 0.25);
  }

  .main-nav.is-open a {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 10px 6px;
    border: 0;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
    font-size: 0.75rem;
  }

  /* Hero */
  .hero {
    min-height: 0;
    padding-top: 304px;
    background: #fff;
  }

  .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 340px;
    background: linear-gradient(180deg, transparent 42%, rgba(3, 26, 61, 0.7) 100%);
    pointer-events: none;
  }

  .hero-background {
    height: 340px;
    object-position: 66% center;
  }

  .hero-inner {
    width: 100%;
    min-height: 0;
    display: block;
    padding: 0 var(--mobile-gutter) 24px;
  }

  .hero-copy {
    width: 100%;
    margin: -74px 0 0;
    padding: 0;
    border-radius: var(--mobile-radius) var(--mobile-radius) 0 0;
    background: #fff;
  }

  .hero-message {
    position: relative;
    padding: 20px 17px 22px;
    border-left: 5px solid var(--lime);
    border-radius: var(--mobile-radius) var(--mobile-radius) 0 0;
    color: #fff;
    background: linear-gradient(125deg, rgba(3, 26, 61, 0.98), rgba(8, 45, 89, 0.93));
    box-shadow: 0 14px 30px rgba(3, 26, 61, 0.24);
  }

  .hero-kicker {
    margin: 0 0 10px;
    padding: 0 0 6px;
    border-bottom: 4px solid var(--lime);
    color: #fff;
    font-size: 0.76rem;
    letter-spacing: 0.025em;
  }

  .hero h1 {
    color: #fff;
    font-size: clamp(1.82rem, 8.6vw, 2.18rem);
    line-height: 1.04;
    letter-spacing: -0.065em;
  }

  .hero-line {
    display: block;
  }

  .hero-line-main {
    margin-top: 5px;
  }

  .hero h1 em {
    display: inline-block;
    margin-right: 4px;
  }

  .hero h1 em span {
    position: relative;
    top: 0.06em;
    margin-left: 0.08em;
    font-size: 1.24em;
  }

  .hero-sub {
    margin: 12px 0 0;
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .hero-benefits {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .hero-benefit {
    min-height: 64px;
    gap: 7px;
    padding: 7px 8px;
    border: 0;
    border-top: 3px solid var(--lime);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(3, 26, 61, 0.1);
  }

  .hero-benefit img {
    width: 38px;
    height: 38px;
  }

  .hero-benefit span {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .hero-benefit strong {
    font-size: 0.72rem;
  }

  .hero-prices {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 10px 0 0;
    padding: 7px;
    border: 0;
    border-radius: 9px;
    background: var(--navy);
    box-shadow: var(--mobile-shadow);
  }

  .hero-prices > div {
    min-height: 72px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 8px 9px;
    border-radius: 5px;
    background: #fff;
  }

  .hero-prices > div + div {
    margin-top: 5px;
    border: 0;
  }

  .hero-prices img {
    width: 46px;
    height: 46px;
  }

  .hero-prices span {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-prices strong {
    font-size: 0.74rem;
  }

  .hero-prices strong b {
    font-size: 1.62rem;
  }

  .hero-price-note {
    padding: 7px 5px 2px;
    color: #fff;
    font-size: 0.56rem;
  }

  .hero-form-wrap {
    width: 100%;
    max-width: none;
  }

  .quick-form {
    margin-top: 12px;
    padding: 18px 15px 16px;
    border: 0;
    border-top: 5px solid var(--lime);
    border-radius: 9px;
    background: #f4f6f9;
    box-shadow: var(--mobile-shadow);
  }

  .quick-form-kicker {
    text-align: center;
    font-size: 0.68rem;
  }

  .quick-form h2 {
    margin: 4px 0 13px;
    padding-bottom: 9px;
    border-bottom-width: 3px;
    text-align: center;
    font-size: 1.12rem;
  }

  .quick-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-form label {
    font-size: 0.72rem;
  }

  .quick-form input,
  .quick-form select {
    min-height: 49px;
    padding-inline: 9px;
    font-size: 16px;
  }

  .quick-submit {
    min-height: 56px;
    margin-top: 11px !important;
    font-size: 0.9rem;
  }

  .quick-form .privacy-note {
    font-size: 0.61rem;
  }

  .trust-bar {
    min-height: 78px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
    border-top: 5px solid var(--lime);
    background: var(--navy);
  }

  .trust-bar > p {
    display: none;
  }

  .trust-bar div {
    min-height: 78px;
    padding: 9px 4px;
    border-top: 0;
  }

  .trust-bar div:nth-of-type(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-bar strong {
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .trust-bar small {
    font-size: 0.53rem;
    line-height: 1.35;
  }

  /* Services */
  .section-services {
    padding: 54px 0 58px;
  }

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

  .service-card {
    position: relative;
    display: block;
    min-width: 0;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(3, 26, 61, 0.13);
    overflow: hidden;
  }

  .service-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--lime);
  }

  .service-photo {
    width: 100%;
    height: 112px;
    min-height: 0;
    object-fit: cover;
  }

  .service-card-body {
    position: relative;
    min-height: 112px;
    display: block;
    padding: 30px 10px 10px;
  }

  .service-icon {
    position: absolute;
    top: -25px;
    left: 10px;
    width: 45px;
    height: 45px;
    padding: 2px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fff;
    filter: drop-shadow(0 4px 6px rgba(3, 26, 61, 0.2));
  }

  .service-card h3 {
    padding-bottom: 7px;
    border-bottom-width: 3px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .service-card p {
    margin-top: 6px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.64rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .services-cta {
    margin-top: 22px;
  }

  .services-cta span {
    font-size: 0.88rem;
  }

  /* Price */
  .section-pricing {
    padding: 56px 0 60px;
    background: radial-gradient(circle at 50% 0, #fff 0, #f3f5f9 34%, #eef1f6 100%);
  }

  .pricing-intro,
  .cases-intro,
  .flow-intro,
  .faq-intro {
    min-height: 0;
    overflow: hidden;
  }

  .pricing-truck,
  .cases-truck,
  .flow-truck,
  .faq-truck {
    top: -16px;
    right: -6%;
    left: auto;
    width: 106%;
    max-width: none;
    height: 190px;
    opacity: 0.075;
    object-position: right center;
  }

  .section-heading.is-left {
    text-align: center;
  }

  .section-heading.is-left .section-lead {
    margin-inline: auto;
  }

  .price-panels {
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .price-panels article,
  .price-panels article:nth-child(2) {
    min-height: 154px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 14px 17px 11px;
    border: 0;
    border-left: 6px solid var(--lime);
    border-radius: 9px;
    background: #fff;
    box-shadow: var(--mobile-shadow);
  }

  .price-panels article:nth-child(2) {
    border-left-color: var(--navy);
  }

  .price-panels img,
  .price-panels article:nth-child(2) > img {
    width: 80px;
    height: 80px;
  }

  .price-panels h3 {
    font-size: 1.02rem;
  }

  .price-main {
    gap: 2px;
  }

  .price-panels strong b {
    font-size: clamp(2.9rem, 14vw, 3.55rem);
  }

  .price-main em {
    padding-bottom: 5px;
    font-size: 1rem;
  }

  .price-main small {
    padding-bottom: 5px;
    font-size: 0.56rem;
  }

  .price-benefit,
  .price-panels span.price-benefit {
    margin-top: 7px;
    padding: 5px 11px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    background: var(--red);
    font-size: 0.82rem;
  }

  .price-distance {
    gap: 4px;
    margin-top: 6px;
    font-size: 0.82rem;
  }

  .price-distance span {
    margin: 0;
    padding: 4px 7px;
    border-width: 1px;
    font-size: 0.78rem;
  }

  .price-distance b {
    font-size: 1.36rem;
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .payment-grid article {
    min-height: 104px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
    padding: 10px 8px;
    border: 0;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(3, 26, 61, 0.08);
  }

  .payment-grid img {
    width: 40px;
    height: 40px;
  }

  .payment-grid h3 {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .payment-grid p {
    font-size: 0.6rem;
    line-height: 1.45;
  }

  .payment-card-brands .payment-brands {
    width: 100%;
    height: auto;
    margin-top: 4px;
  }

  .price-note {
    margin-top: 16px;
    font-size: 0.68rem;
    line-height: 1.6;
  }

  .price-cta {
    min-height: 60px;
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .price-cta > img:first-child {
    margin-right: 12px;
  }

  /* Reasons */
  .section-reasons {
    padding: 56px 0 60px;
    background: linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);
  }

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

  .reason-card,
  .reason-card:nth-last-child(-n + 4) {
    min-height: 260px;
    padding: 31px 8px 14px;
    border: 0;
    border-top: 5px solid var(--navy);
    border-radius: 8px;
    box-shadow: 0 8px 19px rgba(3, 26, 61, 0.1);
  }

  .reason-number {
    min-width: 42px;
    padding: 6px 8px;
    border-radius: 0 0 10px 0;
    font-size: 0.92rem;
  }

  .reason-card h3 {
    min-height: 52px;
    display: block;
    align-content: center;
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    line-height: 1.3;
    text-wrap: balance;
  }

  .reason-card h3::after {
    width: 35px;
    height: 3px;
    margin-top: 7px;
  }

  .reason-card h3 small {
    display: block;
    margin-top: 2px;
    font-size: 0.68em;
  }

  .reason-card h3 strong {
    white-space: nowrap;
  }

  .reason-card img,
  .reason-card .reason-photo,
  .reason-card .reason-brands {
    width: clamp(86px, 25vw, 132px);
    height: clamp(74px, 20vw, 106px);
    margin: 8px auto 10px;
    object-fit: contain;
    transform-origin: center;
  }

  .reason-card-01 .reason-icon {
    width: clamp(88px, 25vw, 124px);
    height: clamp(80px, 22vw, 118px);
  }

  .reason-card .reason-brands {
    width: min(118px, 100%);
    height: 54px;
  }

  .reason-card-04 .reason-icon {
    transform: scale(1.08);
  }

  .reason-card-06 .reason-icon,
  .reason-card-08 .reason-icon,
  .reason-card-09 .reason-icon {
    transform: scale(1.14);
  }

  .reason-card-10 .reason-icon {
    transform: scale(1.28);
  }

  .reason-card p {
    margin-top: 5px;
    display: block;
    overflow: visible;
    font-size: clamp(0.61rem, 2.65vw, 0.74rem);
    line-height: 1.55;
    line-break: strict;
    text-wrap: balance;
  }

  .reason-copy-line {
    display: inline;
    white-space: normal;
  }

  .cashback-banner {
    gap: 14px;
    align-items: stretch;
    margin-top: 14px;
    padding: 18px 12px;
    border: 0;
    border-top: 5px solid var(--lime);
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    box-shadow: var(--mobile-shadow);
  }

  .cashback-banner > strong {
    text-align: center;
    font-size: 1.08rem;
  }

  .cashback-banner > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .cashback-banner > div span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9px 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }

  .cashback-banner > div span > img {
    width: 20px;
    height: 20px;
    margin: 0 0 5px;
  }

  .cashback-banner > div b {
    font-size: 0.68rem;
  }

  .cashback-banner > div small {
    margin-top: 3px;
    color: #cbd6e5;
    font-size: 0.53rem;
  }

  /* Flow */
  .section-flow {
    padding: 56px 0 58px;
  }

  .flow-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 28px;
    bottom: 28px;
    left: 33px;
    width: 4px;
    background: var(--lime);
  }

  .flow-card,
  .flow-card:last-child {
    z-index: 1;
    min-height: 0;
    grid-column: auto;
    grid-template-columns: 43px 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 3px 8px;
    padding: 13px 12px 13px 10px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(3, 26, 61, 0.09);
  }

  .flow-card > span {
    grid-row: 1 / -1;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 4px solid var(--lime);
    border-radius: 50%;
    color: #fff;
    background: var(--navy);
    font-size: 1.38rem;
    text-align: center;
    text-decoration: none;
  }

  .flow-number-glyph {
    display: block;
    transform: translateX(-0.12em);
  }

  .flow-card img {
    width: 54px;
    height: 54px;
    grid-row: 1 / -1;
    margin: 0;
  }

  .flow-card h3 {
    font-size: 0.88rem;
  }

  .flow-card p {
    margin-top: 2px;
    font-size: 0.64rem;
    line-height: 1.5;
  }

  .flow-note {
    margin-top: 16px;
    padding: 10px 12px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--navy);
    font-size: 0.76rem;
  }

  .flow-note img {
    width: 40px;
    height: 40px;
  }

  /* Area */
  .section-area {
    padding: 56px 0 60px;
  }

  .area-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .area-grid > div:first-child {
    display: contents;
    opacity: 1 !important;
    transform: none !important;
  }

  .area-grid > div:first-child > .eyebrow {
    order: 1;
    justify-content: center;
  }

  .area-grid h2 {
    order: 2;
    margin: 9px 0 12px;
    padding-bottom: 11px;
    border-bottom-width: 6px;
    text-align: center;
    font-size: clamp(2.5rem, 12.5vw, 3.25rem);
  }

  .area-lead {
    order: 3;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .area-visual {
    order: 4;
    min-height: 330px;
    margin-top: 8px;
  }

  .area-visual::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 44px;
    left: 44px;
    height: 250px;
    border-radius: 50%;
    background: #f1f8d1;
  }

  .area-map-wrap {
    top: 6px;
    right: 50%;
    width: 270px;
    height: 270px;
    transform: translateX(50%);
  }

  .area-map-wrap span {
    font-size: 0.56rem;
  }

  .area-map-wrap [data-prefecture="茨城県"] {
    right: auto;
    left: 63%;
  }

  .area-map-wrap [data-prefecture="千葉県"] {
    top: 53%;
    right: auto;
    bottom: auto;
    left: 64%;
  }

  .area-truck {
    right: 50%;
    bottom: -3px;
    width: 310px;
    height: 166px;
    max-width: 94%;
    border: 0;
    box-shadow: none;
    object-fit: contain;
    transform: translateX(50%);
  }

  .prefecture-list {
    order: 5;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }

  .prefecture-list span {
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 10px 4px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: var(--navy);
    font-size: 0.72rem;
  }

  .prefecture-list span:last-child {
    grid-column: 2;
  }

  .area-callout {
    order: 6;
    gap: 12px;
    margin-top: 10px;
    padding: 13px 14px;
    border: 0;
    border-left: 5px solid var(--lime);
    border-radius: 6px;
    color: #fff;
    background: var(--navy);
  }

  .area-callout-icon {
    width: clamp(60px, 16vw, 64px);
    height: clamp(60px, 16vw, 64px);
  }

  .area-callout p {
    font-size: 0.8rem;
  }

  .area-callout strong {
    font-size: 1rem;
  }

  .area-callout small {
    color: #d6e0ed;
    font-size: 0.63rem;
  }

  /* Results */
  .section-results {
    padding: 54px 0 0;
    color: #fff;
    background: var(--navy);
  }

  .result-photo {
    display: block;
    inset-block: 0 0;
    width: 50%;
    opacity: 0.14;
    background-position: center;
    background-size: cover;
  }

  .section-results .container-wide {
    position: relative;
    z-index: 2;
  }

  .section-results .section-heading h2,
  .section-results .section-heading .eyebrow,
  .section-results .section-heading .section-lead {
    color: #fff;
  }

  .section-results .section-heading {
    margin-bottom: 22px;
  }

  .section-results .section-heading .section-lead {
    font-size: 0.82rem;
  }

  .result-label {
    color: #fff;
    font-size: 0.98rem;
  }

  .result-number {
    position: relative;
    width: 100%;
    min-height: 116px;
    gap: 4px;
    margin-top: 2px;
    overflow: visible;
  }

  .result-number strong {
    z-index: 1;
    font-size: clamp(5rem, 25.5vw, 7rem);
    transform: none;
  }

  .result-value {
    z-index: 1;
    gap: clamp(3px, 1vw, 7px);
  }

  .result-number .result-unit {
    z-index: 1;
    color: #fff;
    font-size: clamp(1rem, 4.1vw, 1.35rem);
    line-height: 1;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    transform: none;
  }

  .result-laurel {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 118px;
    display: block;
    opacity: 0.48;
    transform: translateY(-50%);
  }

  .result-laurel-left {
    left: 0;
    transform: translateY(-50%) scaleX(-1);
  }

  .result-laurel-right {
    right: 0;
  }

  .result-copy {
    margin: 2px 0 20px;
    color: #fff;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .result-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.2);
  }

  .result-points div,
  .result-points div + div {
    min-height: clamp(208px, 51vw, 218px);
    padding: 18px 7px 16px;
    border: 0 !important;
    background: rgba(3, 26, 61, 0.86);
  }

  .result-points img {
    width: clamp(88px, 24vw, 100px);
    height: clamp(88px, 24vw, 100px);
    margin-bottom: 10px;
    object-fit: contain;
  }

  .result-points div:first-child img {
    transform: scale(1.12);
  }

  .result-points b {
    color: var(--lime);
    font-size: clamp(0.82rem, 3.55vw, 0.95rem);
    font-weight: 900;
    line-height: 1.3;
  }

  .result-points span {
    margin-top: 6px;
    color: #dbe4ef;
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .result-band {
    position: relative;
    z-index: 3;
    margin: 20px 0 0;
    padding: 16px 14px;
    border-top: 0;
    color: var(--navy);
    background: var(--lime);
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .result-band strong {
    color: inherit;
  }

  /* Cases */
  .section-cases {
    padding: 56px 0 54px;
  }

  .case-grid {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 87%;
    grid-template-columns: none;
    gap: 11px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 1px 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .case-grid::-webkit-scrollbar {
    display: none;
  }

  .case-card {
    scroll-snap-align: start;
    border: 0;
    border-radius: 9px;
    box-shadow: var(--mobile-shadow);
  }

  .case-number {
    padding: 8px 15px;
    border-radius: 0 0 12px;
    font-size: 1.35rem;
  }

  .case-card > img {
    height: 244px;
  }

  .case-body {
    padding: 14px;
  }

  .case-title {
    gap: 10px;
    padding-bottom: 9px;
    border-bottom-width: 4px;
  }

  .case-title img {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .case-title h3 {
    font-size: 1.02rem;
    text-align: center;
    white-space: nowrap;
  }

  .case-arrival {
    min-height: 60px;
  }

  .case-arrival img {
    width: 37px;
    height: 37px;
  }

  .case-arrival strong {
    font-size: 2.35rem;
  }

  .case-price {
    min-height: 70px;
  }

  .case-price strong {
    font-size: 2rem;
  }

  .case-swipe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
  }

  .case-swipe span {
    padding: 3px 7px;
    color: #fff;
    background: var(--navy);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  /* Contact */
  .section-contact {
    padding: 0 0 56px;
    background: #eef1f6;
  }

  .section-contact .container-wide {
    width: 100%;
  }

  .contact-heading {
    min-height: 0;
    display: block;
    margin: 0;
    padding: 48px 20px 126px;
    border-bottom: 6px solid var(--lime);
    color: #fff;
    background:
      linear-gradient(90deg, rgba(3, 26, 61, 0.98) 0%, rgba(3, 26, 61, 0.78) 100%),
      url("../generated/hero-roadservice-v4.webp") 67% 52% / auto 370px no-repeat;
    text-align: center;
    overflow: hidden;
  }

  .contact-heading > div:first-child {
    width: 100%;
  }

  .contact-heading .eyebrow {
    color: #fff;
  }

  .contact-heading h2 {
    max-width: 330px;
    margin: 10px auto 11px;
    color: #fff;
    font-size: clamp(2rem, 10.5vw, 2.65rem);
    line-height: 1.08;
    word-break: keep-all;
  }

  .contact-heading p:last-child {
    margin: 0;
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .contact-heading p:last-child small {
    color: #d7e0eb;
  }

  .contact-brand {
    display: none;
  }

  .contact-grid {
    width: calc(100% - (var(--mobile-gutter) * 2));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin: -92px auto 0;
  }

  .contact-grid > div:last-child {
    z-index: 3;
    order: -1;
  }

  .contact-form {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 22px 15px 18px;
    border: 0;
    border-top: 6px solid var(--lime);
    border-radius: 11px;
    box-shadow: 0 18px 38px rgba(3, 26, 61, 0.2);
  }

  .contact-form > h3 {
    display: block;
    margin: 0;
    padding-bottom: 10px;
    border-bottom-width: 3px;
    font-size: 1.2rem;
  }

  .contact-form > p {
    display: block;
    margin: 9px 0 15px;
    font-size: 0.7rem;
    line-height: 1.55;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .form-full {
    grid-column: auto;
  }

  .contact-form label {
    gap: 6px;
    font-size: 0.76rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 52px;
  }

  .contact-form textarea {
    min-height: 112px;
    max-height: 160px;
  }

  .contact-submit {
    min-height: 60px;
    margin-top: 17px;
    font-size: 0.92rem;
  }

  .contact-form-notes {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 12px;
  }

  .contact-form-notes span {
    justify-content: flex-start;
    font-size: 0.68rem;
  }

  .contact-form-notes img {
    width: 26px;
    height: 26px;
  }

  .contact-copy {
    padding: 0;
  }

  .contact-vehicle,
  .contact-truck {
    display: none;
  }

  .contact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    border: 0;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(3, 26, 61, 0.08);
    overflow: hidden;
  }

  .contact-stats div {
    min-height: 104px;
    justify-content: center;
    padding: 11px 7px;
  }

  .contact-stats div:nth-child(odd) {
    border-left: 0;
  }

  .contact-stats img {
    width: 42px;
    height: 42px;
  }

  .contact-stats strong {
    font-size: 0.82rem;
  }

  .contact-stats span {
    font-size: 0.62rem;
  }

  .contact-phone {
    width: min(100%, 620px);
    min-height: 112px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    margin: 12px auto 0;
    padding: 13px 11px 13px 9px;
    border: 3px solid var(--navy);
    border-top: 7px solid var(--lime);
    border-radius: 12px;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 12px 24px rgba(3, 26, 61, 0.18);
    touch-action: manipulation;
  }

  .contact-phone > img.contact-phone-trust {
    display: none;
  }

  .contact-phone > img.contact-phone-call {
    width: 52px;
    height: 52px;
    display: block;
    flex: 0 0 52px;
    object-fit: contain;
  }

  .contact-phone > span {
    min-width: 0;
    flex: 1;
    text-align: center;
  }

  .contact-phone span strong.contact-phone-mobile {
    width: fit-content;
    margin-inline: auto;
    padding: 3px 10px 4px;
    border-radius: 999px;
    color: #fff;
    background: var(--navy);
    font-size: clamp(0.74rem, 3.15vw, 0.9rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  .contact-phone-desktop {
    display: none !important;
  }

  .contact-phone .contact-phone-mobile {
    display: block;
  }

  .contact-phone-number {
    display: block;
    margin-top: 5px;
    color: var(--red);
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 0.94;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .contact-phone small {
    margin-top: 7px;
    color: var(--navy);
    font-size: clamp(0.61rem, 2.55vw, 0.72rem);
    font-weight: 900;
    line-height: 1.3;
  }

  .contact-phone:active {
    transform: translateY(1px);
    box-shadow: 0 7px 16px rgba(3, 26, 61, 0.18);
  }

  .contact-copy > p {
    margin: 10px 0 0 !important;
    text-align: center;
    font-size: 0.68rem !important;
    line-height: 1.6 !important;
  }

  /* FAQ */
  .section-faq {
    padding: 56px 0 58px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .faq-item {
    border: 0;
    border-radius: 7px;
    box-shadow: 0 7px 16px rgba(3, 26, 61, 0.09);
  }

  .faq-item button {
    min-height: 64px;
    gap: 10px;
    padding: 13px 12px;
    color: #fff;
    background: var(--navy);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .faq-item button span {
    gap: 8px;
  }

  .faq-item button b {
    color: var(--lime);
    font-size: 1.22rem;
  }

  .faq-item button small {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
  }

  .faq-item button small img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%);
  }

  .faq-answer {
    border-top: 4px solid var(--lime);
    background: #fff;
  }

  .faq-answer p {
    padding: 15px 13px 17px;
    color: var(--navy);
    font-size: 0.74rem;
    line-height: 1.7;
  }

  .faq-answer b {
    display: inline;
    flex: 0 0 auto;
  }

  .faq-more {
    margin-top: 12px;
  }

  .faq-more > summary {
    position: relative;
    min-height: 58px;
    padding: 10px 46px 10px 16px;
    border-bottom-width: 4px;
    font-size: 0.78rem;
  }

  .faq-more > summary img {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 18px;
    height: 18px;
    object-fit: contain;
    transform: translateY(-50%) rotate(90deg);
  }

  .faq-note {
    font-size: 0.65rem;
  }

  /* Footer */
  .site-footer {
    color: var(--navy);
    background: #fff;
  }

  .footer-company-inner {
    min-height: 0;
    padding: 40px 16px 0;
    background: #fff;
    text-align: center;
  }

  .footer-company-copy {
    width: 100%;
    height: auto;
  }

  .footer-company-copy .eyebrow {
    justify-content: center;
  }

  .footer-company-copy h2 {
    margin: 8px 0 16px;
    font-size: 1.85rem;
  }

  .footer-company-copy > img {
    width: 218px;
    margin: auto;
  }

  .footer-company-copy h3 {
    margin: 8px 0 0;
    font-size: 1.18rem;
  }

  .footer-company-copy > p {
    font-size: 0.68rem;
    line-height: 1.7;
  }

  .footer-company-copy > a {
    align-items: center;
    margin-top: 10px;
  }

  .footer-company-copy > a small {
    font-size: 0.65rem;
  }

  .footer-company-copy > a strong {
    font-size: clamp(2rem, 10.5vw, 2.65rem);
    line-height: 1.1;
  }

  .footer-services {
    margin-top: 9px !important;
  }

  .footer-truck {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 194px;
    margin-top: 8px;
    opacity: 1;
    object-fit: contain;
  }

  .footer-photo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 5px solid var(--lime);
  }

  .footer-photo-strip img,
  .footer-photo-strip img:last-child:nth-child(odd) {
    width: 100%;
    height: 78px;
    grid-column: auto;
  }

  .footer-cta {
    width: calc(100% - (var(--mobile-gutter) * 2));
    display: block;
    margin: 22px auto;
    padding: 20px 12px 14px;
    border-top: 5px solid var(--lime);
    border-radius: 9px;
    color: #fff;
    background: var(--navy);
    box-shadow: var(--mobile-shadow);
  }

  .footer-cta h2 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .footer-cta > .footer-cta-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px;
  }

  .footer-24 {
    color: #fff;
  }

  .footer-24 > img {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
  }

  .footer-24 small {
    font-size: 0.55rem;
  }

  .footer-cta-phone {
    gap: 6px;
    color: #fff;
  }

  .footer-tollfree {
    width: 40px;
    height: 25px;
    flex-basis: 40px;
  }

  .footer-cta-phone b {
    color: #fff;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .footer-cta-row .button {
    grid-column: 1 / -1;
    min-height: 58px;
    margin-top: 4px;
    font-size: 0.78rem;
  }

  .footer-main {
    display: none;
  }

  .footer-navy {
    color: #fff;
    background: var(--navy);
  }

  .footer-disclosures {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px var(--mobile-gutter) 10px;
  }

  .footer-disclosures details {
    border-radius: 5px;
  }

  .footer-disclosures summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.68rem;
  }

  .footer-disclosures p {
    font-size: 0.64rem;
  }

  .footer-bottom {
    min-height: 112px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 14px;
    padding: 16px 12px 20px;
    text-align: center;
    font-size: 0.62rem;
  }

  .footer-bottom small {
    width: 100%;
    margin: 0;
  }

  .footer-bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Fixed conversion bar */
  .mobile-cta {
    height: calc(78px + env(safe-area-inset-bottom));
    grid-template-columns: 0.96fr 1.04fr;
    grid-template-rows: minmax(0, 1fr);
    gap: 6px;
    padding: 6px 6px max(6px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 24px rgba(3, 26, 61, 0.2);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    min-width: 0;
    min-height: 0;
    height: 100%;
    flex-direction: row;
    gap: clamp(6px, 1.8vw, 10px);
    padding-inline: clamp(4px, 1vw, 8px);
    border-radius: 5px;
    background: var(--navy);
    overflow: hidden;
  }

  .mobile-cta a + a {
    margin-left: 0;
    background: var(--red);
  }

  .mobile-cta img {
    width: clamp(38px, 10vw, 48px);
    height: clamp(38px, 10vw, 48px);
    flex: 0 0 clamp(38px, 10vw, 48px);
    padding: 4px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
  }

  .mobile-cta a + a img {
    padding: 2px;
    background: transparent;
  }

  .mobile-cta span {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .mobile-cta small {
    font-size: clamp(0.62rem, 2.5vw, 0.75rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  .mobile-cta strong {
    margin-top: 2px;
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    line-height: 1.1;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .reason-copy-line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 359px) {
  :root {
    --mobile-gutter: 12px;
  }

  .brand img {
    width: 110px;
  }

  .hero {
    padding-top: 280px;
  }

  .hero-background,
  .hero::before {
    height: 316px;
  }

  .hero-copy {
    margin-top: -62px;
  }

  .hero-message {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 1.72rem;
  }

  .hero-benefit img {
    width: 34px;
    height: 34px;
  }

  .quick-fields {
    grid-template-columns: 1fr;
  }

  .service-photo {
    height: 100px;
  }

  .service-card-body {
    min-height: 108px;
  }

  .service-card h3 {
    font-size: 0.76rem;
  }

  .reason-card,
  .reason-card:nth-last-child(-n + 4) {
    min-height: 252px;
    padding-inline: 8px;
  }

  .reason-card h3 {
    font-size: 0.78rem;
  }

  .price-panels article,
  .price-panels article:nth-child(2) {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 9px;
    padding-inline: 9px;
  }

  .price-panels img,
  .price-panels article:nth-child(2) > img {
    width: 68px;
    height: 68px;
  }

  .price-panels strong b {
    font-size: 2.6rem;
  }

  .payment-grid h3 {
    font-size: 0.68rem;
  }

  .flow-card,
  .flow-card:last-child {
    grid-template-columns: 40px 50px minmax(0, 1fr);
    gap: 3px 6px;
    padding-inline: 8px;
  }

  .flow-card > span {
    width: 40px;
    height: 40px;
    font-size: 1.22rem;
  }

  .flow-card img {
    width: 48px;
    height: 48px;
  }

  .case-grid {
    grid-auto-columns: 91%;
  }

  .case-card > img {
    height: 224px;
  }

  .contact-heading {
    padding-inline: 16px;
  }

  .contact-heading h2 {
    font-size: 1.92rem;
  }

  .footer-cta-phone b {
    font-size: 1.75rem;
  }

  .mobile-cta {
    gap: 4px;
    padding-inline: 4px;
  }

  .mobile-cta a {
    gap: 5px;
  }

}

/* Final emergency CTA: authoritative mobile hierarchy. */
@media (max-width: 760px) {
  .footer-emergency-cta {
    width: calc(100% - (var(--mobile-gutter) * 2));
    max-width: 620px;
    display: block;
    margin: 22px auto;
    padding: 22px 14px 16px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-top: 6px solid var(--lime);
    border-radius: 16px;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 18px 38px rgba(3, 26, 61, .2), inset 0 0 0 1px rgba(255, 255, 255, .04);
  }

  .footer-emergency-cta h2 {
    margin: 0 0 15px;
    color: #fff;
    text-align: center;
    font-family: "Hiragino Sans W9", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: clamp(1.3rem, 6.4vw, 1.7rem);
    font-weight: 900;
    line-height: 1.32;
    letter-spacing: -.035em;
  }

  .footer-emergency-cta h2 span { display: block; }
  .footer-emergency-cta h2 span + span { margin-top: 2px; }
  .footer-emergency-cta h2 em { color: var(--lime); font-style: normal; }

  .footer-emergency-cta > .footer-cta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .footer-emergency-cta .footer-24 {
    width: 100%;
    min-height: 74px;
    display: grid;
    grid-template-columns: clamp(58px, 17vw, 68px) minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    justify-content: stretch;
    padding: 7px 13px;
    border: 1px solid rgba(203, 234, 10, .62);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
  }

  .footer-emergency-cta .footer-24-icon {
    width: clamp(58px, 17vw, 68px);
    height: clamp(58px, 17vw, 68px);
    object-fit: contain;
  }

  .footer-emergency-cta .footer-24-copy,
  .footer-emergency-cta .footer-phone-copy,
  .footer-emergency-cta .footer-estimate-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .footer-emergency-cta .footer-24-copy { align-items: flex-start; color: #fff; text-align: left; }
  .footer-emergency-cta .footer-24-copy strong { font-size: clamp(.92rem, 4vw, 1.08rem); line-height: 1.25; }
  .footer-emergency-cta .footer-24-copy small { margin-top: 3px; color: #dce6f2; font-size: clamp(.62rem, 2.6vw, .72rem); font-weight: 800; }

  .footer-emergency-cta .footer-cta-phone {
    width: 100%;
    min-height: 88px;
    display: grid;
    grid-template-columns: clamp(50px, 15vw, 60px) minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    justify-content: stretch;
    padding: 9px 10px;
    border: 3px solid var(--lime);
    border-radius: 12px;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  }

  .footer-emergency-cta .footer-phone-icon {
    width: clamp(50px, 15vw, 60px);
    height: clamp(50px, 15vw, 60px);
    object-fit: contain;
  }

  .footer-emergency-cta .footer-phone-copy { align-items: flex-start; color: var(--navy); }
  .footer-emergency-cta .footer-cta-phone small {
    display: block;
    margin: 0 0 1px;
    color: var(--navy);
    font-size: clamp(.62rem, 2.6vw, .72rem);
    font-weight: 900;
    line-height: 1.2;
  }

  .footer-emergency-cta .footer-cta-phone b {
    min-width: 0;
    margin: 0;
    color: var(--red);
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: clamp(1.9rem, 9.8vw, 2.55rem);
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
  }

  .footer-emergency-cta .footer-estimate-cta {
    width: 100%;
    min-height: 72px;
    display: grid;
    grid-template-columns: clamp(44px, 13vw, 52px) minmax(0, 1fr) 20px;
    gap: 9px;
    align-items: center;
    padding: 9px 13px 9px 10px;
    border-radius: 12px;
    color: #fff;
    text-align: left;
    background: var(--red);
    box-shadow: 0 12px 25px rgba(221, 2, 16, .28);
  }

  .footer-emergency-cta .footer-estimate-cta > img.footer-estimate-icon {
    width: clamp(44px, 13vw, 52px);
    height: clamp(44px, 13vw, 52px);
    flex: 0 0 clamp(44px, 13vw, 52px);
    object-fit: contain;
  }

  .footer-emergency-cta .footer-estimate-copy { align-items: flex-start; color: #fff; }
  .footer-emergency-cta .footer-estimate-copy small { color: #fff; font-size: clamp(.6rem, 2.5vw, .7rem); font-weight: 800; line-height: 1.2; }
  .footer-emergency-cta .footer-estimate-copy strong { margin-top: 2px; font-size: clamp(.88rem, 3.8vw, 1rem); line-height: 1.25; }
  .footer-emergency-cta .footer-estimate-arrow {
    width: 20px;
    height: 20px;
    margin: 0;
    object-fit: contain;
  }
}

@media (max-width: 359px) {
  .footer-emergency-cta { padding: 19px 10px 14px; }
  .footer-emergency-cta h2 { font-size: 1.23rem; }
  .footer-emergency-cta .footer-24 { grid-template-columns: 56px minmax(0, 1fr); padding-inline: 9px; }
  .footer-emergency-cta .footer-24-icon { width: 56px; height: 56px; }
  .footer-emergency-cta .footer-cta-phone { grid-template-columns: 48px minmax(0, 1fr); gap: 6px; padding-inline: 8px; }
  .footer-emergency-cta .footer-phone-icon { width: 48px; height: 48px; }
  .footer-emergency-cta .footer-cta-phone b { font-size: 1.9rem; }
  .footer-emergency-cta .footer-estimate-cta { grid-template-columns: 40px minmax(0, 1fr) 18px; gap: 7px; padding-inline: 8px; }
  .footer-emergency-cta .footer-estimate-cta > img.footer-estimate-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .footer-emergency-cta .footer-estimate-copy strong { font-size: .86rem; }
  .footer-emergency-cta .footer-estimate-copy small { font-size: .58rem; }
  .footer-emergency-cta .footer-estimate-arrow { width: 18px; height: 18px; }
}
