:root{
  --bg:#f5f7fa;
  --white:#ffffff;
  --ink:#1b2430;
  --muted:#6b7785;
  --line:#dce5ef;
  --brand:#0f2d52;
  --brand-soft:#eef4ff;
  --cta:#ff7a18;
  --radius:16px;
  --shadow:0 14px 40px rgba(15,30,55,.08);
  --max:1120px;
  --font:system-ui,-apple-system,Segoe UI,Roboto,Arial;
}


*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--ink);
}
a{text-decoration:none;color:inherit}
.wrap{
  width:min(var(--max),calc(100% - 32px));
  margin:0 auto;
}

.topstrip{
  background:var(--white);
  border-bottom:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}
.top-row{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
}

header{
  position:sticky;
  top:0;
  background:var(--white);
  border-bottom:1px solid var(--line);
  z-index:1000;
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}
.logo-wordmark{
  display:flex;
  align-items:center;
  gap:8px;
}
.brand-name{
  font-weight:800;
  font-size:18px;
}
.brand-dot{
  width:6px;
  height:6px;
  background:var(--brand);
  border-radius:50%;
}
.nav-links a{
  margin:0 10px;
  color:var(--muted);
  font-size:14px;
}
.header-phone{
  font-weight:700;
  color:var(--brand);
}

.hero{padding:56px 0}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:start;
}
.hero-label{
  background:var(--brand-soft);
  color:var(--brand);
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}
.hero-text h1{
  margin:14px 0 6px;
  font-size:36px;
}
.geo-line{
  color:var(--muted);
}
.hero-points{
  list-style:none;
  padding:0;
  display:flex;
  gap:12px;
}
.hero-points li{
  background:var(--white);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:10px;
  font-size:13px;
}

.hero-cta{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
  text-align:center;
}
.cta-micro{
  margin:6px 0 4px;
  font-size:12px;
  color:var(--muted);
}
.cta-phone{
  display:block;
  margin:12px 0;
  background:var(--cta);
  color:#fff;
  padding:14px;
  font-size:22px;
  font-weight:800;
  border-radius:10px;
}
.cta-note{font-size:12px;color:var(--muted)}

.call-intent{
  margin: 12px auto 24px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.section{
padding:56px 0;
background:#f6f9f9;
}
.section-alt{background:#dde8e7}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.service-image{
  height:180px;
}
.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-body{padding:20px}

.insurance-brands{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0;
}
.insurance-brands span{
  background:var(--white);
  border:1px solid var(--line);
  padding:8px 14px;
  font-size:13px;
  border-radius:6px;
}

.insurance-callout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.insurance-callout-image img{
  width:100%;
  border-radius:var(--radius);
}
.callout-btn{
  display:inline-block;
  margin-top:14px;
  background:var(--cta);
  color:#fff;
  padding:12px 18px;
  border-radius:8px;
  font-weight:700;
}

.states-list{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px 18px;
  margin-top:18px;
}
.states-list span{
  font-size:14px;
  white-space:nowrap;
}

.section-difference{background:#edf3fa}
.difference-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.difference-card{
  background:var(--white);
  border:1px solid var(--line);
  padding:20px;
  border-radius:var(--radius);
}
.difference-extra{
  margin-top:20px;
  color:var(--muted);
}

.site-footer{
  background:#1f2933;
  color:#cbd5e1;
}
.footer-cta{
  text-align:center;
  padding:36px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-cta p{
  margin:0;
  font-size:28px;
  font-weight:800;
  color:#fff;
}
.footer-cta a{color:var(--cta)}
.footer-content{padding:40px 0 32px}
.footer-logo .brand-name{color:#fff}
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px 22px;
  margin:24px 0;
}
.footer-nav a{font-size:14px;color:#e5e7eb}
.footer-disclaimer{
  max-width:960px;
  margin:0 auto 24px;
  font-size:12px;
  line-height:1.6;
  color:#94a3b8;
}
.footer-bottom{
  text-align:center;
  font-size:12px;
  color:#64748b;
}
.footer-identity {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12); 
  font-size: 0.95em;
  opacity: 0.95;
}

.footer-identity a {
  text-decoration: underline;
}
/* Mobile */
.mobile-call{display:none !important}
@media(max-width:900px){
  .hero-grid,
  .service-grid,
  .insurance-callout,
  .difference-grid{
    grid-template-columns:1fr;
  }
  .states-list{
    grid-template-columns:repeat(2,1fr);
  }
  .nav-links{display:none}
}
@media(max-width:768px){
  .mobile-call{
    display:block !important;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:var(--cta);
    color:#fff;
    text-align:center;
    padding:16px;
    font-weight:800;
    z-index:2000;
  }
}
@media (max-width: 768px){
  .mobile-call{
    background:#e24d36 !important;
    color:#fff !important;
    border:1px solid #e24d36 !important;
  }

  .mobile-call:hover,
  .mobile-call:active{
    background:#cb412d !important;
    color:#fff !important;
    border-color:#cb412d !important;
  }
}
/* CONTACT FORM */
.contact-form {
  max-width: 520px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.contact-form span {
  font-weight: 500;
  display: inline-block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #9fb6d9;
  box-shadow: 0 0 0 2px rgba(80,120,200,0.08);
}

.contact-form button {
  margin-top: 6px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  background: #2f5bd5;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}

.contact-form button:hover {
  background: #274fc0;
}

.contact-form button:active {
  transform: translateY(1px);
}

.contact-form + p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.contact-form {
  margin: 0 auto;
}

.insurance-callout {
  justify-content: center;
}

.insurance-callout-text {
  max-width: 640px;
}
/* Social proof blocks */


.proof-inline { padding: 18px 0; }
.proof-box {
  border-left: 4px solid rgba(0,0,0,0.08);
  padding-left: 14px;
}

.proof-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-kicker {
  font-weight: 600;
}


.proof-mini {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: #444;
  font-size: 0.95em;
}


.proof-points {
  margin-top: 12px;
}

.proof-points li {
  font-size: 0.95em;
}

@media (max-width: 640px) {
  .proof-row { flex-direction: column; align-items: flex-start; }
  .proof-kicker { white-space: normal; }
}

.proof-kicker{
  color:#194b45;
}

.proof-text{
  color:#4f5b57;
}
.emergency-cta .cta-phone{
  display:inline-flex !important;
  flex:0 0 auto !important;
  width:auto !important;
  white-space:nowrap !important;
  font-size:19px;
  padding:13px 20px;
  letter-spacing:.2px;
}
.hero-cta .cta-phone{ font-size:20px; padding:13px 14px; }
.emergency-cta .cta-phone{ font-size:20px; padding:13px 20px; }

@media (max-width:768px){
  .emergency-cta .cta-inline{ justify-content:center; }
}
/* Slightly more premium CTA sizing */
.hero-cta .cta-phone{ 
  font-size:19px; 
  padding:13px 14px; 
  letter-spacing:.2px;
}

.emergency-cta .cta-phone{ 
  font-size:19px; 
  padding:13px 20px; 
  letter-spacing:.2px;
}
.emergency-cta .cta-inline{
  display:flex;
  justify-content:flex-start; /* left */
}

.emergency-cta{
  background:#fff;
}

.emergency-cta-box{
  background:#fff8f2;
  border:1px solid rgba(255,115,0,.15);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}




/* ===== HERO WITH BACKGROUND IMAGE ===== */

.hero-bg {
  position: relative;
  background: url('/assets/images/dsrielrepair.webp') center center / cover no-repeat;
  padding: 90px 0;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-bg .wrap {
  position: relative;
  z-index: 2;
}

/* Make text white */
.hero-bg .geo-line,
.hero-bg .hero-text p {
  color: rgba(255,255,255,0.92);
}

/* Hero label adjustment */
.hero-bg .hero-label {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Points styling */
.hero-bg .hero-points li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.cta-phone{
  box-shadow: 0 8px 24px rgba(255, 115, 0, 0.35);
  transform: translateY(0);
  transition: all .2s ease;
}

.cta-phone:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 115, 0, 0.45);
}

/* Slight shadow for readability */
.hero-bg h1 {
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

/* Keep CTA bright */
.hero-bg .hero-cta {
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}

.proof-inline{
  padding:40px 0;
}
.proof-box{
  border-left:4px solid var(--brand);
}
.nav-links a.active{
  color: var(--brand);
  font-weight: 600;
}

.hero.hero-bg{ position: relative; }
.hero.hero-bg .hero-overlay{
  background: linear-gradient(90deg,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.55) 45%,
    rgba(0,0,0,.45) 100%
  );
}


.hero.hero-bg .hero-cta{
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}

.cta-phone,
.callout-btn{
  box-shadow: 0 10px 26px rgba(255,122,24,.22);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.cta-phone:hover,
.callout-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255,122,24,.30);
}
.cta-phone:active,
.callout-btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(255,122,24,.22);
}

.service-card,
.difference-card{
  box-shadow: 0 10px 28px rgba(15,30,55,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover,
.difference-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15,30,55,.10);
}

/* =========================
   HOMEPAGE V2
   ========================= */
.home-hero-v2{
  background:#194b45;
  padding:16px 0 0;
}

.home-hero-v2__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 460px;
  gap:40px;
  align-items:stretch;
}

.home-hero-v2__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px 0 30px;
  text-align:left;
}

.home-hero-v2__eyebrow{
  display:inline-block;
  width:fit-content;
  position:relative;
  padding:7px 12px 7px 18px;
  color:#eef1ea;
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  border-radius:6px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}

.home-hero-v2__eyebrow::before{
  content:"";
  position:absolute;
  left:8px;
  top:50%;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#e24d36;
  transform:translateY(-50%);
}

.home-hero-v2 h1{
  max-width:560px;
  margin:16px 0 12px;
  color:#eef1ea;
  font-size:44px;
  line-height:1.04;
  letter-spacing:-0.03em;
  font-weight:800;
  text-align:left;
}

.home-hero-v2__text{
  max-width:520px;
  margin:0;
  color:rgba(238,241,234,.90);
  font-size:15px;
  line-height:1.55;
  text-align:left;
}

.home-hero-v2__text--compact{
  max-width:500px;
}

.home-hero-v2__signals{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.home-hero-v2__signals span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:6px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.home-hero-v2__actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:18px;
}

.home-hero-v2__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:8px;
  font-size:18px;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

.home-hero-v2__btn--primary{
  background:#e24d36;
  color:#fff;
}

.home-hero-v2__btn--primary:hover{
  background:#cb412d;
  color:#fff;
}

.home-hero-v2__media{
  display:flex;
  align-items:stretch;
  min-height:100%;
}

.home-hero-v2__media img{
  width:100%;
  height:100%;
  min-height:500px;
  object-fit:cover;
  display:block;
}

@media (max-width: 1024px){
  .home-hero-v2__grid{
    grid-template-columns:minmax(0, 1fr) 380px;
    gap:28px;
  }

  .home-hero-v2 h1{
    font-size:38px;
    max-width:100%;
  }

  .home-hero-v2__media img{
    min-height:420px;
  }
}

@media (max-width: 768px){
  .home-hero-v2{
    padding:12px 0 0;
  }

  .home-hero-v2__grid{
    grid-template-columns:1fr;
  }

  .home-hero-v2__content{
    padding:18px 0 18px;
  }

  .home-hero-v2 h1{
    max-width:100%;
    font-size:34px;
    line-height:1.06;
  }

  .home-hero-v2__text{
    font-size:15px;
    line-height:1.5;
  }

  .home-hero-v2__signals{
    gap:6px;
  }

  .home-hero-v2__signals span{
    min-height:32px;
    font-size:12px;
    padding:0 10px;
  }

  .home-hero-v2__actions{
    margin-top:16px;
  }

  .home-hero-v2__btn{
    width:100%;
    min-height:50px;
  }

  .home-hero-v2__media{
    display:none;
  }
}

/* common section head */

.home-section-v2__head{
  max-width:860px;
  margin:0 0 34px;
  text-align:left;
}

.home-section-v2__kicker{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#e6ece3;
  color:var(--hp-teal-dark);
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.home-section-v2__head h2{
  margin:18px 0 14px;
  color:var(--hp-ink);
  font-size:46px;
  line-height:1.08;
  letter-spacing:-0.03em;
  text-align:left;
}

.home-section-v2__head p{
  margin:0;
  color:var(--hp-body);
  font-size:18px;
  line-height:1.75;
  text-align:left;
}

/* services */

.home-services-v2{
/*  background:#e4ebe4 !important; */
  padding-top:68px !important;
  padding-bottom:68px !important;
}

.home-services-v2 .wrap{
  max-width:1280px;
}

.home-services-v2 .home-section-v2__head{
  max-width:760px !important;
  margin:0 0 28px !important;
  text-align:left !important;
}

.home-services-v2 .home-section-v2__kicker{
  display:block !important;
  margin:0 0 10px !important;
  padding:0 !important;
  background:none !important;
  border:none !important;
  border-radius:0 !important;
  color:#194b45 !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.08em !important;
  line-height:1.2 !important;
  text-transform:uppercase !important;
}

.home-services-v2 .home-section-v2__head h2{
  margin:0 0 12px !important;
  color:#17322f !important;
  font-size:34px !important;
  line-height:1.08 !important;
  letter-spacing:-0.03em !important;
  font-weight:800 !important;
  text-align:left !important;
}

.home-services-v2 .home-section-v2__head p{
  margin:0 !important;
  max-width:720px !important;
  color:#4f5b57 !important;
  font-size:16px !important;
  line-height:1.68 !important;
  text-align:left !important;
}

.home-services-v2 .home-services-v2__grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:24px !important;
}

.home-services-v2 .home-service-v2{
  display:block !important;
  width:100% !important;
  min-width:0 !important;
  overflow:hidden !important;
  border-radius:0 !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  margin:0 !important;
}

.home-services-v2 .home-service-v2__image{
  aspect-ratio:16/10 !important;
  overflow:hidden !important;
}

.home-services-v2 .home-service-v2__image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.home-services-v2 .home-service-v2__body{
  padding:22px 22px 24px !important;
  background:#ffffff !important;
  border:1px solid #d8ddd5 !important;
  border-top:none !important;
  text-align:left !important;
}

.home-services-v2 .home-service-v2__body p{
  margin:0 !important;
  color:#4f5b57 !important;
  font-size:16px !important;
  line-height:1.7 !important;
}

.home-services-v2 .home-service-v2__body a{
  display:none !important;
}

.home-services-v2 .home-services-v2__grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:24px !important;
  align-items:stretch !important;
}

.home-services-v2 .home-service-v2{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
}

.home-services-v2 .home-service-v2__image{
  flex:0 0 auto !important;
}

.home-services-v2 .home-service-v2__body{
  flex:1 1 auto !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;
}

@media (max-width: 768px){
  .home-services-v2{
    padding-top:54px !important;
    padding-bottom:54px !important;
  }

  .home-services-v2 .home-section-v2__head h2{
    font-size:29px !important;
  }

  .home-services-v2 .home-section-v2__head p{
    font-size:15px !important;
  }

  .home-services-v2 .home-services-v2__grid{
    grid-template-columns:1fr !important;
  }

  .home-services-v2 .home-service-v2__body{
    padding:18px 18px 20px !important;
  }

  .home-services-v2 .home-service-v2__body h3{
    font-size:23px !important;
  }

  .home-services-v2 .home-service-v2__body p{
    font-size:15px !important;
  }
}

/* process */

.home-process-v2{
/*  background:#e6e8e1; */
  padding-top:68px;
  padding-bottom:68px;
}

.home-process-v2 .wrap{
  max-width:1280px;
}

.home-process-v2 .home-section-v2__head{
  max-width:700px;
  margin:0 0 28px;
  text-align:left;
}

.home-process-v2 .home-section-v2__kicker{
  display:block;
  margin:0 0 10px;
  padding:0;
  background:none;
  border:none;
  border-radius:0;
  color:#194b45;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.home-process-v2 .home-section-v2__head h2{
  margin:0 0 10px;
  color:#17322f;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-0.03em;
  font-weight:800;
  text-align:left;
}

.home-process-v2 .home-section-v2__head p{
  margin:0;
  max-width:620px;
  color:#4f5b57;
  font-size:16px;
  line-height:1.6;
  text-align:left;
}

.home-process-v2 .home-process-v2__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
}

.home-process-v2 .home-process-v2__card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:100%;
  padding:22px 22px 24px;
  border-radius:0;
  background:#ffffff;
  border:1px solid #d8ddd5;
  text-align:left;
  box-shadow:none;
}

.home-process-v2 .home-process-v2__num{
  display:inline-block;
  margin:0 0 14px;
  color:#e24d36;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  line-height:1;
}

.home-process-v2 .home-process-v2__card h3{
  margin:0 0 10px;
  color:#17322f;
  font-size:23px;
  line-height:1.14;
  letter-spacing:-0.02em;
  font-weight:800;
}

.home-process-v2 .home-process-v2__card p{
  margin:0;
  color:#4f5b57;
  font-size:15px;
  line-height:1.6;
}

@media (max-width: 1100px){
  .home-process-v2 .home-process-v2__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .home-process-v2{
    padding-top:54px;
    padding-bottom:54px;
  }

  .home-process-v2 .home-section-v2__head h2{
    font-size:29px;
  }

  .home-process-v2 .home-section-v2__head p{
    font-size:15px;
  }

  .home-process-v2 .home-process-v2__grid{
    grid-template-columns:1fr;
  }

  .home-process-v2 .home-process-v2__card{
    padding:18px 18px 20px;
  }

  .home-process-v2 .home-process-v2__card h3{
    font-size:21px;
  }

  .home-process-v2 .home-process-v2__card p{
    font-size:14px;
  }
}

/* support */

.home-support-v2{
/*  background:#e4ebe4; */
  padding-top:68px;
  padding-bottom:68px;
}

.home-support-v2 .wrap{
  max-width:1280px;
}

.home-support-v2 .home-section-v2__head{
  max-width:760px;
  margin:0 0 28px;
  text-align:left;
}

.home-support-v2 .home-section-v2__kicker{
  display:block;
  margin:0 0 10px;
  padding:0;
  background:none;
  border:none;
  border-radius:0;
  color:#194b45;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.home-support-v2 .home-section-v2__head h2{
  margin:0 0 12px;
  color:#17322f;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-0.03em;
  font-weight:800;
  text-align:left;
}

.home-support-v2 .home-section-v2__head p{
  margin:0;
  max-width:720px;
  color:#4f5b57;
  font-size:16px;
  line-height:1.68;
  text-align:left;
}

.home-support-v2 .home-support-v2__brands{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin:0 0 20px;
}

.home-support-v2 .home-support-v2__brands span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  width:100%;
  padding:0 14px;
  background:#ffffff;
  border:1px solid #d8ddd5;
  color:#17322f;
  font-size:15px;
  font-weight:700;
  line-height:1;
  text-align:center;
  white-space:nowrap;
  box-sizing:border-box;
}

.home-support-v2 .home-support-v2__note{
  max-width:980px;
  margin:0;
  color:#4f5b57;
  font-size:15px;
  line-height:1.7;
  text-align:left;
}

@media (max-width: 768px){
  .home-support-v2{
    padding-top:54px;
    padding-bottom:54px;
  }

  .home-support-v2 .home-section-v2__head h2{
    font-size:29px;
  }

  .home-support-v2 .home-section-v2__head p{
    font-size:15px;
  }

  .home-support-v2 .home-support-v2__note{
    font-size:14px;
  }
}
@media (max-width: 992px){
  .home-support-v2 .home-support-v2__brands{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 992px){
  .home-support-v2 .home-support-v2__brands{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .home-support-v2 .home-support-v2__brands{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
    margin-bottom:18px;
  }

  .home-support-v2 .home-support-v2__brands span{
    min-height:40px;
    padding:0 10px;
    font-size:14px;
  }
}

.home-faq-v2{
/*  background:#e4ebe4; */
  padding-top:68px;
  padding-bottom:68px;
}

.home-faq-v2 .wrap{
  max-width:1280px;
}

.home-faq-v2 .home-section-v2__head{
  max-width:760px;
  margin:0 0 28px;
  text-align:left;
}

.home-faq-v2 .home-section-v2__kicker{
  display:block;
  margin:0 0 10px;
  padding:0;
  background:none;
  border:none;
  border-radius:0;
  color:#194b45;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.home-faq-v2 .home-section-v2__head h2{
  margin:0 0 12px;
  color:#17322f;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-0.03em;
  font-weight:800;
  text-align:left;
}

.home-faq-v2 .home-section-v2__head p{
  margin:0;
  max-width:720px;
  color:#4f5b57;
  font-size:16px;
  line-height:1.68;
  text-align:left;
}

.home-faq-v2__list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.home-faq-v2__item{
  background:#ffffff;
  border:1px solid #d8ddd5;
}

.home-faq-v2__item summary{
  position:relative;
  display:block;
  list-style:none;
  cursor:pointer;
  padding:20px 52px 20px 22px;
  color:#17322f;
  font-size:19px;
  line-height:1.28;
  letter-spacing:-0.01em;
  font-weight:700;
  text-align:left;
}

.home-faq-v2__item summary::-webkit-details-marker{
  display:none;
}

.home-faq-v2__item summary::after{
  content:"+";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  color:#e24d36;
  font-size:24px;
  line-height:1;
  font-weight:500;
}

.home-faq-v2__item[open] summary::after{
  content:"−";
}

.home-faq-v2__answer{
  padding:0 22px 22px 22px;
  color:#4f5b57;
  font-size:16px;
  line-height:1.72;
  text-align:left;
}

@media (max-width: 768px){
  .home-section-v2__head h2{
    font-size:26px;
    line-height:1.14;
  }

  .home-service-v2__body h3,
  .home-process-v2 .home-process-v2__card h3,
  .home-reasons-v2__card h3{
    font-size:19px;
  }

  .home-faq-v2__item summary{
    font-size:17px;
    line-height:1.3;
    padding:18px 44px 18px 18px;
  }

  .home-faq-v2__item summary::after{
    right:18px;
    font-size:22px;
  }
}

/* force left alignment */
.homepage-v2 .section-head,
.homepage-v2 .section-head *,
.homepage-v2 .home-section-v2__head,
.homepage-v2 .home-section-v2__head *{
  text-align:left;
}

/* responsive */

@media (max-width: 1200px){
  .home-support-v2__grid,
  .home-callout-v2__box{
    grid-template-columns:1fr;
  }

  .home-services-v2__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .home-process-v2__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  }
}

@media (max-width: 768px){

  .home-section-v2__head h2,
  .home-callout-v2__content h2,
  .home-support-v2 h2{
    font-size:34px;
  }

  .home-services-v2__grid,
  .home-process-v2__grid,
  .home-reasons-v2__grid,
  .home-faq-v2__grid{
    grid-template-columns:1fr;
  }

  .home-callout-v2__box{
    padding:18px;
  }
}

.home-mid-cta-v2{
  background:#194b45;
  padding-top:82px;
  padding-bottom:82px;
}

.home-mid-cta-v2 .wrap{
  max-width:1280px;
}

.home-mid-cta-v2__box{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:40px;
  align-items:center;
}

.home-mid-cta-v2__content{
  text-align:left;
}

.home-mid-cta-v2__content .home-section-v2__kicker{
  display:block;
  margin:0 0 12px;
  padding:0;
  background:none;
  border:none;
  border-radius:0;
  color:#dfe8df;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.home-mid-cta-v2__content h2{
  margin:0 0 14px;
  color:#eef1ea;
  font-size:40px;
  line-height:1.06;
  letter-spacing:-0.03em;
  font-weight:800;
  text-align:left;
}

.home-mid-cta-v2__content p{
  margin:0;
  max-width:780px;
  color:rgba(238,241,234,.88);
  font-size:18px;
  line-height:1.75;
  text-align:left;
}

.home-mid-cta-v2__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.home-mid-cta-v2__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:60px;
  padding:0 28px;
  background:#e24d36;
  color:#fff;
  font-size:18px;
  font-weight:800;
  text-decoration:none;
  border-radius:8px;
  white-space:nowrap;
}

.home-mid-cta-v2__btn:hover{
  background:#cb412d;
  color:#fff;
}

@media (max-width: 900px){
  .home-mid-cta-v2{
    padding-top:64px;
    padding-bottom:64px;
  }

  .home-mid-cta-v2__box{
    grid-template-columns:1fr;
    gap:22px;
  }

  .home-mid-cta-v2__actions{
    justify-content:flex-start;
  }
}

@media (max-width: 768px){
  .home-mid-cta-v2{
    padding-top:54px;
    padding-bottom:54px;
  }

  .home-mid-cta-v2__content h2{
    font-size:31px;
  }

  .home-mid-cta-v2__content p{
    font-size:16px;
    line-height:1.65;
  }

  .home-mid-cta-v2__btn{
    width:100%;
    min-height:54px;
    font-size:17px;
  }
}

/* =========================
   HOMEPAGE TYPOGRAPHY TUNE
   ========================= */

/* section titles */
.home-section-v2__head h2,
.home-support-v2 .home-section-v2__head h2,
.home-faq-v2 .home-section-v2__head h2,
.home-process-v2 .home-section-v2__head h2,
.home-services-v2 .home-section-v2__head h2{
  margin:0 0 12px !important;
  color:#17322f !important;
  font-size:28px !important;
  line-height:1.14 !important;
  letter-spacing:-0.015em !important;
  font-weight:700 !important;
  text-align:left !important;
}

/* card titles */
.home-service-v2__body h3,
.home-process-v2 .home-process-v2__card h3,
.home-reasons-v2__card h3{
  margin:0 0 10px !important;
  color:#17322f !important;
  font-size:20px !important;
  line-height:1.22 !important;
  letter-spacing:-0.01em !important;
  font-weight:700 !important;
}

/* faq questions */
.home-faq-v2__item summary{
  position:relative !important;
  display:block !important;
  list-style:none !important;
  cursor:pointer !important;
  padding:20px 52px 20px 22px !important;
  color:#17322f !important;
  font-size:18px !important;
  line-height:1.32 !important;
  letter-spacing:-0.005em !important;
  font-weight:600 !important;
  text-align:left !important;
  text-transform:none !important;
}

.home-faq-v2__item summary::-webkit-details-marker{
  display:none !important;
}

.home-faq-v2__item summary::after{
  content:"+" !important;
  position:absolute !important;
  right:22px !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  color:#e24d36 !important;
  font-size:22px !important;
  line-height:1 !important;
  font-weight:500 !important;
}

.home-faq-v2__item[open] summary::after{
  content:"−" !important;
}

@media (max-width: 768px){
  .home-section-v2__head h2,
  .home-support-v2 .home-section-v2__head h2,
  .home-faq-v2 .home-section-v2__head h2,
  .home-process-v2 .home-section-v2__head h2,
  .home-services-v2 .home-section-v2__head h2{
    font-size:24px !important;
    line-height:1.16 !important;
  }

  .home-service-v2__body h3,
  .home-process-v2 .home-process-v2__card h3,
  .home-reasons-v2__card h3{
    font-size:18px !important;
  }

  .home-faq-v2__item summary{
    padding:18px 44px 18px 18px !important;
    font-size:16px !important;
    line-height:1.34 !important;
  }

  .home-faq-v2__item summary::after{
    right:18px !important;
    font-size:20px !important;
  }
}

.site-footer{
  background:#17322f !important;
  color:rgba(238,241,234,.88) !important;
}

.site-footer .footer-cta{
  background:#194b45 !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
  padding:18px 0 !important;
}

.site-footer .footer-cta p{
  margin:0 !important;
  color:#eef1ea !important;
  font-size:18px !important;
  line-height:1.5 !important;
  font-weight:600 !important;
  text-align:center !important;
}

.site-footer .footer-cta a{
  color:#fff !important;
  background:#e24d36 !important;
  padding:10px 14px !important;
  text-decoration:none !important;
  font-weight:700 !important;
  border-radius:8px !important;
  display:inline-block !important;
}

.site-footer .footer-cta a:hover{
  background:#cb412d !important;
  color:#fff !important;
}

.site-footer .brand-name{
  color:#eef1ea !important;
}

.site-footer .brand-dot{
  background:#e24d36 !important;
}

.site-footer .footer-nav a{
  color:#eef1ea !important;
}

.site-footer .footer-nav a:hover{
  color:#ffffff !important;
}

.site-footer .footer-disclaimer p{
  color:rgba(238,241,234,.66) !important;
}

.site-footer .footer-bottom{
  color:rgba(238,241,234,.58) !important;
}
.site-footer .footer-disclaimer{
  max-width:768px !important;
  margin-left:0 !important;
  margin-right:auto !important;
  text-align:left !important;
}

.site-footer .footer-disclaimer p{
  text-align:left !important;
}

@media (max-width: 768px){
  .btn-phone-text{
    display:none;
  }
}
.logo-wordmark .brand-dot{
  background:#e24d36 !important;
}

.home-hero-v2__media{
  position:relative;
  overflow:hidden;
}

.home-hero-v2__media{
  position:relative;
  overflow:hidden;
}

.home-hero-v2__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(25,75,69,.42) 0%,
    rgba(25,75,69,.24) 45%,
    rgba(25,75,69,.34) 100%
  );
  pointer-events:none;
}

#dsrielb { display:none; }