/*  Big Love Insurance - CSS  */

:root {
  --red: #c62828;
  --black: #000000;
  --white: #ffffff;
  --gray: #fafafa;

  --text: #111;
  --muted: #666;
  --border: #e6e6e6;

  --container: 1100px;
  --radius: 10px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  --font: 'MainFont', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.top-accent {
  height: 4px;
  background: var(--red);
}

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'MainFont';
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MainFont';
  src: url('../fonts/Helvetica-light.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BrandFont';
  src: url('../fonts/modica-semibold.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reusable card box ---------- */
.card-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: none;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.brand .name {
  font-family: 'BrandFont', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 18px;
  font-size: 15px;

  flex: 1 1 auto;
  /* nav consumes the flexible middle space */
  min-width: 0;
  /* prevents weird overflow/wrap behavior */
  padding-left: 0;
}


.nav a {
  color: #222;
}

.nav a.active {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* stacked call/text */
.phone-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  /* stays clean on desktop */
}

.phone-call {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.phone-text2 {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  line-height: 1.15;
}

/* keep icon hidden on desktop, shown on mobile */
.phone-icon-link {
  display: none;
}

/* Mobile phone dropdown (Call/Text) */
.phone-menu {
  position: relative;
  display: none;
  /* enabled in mobile breakpoint */
}

.phone-trigger {
  border: 0;
  background: transparent;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.phone-trigger:hover {
  background: rgba(0, 0, 0, 0.04);
}

.phone-trigger:focus-visible {
  outline: 2px solid rgba(198, 40, 40, 0.35);
  outline-offset: 2px;
}

.phone-trigger .phone-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
}

.phone-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #111;
  opacity: 0.7;
  margin-top: 2px;
}

.phone-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 235px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 2000;
}

.phone-dd-item {
  display: block;
  padding: 14px 14px;
  font-size: 15px;
  text-align: center;
  color: #111;
}

.phone-dd-item:hover {
  background: rgba(198, 40, 40, 0.08);
  text-decoration: none;
}


.divider {
  width: 1px;
  height: 18px;
  background: #cfcfcf;
  margin-right: 16px;
}

/* Header left cluster (Menu + Brand) */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Phone link alignment */
.phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

/* Default: hide icons */
.menu-icon,
.phone-icon {
  display: none;
}

/* nav button */
.nav-toggle {
  display: none;
  border: 0px solid #ddd;
  background: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

/* nav panel */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--gray);
}

.mobile-nav-inner {
  padding: 12px 0 18px 0;
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 10px;
}

.mobile-nav a:hover {
  background: rgba(198, 40, 40, 0.08);
  text-decoration: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 25px !important;
  padding: 12px 58px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none !important;
}

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

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline:hover {
  background: rgba(198, 40, 40, 0.08);
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 620px;
  background: #111;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    url("../images/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 70px 0;
  padding-top: 375px;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -1px;
}

.hero p {
  margin: 5px 0 22px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}



/* ---------- Feature strip ---------- */

.feature-dup {
  display: none;
}

/* Desktop: keep feature strip spaced in 3 columns */

.feature-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-strip {
  background: var(--black);
  color: var(--white);
}

.feature-strip .container {
  display: block;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0);
  font-weight: 420;
  font-size: 18px;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

/* ---------- Coverage Plans ---------- */

.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
  /* creates breathing room */
}


.section {
  padding: 80px 0;
  padding-bottom: 125px;
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

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

.section-title p {
  margin: 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px 60px;
  align-items: stretch;
}

.card {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  flex: 0 0 auto;
  border-radius: 10px;
}

.card h3 {
  margin: 10px 0 8px 0;
  color: var(--red);
  font-size: 20px;
  flex: 0 0 auto;
}

.card p {
  margin: 0 0 14px 0;
  color: #333;
  line-height: 1.5;
  font-size: 14px;
  flex: 1 1 auto;
}

.card .btn {
  width: 100%;
  padding: 12px 14px;
  margin-top: auto;
}


/* ---------- Reviews ---------- */
.reviews {
  padding: 64px 0;
  background: #f7f9fb;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.reviews-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.reviews-header p {
  color: #6b7280;
}

/* Viewport */
.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track that moves */
.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollReviews 60s linear infinite;
}

/* Pause on hover */
.reviews-viewport:hover .reviews-track {
  animation-play-state: paused;
}

/* Cards */
.review-card {
  width: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, .08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.stars {
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 14px;
}

.source-badge img {
  width: 18px;
  height: 18px;
  opacity: .85;
}

.review-title {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0;
}

.review-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.45;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
}

.review-loc {
  font-weight: 400;
  color: #6b7280;
  font-size: 13px;
  padding-left: 5px;
}

.review-date {
  font-size: 12px;
  color: #9ca3af;
}

/* Animation */
@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- FAQ band ---------- */
.faq-band {
  background: var(--black);
  color: var(--white);
  padding: 70px 0;
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-row {
  display: grid;
  gap: 0px;
  align-items: start;
}

.faq-item {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q span {
  opacity: 0.75;
  font-weight: 900;
}

.faq-a {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  font-size: 14px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 34px 0;
  align-items: start;
}

.locations h4 {
  margin: 0 0 16px 0;
  font-size: 24px;
  letter-spacing: 0.2px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}

.location-name {
  color: var(--red);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: .2px;
}

.location-block p {
  margin: 0;
  line-height: 1.5;
  font-size: 13px;
  color: #222;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* bottom */
  align-items: flex-end;
  /* right */
  height: 100%;
}

.footer-links .social {
  margin-top: auto;
  margin-bottom: 0;
}

.social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.social a:hover {
  background: #f3f3f3;
  text-decoration: none;
}

.quick-links a {
  display: block;
  font-size: 13px;
  color: #222;
  padding: 3px 0;
}

/* ---------- Subpage Layout ---------- */
.page {
  background: var(--gray);
}

.page-content {
  background: var(--gray);
  padding: 65px 0 80px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.page h1 {
  margin: 0 0 5px 0;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
}

.page .subtitle {
  margin: 0 0 30px 0;
  font-weight: 50;
  color: #222;
}

.page .body-copy {
  color: #222;
  line-height: 1.7;
  font-size: 14px;
}

.page .cta-row {
  margin-top: 34px;
  margin-bottom: 34px;
}

.page-image {
  max-width: auto;
  margin-left: 0;
}

.page-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- DMV page ---------- */
.dmv-card {
  padding: 46px 56px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dmv-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.dmv-title {
  text-align: center;
  margin-bottom: 18px;
}

.dmv-title h1 {
  margin: 0;
}


.dmv-title p {
  margin: 10px 0 0 0;
  font-weight: 400;
  color: #333;
  font-size: 15px;
}

.specialties-head {
  max-width: 720px;
  margin: 1 auto 18px auto;
  /* invalid value, kept to preserve behavior */
}

.specialties-head h2 {
  margin: 0 0 10px 0;
  font-size: 32px;
}

.specialties-head p {
  margin: 0;
  color: #333;
  font-size: 14px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 18px;
}

.specialty-list {
  display: grid;
  gap: 0px;
  padding: 10px 0;
}

.specialty {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 5px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}



.specialty .label {
  font-size: 13px;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
}

.specialty .desc {
  font-size: 13px;
  line-height: 2;
  color: #333;
}

.dmv-side img {
  width: 100%;
  height: auto;
  display: block;
}

.dmv-cta {
  margin-top: 10px;
  text-align: left;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr;
  gap: 26px;
  align-items: start;
  padding-bottom: 75px;
}


.dmv-title {
  padding-top: 35px;
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

/* Contact page: pull title closer to header */
.page-content .dmv-title {
  margin-top: -20px;
}

label {
  font-size: 13px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font: inherit;
}

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

.small-note {
  color: var(--muted);
  font-size: 12px;
  padding-bottom: 20px;
}

/* Consent checkbox block */
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.consent-text label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
}

.consent-copy {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.contact-cta {
  margin-top: 18px;
  text-align: left;
}


/* ------------ INFO PAGE -------------*/

.contact-page.section {
  padding: 80px 0 125px;
  background: var(--white);
}



/* Card shell like “Our Specialties” */
.contact-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 46px 56px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  max-width: 800px;
  margin: 0 auto;
  align-items: start;

}

/* Title + intro */
.contact-card h2 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  color: #111;

}

.contact-card .subtext {
  margin: 0 0 26px 0;
  color: #555;
  line-height: 1.55;
  font-size: 14px;

}

/* Rows */
.contact-rows {
  margin-top: 10px;
  border-top: 1px solid #ececec;
}

.contact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 21px 0;
  border-bottom: 1px solid #ececec;
}

.contact-label {
  font-weight: 700;
  color: #111;
  font-size: 14px;
  line-height: 1.2;
}

.contact-content {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.contact-links div {
  margin-top: 2px;
}

.contact-content a {
  color: #111;
  text-decoration: none;
}

.contact-content a:hover {
  text-decoration: underline;
}

.contact-cta {
  display: flex;
  justify-content: flex-start;
  padding-top: 26px;
}


/* Responsive */
@media (max-width: 900px) {
  .contact-card {
    padding: 36px 24px 30px;
  }

  .contact-card h2 {
    text-align: center;
  }

  .contact-card p {
    text-align: center;
  }


  .contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-cta {
    justify-content: stretch;
  }

  .btn.btn-primary {
    width: 100%;
    text-align: center;
  }
}



/* ---------- Subpage ---------- */
.auto-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 52px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page .body-copy h2 {
  margin: 22px 0 10px 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.auto-divider {
  border: 0;
  height: 1px;
  background: #ececec;
  margin: 22px 0;
}

.callout {
  background: rgba(198, 40, 40, 0.06);
  border: 1px solid rgba(198, 40, 40, 0.18);
  border-radius: 12px;
  padding: 14px 14px;
  margin: 18px 0;
}

.auto-list,
.auto-checks {
  margin: 10px 0 16px 0;
  padding-left: 18px;
  line-height: 1.8;
  font-size: 14px;
}

.auto-checks {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.auto-checks li {
  position: relative;
  padding-left: 22px;
}

.auto-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.auto-aside-card {
  margin-top: 18px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 16px;
}

.auto-aside-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.auto-aside-text {
  font-size: 13px;
  color: #222;
  line-height: 1.55;
}

.auto-aside-text a {
  text-decoration: underline;
  text-decoration-color: rgba(198, 40, 40, 0.35);
}

.auto-aside-cta {
  margin-top: 12px;
}

.page-title {
  margin-bottom: 34px;
}

.page-title h1 {
  max-width: 900px;
  font-size: 40px;
}

.page-title .subtitle {
  max-width: 720px;
  text-align: left;
}





/* ---------- MOBILE CSS ---------- */
@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dmv-side {
    max-width: 360px;
  }
}

@media (max-width: 760px) {

  .header-inner {
    gap: 10px;
  }

  .nav {
    display: none;
  }

  .divider {
    display: none;
  }

  .nav-toggle {
    flex: 0 0 auto;
    /* do not shrink */
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: red;
  }

  .feature-dup {
    display: contents;
  }

  .btn {
    width: 100%;
    align-self: center;
  }

  .brand {
    align-items: center;
    padding-left: 5px;
  }

  .brand .name {
    font-size: .9rem;
    letter-spacing: 0.03em;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .feature-strip .container {
    grid-template-columns: 1fr;
  }

  .reviews h2 {
    font-size: 26px;
    padding-inline: 5px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    padding-inline: 35px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .page-image {
    margin: 0;
    max-width: 520px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .location-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .quick-links {
    display: none;
  }

  .faq-row {
    grid-template-columns: 1fr;
  }

  .faq-tag {
    margin-bottom: 6px;
  }

  /* Menu: icon only */
  .menu-text {
    display: none;
  }

  .menu-icon {
    width: 24px;
    height: 24px;
    max-width: none;
    /* overrides img { max-width:100% } behavior */
    flex: 0 0 24px;
    display: block;
  }

  /* Phone: icon only (keep phone visible) */
  .phone-text {
    display: none;
  }

  .phone-stack {
    display: none;
  }

  .phone-menu {
    display: inline-flex;
    align-items: center;
  }

  .phone-icon {
    max-width: none;
    /* overrides img { max-width:100% } behavior */
    flex: 0 0 24px;
    display: block;
    align-items: center;
  }

  .hero h1 {
    font-size: 28px;
    font-weight: 600;
  }

  .hero p {
    font-size: 16px;
  }

  .page-content {
    padding: 45px 0 90px 0;
  }

  .feature-strip {
    padding: 0;
  }

  .feature-marquee {
    overflow: hidden;
    padding: 12px 0;
  }

  .feature-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: marquee 18s linear infinite;
  }

  .feature-item {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 0;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
  }

  .feature-icon {
    width: 18px;
    height: 18px;
    opacity: 0.95;
  }

  .specialties-head {
    text-align: center;
  }


  .auto-shell {
    padding: 28px 22px;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .feature-track {
      animation: none;
    }
  }
}




@media (max-width: 420px) {
  .brand .name {
    font-size: 14px;
  }

  .phone {
    font-size: 14px;
  }
}