/* Accident Report Help — California
   Design tokens mirror the original Webflow build. */

:root {
  --black: #000;
  --white: #fff;
  --dark: #111418;
  --dark-2: #1f2937;
  --paragraph: #4e5255;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --shade-10: #e7e7e8;
  --shade-20: #cfd0d1;
  --shade-40: #a0a1a3;
  --shade-50: #88898b;
  --primary: #52db82;
  --primary-dark: #1aa47b;
  --primary-10: #edfcf2;
  --primary-20: #dffae8;
  --primary-30: #bbfbd1;
  --secondary: #fdc951;
  --red: #cc2f31;
  --red-dark: #7d1e1f;
  --blue: #3898ec;

  --font: "Atkinson Hyperlegible", Arial, sans-serif;
  --section-pad: 140px;
  --container: 80rem;
  --gutter: 2.5rem;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 3rem; font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.75rem; font-weight: 700; line-height: 1.4; }
h4 { font-size: 1.25rem; font-weight: 700; line-height: 1.4; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-medium { font-size: 1.125rem; line-height: 1.6; }
.text-small { font-size: .875rem; line-height: 1.5; }
.text-tiny { font-size: .75rem; }
.text-white .text-medium { opacity: .9; }

/* Buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 3rem; padding: .75rem 1.5rem;
  background: var(--red); color: var(--white);
  border: 2px solid var(--red); border-radius: 1000px;
  font-family: var(--font); font-size: 1.125rem; font-weight: 500; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s linear, border-color .2s linear, color .2s linear;
}
.button:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button.is-outline { background: transparent; border-color: var(--white); }
.button.is-outline:hover { background: var(--white); color: var(--dark-2); }
.button.is-nav-one, .button.is-nav-two { height: 2.5rem; padding-inline: 1rem; font-size: .875rem; }
.button.is-nav-one { background: transparent; border-color: var(--white); }
.button.is-nav-one:hover { background: var(--white); color: var(--dark-2); }
.call-icon { width: 16px; height: 16px; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: var(--dark-2); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); }
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 1rem; }
.logo { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 1.25rem; }
.nav-link { font-weight: 700; text-decoration: none; color: var(--white); }
.nav-link:hover { color: var(--primary); }
.menu-button { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer; }
.menu-button span { display: block; height: 3px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.section_hero { position: relative; background: var(--dark-2); overflow: hidden; padding-top: var(--section-pad); }
.hero_content { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: end; }
.hero_text { padding-bottom: var(--section-pad); }
.hero_text h1 { margin-bottom: 2rem; }
.hero_lead { font-size: 1.125rem; line-height: 1.6; opacity: .9; }
.hero_button-wrapper { margin-top: 2rem; }
.hero_stats { display: flex; flex-wrap: wrap; gap: 2.5rem 4rem; margin-top: 3.5rem; }
.hero_stat-number { font-size: 3.5rem; line-height: 1.2; font-weight: 400; }
.hero_image-block { align-self: end; }
.hero_image { width: 100%; object-fit: contain; }

/* Stats / promise */
.section_stats {
  position: relative; padding-block: var(--section-pad);
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark) 74%, transparent 74%);
}
.section-title-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 4rem; }
.stat_card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat_card {
  display: flex; flex-direction: column; gap: 2.5rem;
  background: var(--white); color: var(--black);
  border: 1px solid var(--primary); border-radius: 16px; padding: 47px 28px;
}
.stat_number { font-size: 1.125rem; font-weight: 700; color: var(--primary-dark); }
.stat_card h3 { margin-bottom: .75rem; font-size: 1.5rem; }

/* Feature */
.section_feature { padding-block: var(--section-pad) 80px; }
.feature_top { max-width: 52rem; margin-bottom: 4rem; }
.feature_top h2 { margin-bottom: 1.5rem; }
.feature_top .text-medium { color: var(--paragraph); }
.feature_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.feature_image-wrap { position: sticky; top: 110px; }
.feature_image { width: 100%; border-radius: 16px; object-fit: cover; }
.feature_cards { display: flex; flex-direction: column; gap: 1.5rem; }
.feature_card { display: flex; flex-direction: column; gap: 12px; padding: 24px; background: var(--white); border: 1px solid var(--shade-10); border-radius: 8px; }
.feature_card-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.feature_card h3 { font-size: 1.5rem; }
.feature_num { flex: none; font-size: 1.125rem; font-weight: 700; color: var(--primary-dark); }
.feature_card p { color: var(--paragraph); }

/* Two-column layouts */
.section_layout-2 { padding-block: var(--section-pad); overflow: hidden; }
.section_layout-2.is-dark { background: var(--dark-2); }
.section_layout-2.is-gray { background: var(--gray-100); }
.layout-2_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.layout-2_grid + .layout-2_grid { margin-top: 5rem; }
.layout-2_image { width: 100%; border-radius: 16px; object-fit: cover; }
.layout-2_content h2 { margin-bottom: 1.5rem; }
.layout-2_content h3 { margin-bottom: 1rem; }
.layout-2_content p + ul, .layout-2_content ul + p { margin-top: 1.25rem; }
.layout-2_content .button { margin-top: 2rem; }
.is-gray .layout-2_content p { color: var(--paragraph); }
.legal_top { max-width: 56rem; margin-bottom: 4rem; }
.legal_top h2 { margin-bottom: 1.5rem; }
.legal_top p { color: var(--paragraph); }
.legal_top p + p { margin-top: 1rem; }

.check-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.check-list li { display: flex; align-items: center; gap: .875rem; }
.check-list li::before {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111418' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.check-list h3 { font-size: 1.25rem; }
.bullet-list { display: flex; flex-direction: column; gap: .625rem; }
.bullet-list li { position: relative; padding-left: 1.5rem; color: var(--paragraph); }
.bullet-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--primary-dark); }

/* Pricing */
.section_layout-3 { padding-block: var(--section-pad); }
.section_layout-3 h2 { margin-bottom: 4rem; }
.layout-3_grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.layout-3_image { width: 100%; border-radius: 16px; object-fit: cover; }
.layout-3_intro { margin-bottom: 2rem; }
.layout-3_intro h3 { margin-bottom: 1rem; }
.layout-3_intro p { color: var(--paragraph); }
.layout-3_cards { display: grid; gap: 1rem; }
.layout-3_card { padding: 1.5rem; background: var(--primary-10); border: 1px solid var(--primary-30); border-radius: 12px; }
.layout-3_card h3 { font-size: 1.375rem; margin-bottom: .5rem; }
.layout-3_card p { color: var(--paragraph); }

/* Process */
.section_process {
  position: relative; padding-block: var(--section-pad); overflow: hidden;
  background: var(--gray-50) url("../assets/img/process-bg.png") center / cover no-repeat;
}
.section-title-center { max-width: 52rem; margin: 0 auto 4rem; text-align: center; }
.section-title-center h2 { margin-bottom: 1.5rem; }
.section-title-center .text-medium { color: var(--paragraph); }
.process_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process_card { padding: 2rem; background: var(--white); border: 1px solid var(--shade-10); border-radius: 16px; }
.process_num { font-size: 1.125rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1.25rem; }
.process_card h3 { font-size: 1.375rem; margin-bottom: .75rem; }
.process_card p:last-child { color: var(--paragraph); }

/* Updates */
.section_layout-4 { padding-block: var(--section-pad); }
.layout-4_cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.layout-4_card { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; background: var(--gray-100); border-radius: 16px; overflow: hidden; }
.layout-4_card-text { padding: 2rem 2rem 0; }
.layout-4_card h3 { font-size: 1.375rem; margin-bottom: .75rem; }
.layout-4_card p { color: var(--paragraph); }
.layout-4_tag { display: inline-block; margin-top: 1rem; padding: .375rem .875rem; background: var(--primary-20); color: var(--dark) !important; border-radius: 1000px; font-size: .875rem; font-weight: 700; }
.layout-4_card-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.layout-4_bottom-card { background: var(--dark-2); color: var(--white); border-radius: 16px; padding: 2.5rem; }
.layout-4_bottom-head { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.layout-4_bottom-image { width: 180px; border-radius: 12px; }
.layout-4_bottom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.layout-4_item h4 { margin-bottom: .5rem; color: var(--primary); }
.layout-4_item p { opacity: .85; }

/* Testimonials */
.section_testimonial { padding-block: var(--section-pad); overflow: hidden; }
.section_testimonial h2 { margin-bottom: 4rem; }
.marquee { overflow: hidden; }
.marquee_track { display: flex; gap: 1.5rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee_track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial_card { width: 24rem; padding: 2rem; background: var(--white); border: 1px solid var(--shade-10); border-radius: 16px; display: flex; flex-direction: column; gap: 1rem; }
.stars { width: 120px; }
.testimonial_card p { color: var(--paragraph); }
.testimonial_name { font-weight: 700; color: var(--black) !important; margin-top: auto; }
@media (prefers-reduced-motion: reduce) { .marquee_track { animation: none; flex-wrap: wrap; width: auto; } }

/* CTA */
.section_cta { background: var(--dark-2); padding-block: var(--section-pad); overflow: hidden; }
.cta_grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.cta_content h2 { margin-bottom: 1.5rem; }
.cta_buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.cta_image { width: 100%; border-radius: 16px; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding-block: 80px 32px; }
.footer_top { display: grid; grid-template-columns: 1.4fr 1.4fr 1fr .8fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer_brand .logo { height: 44px; margin-bottom: 1.5rem; }
.footer_heading { font-size: 1.125rem; margin-bottom: .75rem; }
.footer_brand .text-small { opacity: .8; }
.footer_title { font-size: 1rem; margin-bottom: 1rem; color: var(--primary); }
.footer_title + .footer_link + .footer_title, .footer_text + .footer_title { margin-top: 1.5rem; }
.footer_cities { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; }
.footer_link { display: block; text-decoration: none; opacity: .85; padding-block: .125rem; }
.footer_link:hover { opacity: 1; text-decoration: underline; }
.footer_text { opacity: .85; line-height: 1.6; }
.footer_copyright { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; opacity: .8; }
.footer_copyright-links { display: flex; align-items: center; gap: .75rem; font-size: .75rem; }
.copyright-link { text-decoration: none; }
.copyright-link:hover { text-decoration: underline; }
.copyright-divider { width: 1px; height: 12px; background: currentColor; }

/* Modal */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal_backdrop { position: absolute; inset: 0; background: rgba(17,20,24,.7); }
.modal_content { position: relative; width: 100%; max-width: 48rem; max-height: 85vh; overflow-y: auto; background: var(--gray-100); border-radius: 2rem; padding: 2.5rem; }
.modal_close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; display: grid; place-items: center; background: none; border: 0; cursor: pointer; color: var(--dark-2); }
.modal_title { font-size: 1.75rem; text-align: center; margin-bottom: 1.5rem; }
.modal_form { display: flex; flex-direction: column; gap: 1rem; }
.form_section-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--shade-50); margin-top: .5rem; }
.form_field { display: flex; flex-direction: column; gap: .5rem; }
.form_label { font-weight: 700; font-size: .9375rem; }
.form_2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form_radio-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form_radio { display: flex; align-items: center; gap: .625rem; padding: .75rem 1rem; background: var(--white); border: 1px solid var(--shade-20); border-radius: 8px; cursor: pointer; }
.form_radio:has(input:checked) { border-color: var(--primary-dark); background: var(--primary-10); }
.form_radio input { accent-color: var(--primary-dark); margin: 0; }
.form_input { width: 100%; min-height: 3rem; padding: .75rem 1rem; font: inherit; color: var(--black); background: var(--white); border: 1px solid var(--shade-20); border-radius: 8px; }
.form_input:focus { outline: 2px solid var(--primary-dark); outline-offset: 0; border-color: var(--primary-dark); }
.form_input.is-textarea { min-height: 7rem; resize: vertical; }
.form_select-wrap select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111418' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .875rem center; background-size: 18px; padding-right: 2.5rem; }
.form_submit { margin-top: .5rem; width: 100%; }
.form_success { padding: 1rem; background: var(--primary-20); border-radius: 8px; text-align: center; font-weight: 700; }
.form_error { padding: 1rem; background: #fde8e8; color: var(--red-dark); border-radius: 8px; text-align: center; }
body.modal-open { overflow: hidden; }

/* Responsive */
@media (max-width: 991px) {
  :root { --section-pad: 80px; --gutter: 2rem; }
  h1 { font-size: 2.875rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
  .hero_stat-number { font-size: 2.875rem; }
  .hero_content, .section-title-row, .feature_grid, .layout-2_grid, .layout-3_grid, .cta_grid { grid-template-columns: 1fr; }
  .layout-2_grid.is-reverse .layout-2_content { order: 2; }
  .hero_text { padding-bottom: 3rem; }
  .feature_image-wrap { position: static; }
  .stat_card-row, .process_grid, .layout-4_cards, .layout-4_bottom-grid { grid-template-columns: 1fr 1fr; }
  .footer_top { grid-template-columns: 1fr 1fr; }
  .nav-menu {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; padding: 1.25rem var(--gutter) 1.5rem;
    background: var(--dark-2); border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu .button { justify-content: center; }
  .menu-button { display: flex; }
}
@media (max-width: 767px) {
  :root { --section-pad: 60px; --gutter: 1.25rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero_stat-number { font-size: 2.5rem; }
  .hero_stats { gap: 1.5rem 2.5rem; }
  .stat_card-row, .process_grid, .layout-4_cards, .layout-4_bottom-grid, .footer_top, .form_2col { grid-template-columns: 1fr; }
  .stat_card { padding: 32px 24px; }
  .layout-4_bottom-head { flex-direction: column; align-items: flex-start; }
  .layout-4_bottom-card { padding: 1.5rem; }
  .testimonial_card { width: 18rem; }
  .modal_content { padding: 3rem 1.25rem 1.5rem; border-radius: 1.25rem; }
  .footer_copyright { flex-direction: column; }
}
@media (max-width: 479px) {
  :root { --section-pad: 40px; --gutter: 1rem; }
  .logo { height: 40px; }
  .button.is-nav-one, .button.is-nav-two { font-size: .75rem; padding-inline: .75rem; }
}
