.hero{
  position: relative;
  padding: 64px 0 28px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: start;
}
.eyebrow{
  color: var(--muted);
  font-weight: 650;
  letter-spacing: .22px;
  margin-bottom: 10px;
}
.hero h1{
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}
.subhead{
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
  margin-bottom: 16px;
}
.hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.hero__trust{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-pill{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  opacity: .95;
}

.hero__card .card{
  border-radius: 24px;
}

.hero__bg{
  position: absolute;
  inset: 0;
  height: auto;
  background:
    radial-gradient(60% 60% at 30% 35%, rgba(0,0,0,.25), rgba(0,0,0,.75)),
    url("../../img/hero-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.hero > *{
  position: relative;
  z-index: 1;
}

.mini-grid{
  margin: 14px 0 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 10px;
}
.mini__k{
  display:block;
  color: var(--muted);
  font-size: 12px;
}
.mini__v{
  display:block;
  font-weight: 750;
  margin-top: 4px;
}

@media (max-width: 980px){
  .hero{ padding-top: 44px; }
  .hero__grid{ grid-template-columns: 1fr; }
}
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
}

.hero__content {
  width: min(1400px, calc(100% - 12px));
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Hero text card (overrides generic .card styles) */
.hero__content.card,
.hero .card{
  background: rgba(0, 0, 0, 0.50);
  color: #ffffff;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  max-width: 720px;
  width: 100%;
  margin: 0;
}
.hero__content.card p,
.hero__content.card li,
.hero__content.card span,
.hero .card p,
.hero .card li,
.hero .card span{
  color: #ffffff;
}

.hero__eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero__accent {
  color: var(--red);
}

.hero__sub {
  font-size: 18px;
  color: #ffffff;
  max-width: 560px;
  margin-bottom: 26px;
}

.hero__trust {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  font-size: 13px;
  color: #ffffff;
  opacity: .9;
}

@media (max-width: 768px){
  .hero__content.card,
  .hero .card{
    padding: 24px;
    border-radius: 12px;
  }
}
.services {
  padding: clamp(56px, 8vw, 96px) 0;
}

.services__head {
  max-width: 640px;
  margin-bottom: 36px;
}

.services__head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.services__head p {
  color: var(--muted);
  font-size: 17px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.services__card{
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  padding: 28px 26px 26px 26px;
  padding-left: 96px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18,24,36,.92), rgba(10,14,22,.88));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}

.services__card::after{
  content: "";
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(193,18,31,.28), rgba(193,18,31,0));
  opacity: .9;
  pointer-events: none;
}

.services__card:hover{
  transform: translateY(-3px);
  border-color: rgba(193,18,31,.25);
  box-shadow: 0 16px 40px rgba(193,18,31,.2);
}

.services__icon{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(193,18,31,.35);
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
}

.services__card h3{
  color: #ffffff;
  margin-bottom: 10px;
}

.services__card p,
.services__card .bullets{
  color: rgba(255,255,255,.82);
}

.services__card .bullets{
  margin-bottom: 16px;
}

.services__link{
  margin-top: auto;
  align-self: flex-start;
  background: linear-gradient(180deg, #c1121f, rgba(193,18,31,.82));
  border-color: rgba(255,255,255,.14);
  color: #ffffff;
}

.services__link:hover{
  filter: brightness(1.06);
}

/* Hurricane section background image */
#hurricane{
  position: relative;
  background: url("../../img/Hurricane.jpeg") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

#hurricane::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,10,18,.82), rgba(7,10,18,.45));
  z-index: 0;
}

#hurricane .container{
  position: relative;
  z-index: 1;
}

@media (max-width: 680px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.contact{
  padding: clamp(56px, 8vw, 96px) 0;
}

.contact__head{
  max-width: 680px;
  margin-bottom: 32px;
}

.contact__head h2{
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 12px;
}

.contact__head p{
  color: var(--muted);
  font-size: 17px;
}

.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items:start;
}

.contact__muted{
  color: var(--muted);
  margin-top: -6px;
  margin-bottom: 12px;
}

.contact__info h3{ margin-bottom: 12px; }

.contact__row{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.contact__row:last-of-type{
  border-bottom: none;
}

.contact__label{
  color: var(--muted);
  font-size: 14px;
}

.contact__value{
  font-weight: 700;
  color: var(--text);
}

.contact__cta{
  display:flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .contact__grid{
    grid-template-columns: 1fr;
  }
}
.projects{
  padding: clamp(56px, 8vw, 96px) 0;
}

#projects{
  padding-bottom: 36px;
}

.projects__head{
  max-width: 720px;
  margin-bottom: 28px;
}

.projects__head h2{
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.projects__head p{
  color: var(--muted);
  font-size: 17px;
}

.projects__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 0;
}

.project{
  display: flex;
  flex-direction: column;
}

.project__media{
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.project__img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.project__ph{
  height: 170px;
  display:grid;
  place-items:center;
  color: var(--muted);
  font-weight: 700;
}

.project__meta{
  color: var(--muted);
  margin-top: -6px;
  margin-bottom: 10px;
  font-size: 14px;
}

.project .btn{
  margin-top: auto;
  align-self: flex-start;
}

/* Benefits Section */
.benefits-section{
  padding: clamp(56px, 8vw, 80px) 0;
  background: 
    radial-gradient(1200px 600px at 50% 0%, rgba(193,18,31,.08), transparent 70%),
    linear-gradient(180deg, #0a0e1a 0%, #121824 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.02) 0px,
      transparent 1px,
      transparent 80px,
      rgba(255,255,255,.02) 81px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.02) 0px,
      transparent 1px,
      transparent 80px,
      rgba(255,255,255,.02) 81px
    );
  pointer-events: none;
  opacity: 0.4;
}

.benefits-section__head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.benefits-eyebrow{
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(193,18,31,.25), rgba(193,18,31,.15));
  border: 1px solid rgba(193,18,31,.4);
  border-radius: 999px;
  color: #ffa726;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-section__head h2{
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.benefits-section__head p{
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  margin: 0;
}

.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.benefit-card{
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(26,32,46,.95), rgba(18,24,36,.95));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c1121f, #e83a47, #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover{
  transform: translateY(-8px);
  border-color: rgba(193,18,31,.3);
  box-shadow: 0 16px 48px rgba(193,18,31,.25), 0 0 0 1px rgba(193,18,31,.1);
}

.benefit-card:hover::before{
  transform: scaleX(1);
}

.benefit-card__icon-wrap{
  margin-bottom: 20px;
  position: relative;
}

.benefit-card__icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border-radius: 14px;
  position: relative;
  box-shadow: 0 8px 24px rgba(193,18,31,.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card__icon::before{
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(193,18,31,.3), rgba(232,58,71,.2));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-card__icon{
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 12px 36px rgba(193,18,31,.6);
}

.benefit-card:hover .benefit-card__icon::before{
  opacity: 1;
}

.benefit-card__icon i{
  font-size: 28px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.benefit-card h3{
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.benefit-card p{
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0;
}

@media (max-width: 980px){
  .benefits-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px){
  .benefits-section{
    padding: clamp(48px, 8vw, 64px) 0;
  }

  .benefits-section__head{
    margin-bottom: 36px;
  }

  .benefits-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card{
    padding: 24px 20px;
  }

  .benefit-card__icon{
    width: 56px;
    height: 56px;
  }

  .benefit-card__icon i{
    font-size: 24px;
  }
}

#insurance{
  padding-bottom: 44px;
}

.insurance__layout{
  display: grid;
  grid-template-columns: 1.55fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.insurance__steps{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.insurance__steps::before{
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, rgba(232,58,71,.55), rgba(232,58,71,.12));
  pointer-events: none;
}

.insurance__steps .steps__item{
  padding: 12px 14px;
  gap: 12px;
  position: relative;
  min-height: 94px;
}

.insurance__steps .steps__n{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  z-index: 1;
}

.insurance__steps .steps__c h3{
  margin-bottom: 2px;
  line-height: 1.2;
}

.insurance__step-icon{
  color: #e83a47;
  margin-right: 8px;
  font-size: 14px;
}

.insurance__steps .steps__c p{
  line-height: 1.35;
}

.insurance__aside{
  height: 100%;
  border: 1px solid rgba(193,18,31,.28);
  background:
    linear-gradient(180deg, rgba(193,18,31,.12), rgba(193,18,31,.03)),
    rgba(18,24,36,.66);
  box-shadow: 0 14px 34px rgba(0,0,0,.30);
  position: relative;
  overflow: hidden;
}

.insurance__aside::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e83a47, #c1121f);
}

.insurance__aside h3{
  margin-bottom: 10px;
  line-height: 1.2;
}

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

.insurance__eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(193,18,31,.45);
  background: rgba(193,18,31,.20);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.insurance__lead{
  margin-bottom: 12px !important;
  line-height: 1.5;
}

.insurance__points{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.9);
}

.insurance__points li{
  margin: 8px 0;
}

.insurance__promise{
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88) !important;
  line-height: 1.45;
}

@media (max-width: 980px){
  .projects__grid{ grid-template-columns: 1fr; }
  .project__ph{ height: 190px; }

  #insurance{
    padding-bottom: 56px;
  }

  .insurance__layout{
    grid-template-columns: 1fr;
  }
}
.values{
  padding: clamp(56px, 8vw, 96px) 0;
}

.values__head{
  max-width: 720px;
  margin-bottom: 28px;
}

.values__head h2{
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.values__head p{
  color: var(--muted);
  font-size: 17px;
}

.values__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.values .card{
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18,24,36,.92), rgba(10,14,22,.88));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.values .card::after{
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(193,18,31,.35), rgba(193,18,31,0));
  opacity: .9;
  pointer-events: none;
}

.values__icon{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(193,18,31,.35);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.values .card h3{
  color: #ffffff;
  margin-bottom: 10px;
}

.values .card p{
  color: rgba(255,255,255,.82);
}

@media (max-width: 980px){
  .values__grid{ grid-template-columns: 1fr; }
}

.about-section{
  padding: clamp(52px, 7vw, 88px) 0;
  background:
    radial-gradient(900px 480px at 15% 10%, rgba(193,18,31,.14), transparent 60%),
    linear-gradient(180deg, #0c111b 0%, #111827 100%);
  position: relative;
  overflow: hidden;
}

.about-section::after{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255,255,255,.03) 0px,
    rgba(255,255,255,.03) 1px,
    transparent 1px,
    transparent 70px
  );
  opacity: 0.35;
  pointer-events: none;
}

.about-section__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-section__eyebrow{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(193,18,31,.45);
  background: rgba(193,18,31,.18);
  color: #f5b754;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-section__content h2{
  font-size: clamp(28px, 4.6vw, 42px);
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: -0.6px;
}

.about-section__content p{
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-section__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.about-section__panel{
  background: linear-gradient(145deg, rgba(18,24,36,.94), rgba(9,12,20,.92));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}

.about-section__panel::before{
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(193,18,31,.35), rgba(193,18,31,0));
  opacity: .9;
  pointer-events: none;
}

.about-section__badge{
  text-align: left;
  margin-bottom: 18px;
}

.about-section__badge-top{
  display: block;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
}

.about-section__badge-main{
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 4px 0;
}

.about-section__badge-sub{
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.about-section__points{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.about-section__points li{
  color: rgba(255,255,255,.85);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
}

.about-section__points i{
  color: #f04a5a;
  margin-top: 2px;
}

@media (max-width: 980px){
  .about-section__grid{
    grid-template-columns: 1fr;
  }
}

#pricing .pricing__grid{
  gap: 18px;
}

#pricing .pricing__card{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18,24,36,.92), rgba(10,14,22,.88));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.30);
  padding: 20px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

#pricing .pricing__card::after{
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 35% 35%, rgba(193,18,31,.30), rgba(193,18,31,0));
  pointer-events: none;
}

#pricing .pricing__card:hover{
  transform: translateY(-2px);
  border-color: rgba(193,18,31,.30);
  box-shadow: 0 14px 34px rgba(193,18,31,.16);
}

#pricing .pricing__icon{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(193,18,31,.35);
  margin-bottom: 12px;
}

#pricing .pricing__card h3{
  color: #ffffff;
  margin-bottom: 8px;
}

#pricing .pricing__card p,
#pricing .pricing__card .bullets{
  color: rgba(255,255,255,.86);
}

#pricing .pricing__card .bullets li{
  margin: 8px 0;
}

.faq{
  padding: clamp(56px, 8vw, 96px) 0;
}

#faq{
  padding-bottom: 22px;
}

.faq__head{
  max-width: 720px;
  margin-bottom: 22px;
}

.faq__head h2{
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.faq__head p{
  color: var(--muted);
  font-size: 17px;
}

.cards-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

#faq .cards-2{
  margin-bottom: 0;
}

#faq .faq__card{
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18,24,36,.92), rgba(10,14,22,.88));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  padding: 18px;
}

#faq .faq__card:hover{
  border-color: rgba(193,18,31,.28);
  box-shadow: 0 14px 34px rgba(193,18,31,.14);
  transform: translateY(-1px);
}

#faq .faq__title{
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

#faq .faq__intro{
  color: rgba(255,255,255,.86);
  margin: 0 0 12px;
}

#faq .faq__qicon{
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  color: #ffffff;
  font-size: 13px;
  box-shadow: 0 7px 16px rgba(193,18,31,.30);
  flex-shrink: 0;
}

#faq .faq__answers,
#faq .faq__answers li{
  color: rgba(255,255,255,.84);
}

@media (max-width: 980px){
  .cards-2{ grid-template-columns: 1fr; }

  #faq{
    padding-bottom: 36px;
  }
}
.areas__grid--wide{
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 980px){
  .areas__grid--wide{ grid-template-columns: 1fr; }
}
.areas{
  padding: clamp(56px, 8vw, 96px) 0;
}

.areas__grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.areas__head{
  max-width: 720px;
  margin-bottom: 22px;
}

.areas__head h2{
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.areas__head p{
  color: var(--muted);
  font-size: 17px;
}

.areas__single{
  max-width: none;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.areas__single h3{
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.areas__map{
  overflow: hidden;
  padding: 0;
  min-height: 360px;
}

.areas__map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#service-map{
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.areas__list{
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 24px;

  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.areas__list li{
  padding: 8px 0;
}

@media (max-width: 980px){
  .areas__grid{
    grid-template-columns: 1fr;
  }
  .areas__single{
    padding: 32px;
  }
  .areas__list{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px){
  .areas__single{
    padding: 24px;
  }
  .areas__list{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
  }
  .areas__single h3{
    font-size: 20px;
  }
}
.credentials{
  padding: clamp(56px, 8vw, 96px) 0;
}

#credentials{
  padding-bottom: 34px;
}

.credentials__head{
  max-width: 780px;
  margin-bottom: 22px;
}

.credentials__head h2{
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.credentials__head p{
  color: var(--muted);
  font-size: 17px;
}

.credentials__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 0;
}

.credentials__big{
  font-size: 24px;
  font-weight: 850;
  letter-spacing: .6px;
  margin: 10px 0 6px;
}

@media (max-width: 980px){
  .credentials__grid{ grid-template-columns: 1fr; }

  #credentials{
    padding-bottom: 46px;
  }
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo{
  height: 210px;
  width: auto;
}

.header{
  height: 115px;
}
.header__inner{
    height: 80%;
    align-items: center;
  }
@media (max-width: 520px){
  .brand__text{
    display: none; /* logo-only on mobile */
  }
}
/* ===== Header light theme ===== */
.header{
  background: #ffffff;
  color: #111111;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
/* ===== Larger header sizing ===== */
.header{
  padding: 8px 0;
}

.header__inner{
  min-height: 110px;
}

/* Brand text */
.brand__name{
  color: #111111;
}

.brand__tag{
  color: #444444;
}

/* Desktop nav links */
.nav a{
  color: #111111;
}

.nav a:hover{
  color: #000000;
}

/* Header buttons (ghost) */
.header .btn--ghost{
  color: #111111;
  border-color: rgba(0,0,0,.15);
}

.header .btn--ghost:hover{
  background: rgba(0,0,0,.04);
}

/* Hamburger menu */
.hamburger span{
  background: #111111;
}
.hamburger{
  width: 48px;
  height: 40px;
}

.hamburger span{
  height: 3px;

}
/* ===== Mobile header fixes ===== */
@media (max-width: 520px){

  /* make the header less tall */
  .header{ padding: 4px 0 !important; height: 64px !important; }
  .header__inner{ min-height: 48px !important; }

  /* show the brand text again */
  .brand__text{ display: block !important; }

  /* keep it one line so it doesn't look crowded */
  .brand__name{
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  /* optional: hide tagline on mobile to save space */
  .brand__tag{ display: none !important; }

  /* make logo bigger */
  .brand__logo{ height: 48px !important; }

  /* tighten brand spacing */
  .brand{ gap: 10px !important; }

  /* keep hamburger aligned and readable */
  .hamburger{
    padding: 6px 8px !important;
    border-radius: 12px !important;
  }
  .hamburger span{
    width: 22px !important;
    height: 3px !important;
    background: #111 !important;
  }
}
/* ===== Static hero background ===== */
.hero--static{
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  background-image:
    radial-gradient(60% 60% at 30% 35%, rgba(0,0,0,.08), rgba(0,0,0,.3)),
    url("../../img/hero-3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 0;

  margin-top: 0;
}

@media (max-width: 768px) {
  .hero--static {
    background-attachment: scroll;
    background-size: cover;
  }
}

/* ===============================
   WHITE THEME PREVIEW (CLIENT)
   =============================== 

:root{
  --bg: #ffffff;
  --panel: #ffffff;
  --text: #111111;
  --muted: #555555;
  --line: rgba(0,0,0,.12);
}


body{
  background: #ffffff;
  color: #111111;
}


.section,
.section--alt,
.hero,
.values,
.services,
.areas,
.faq,
.credentials,
.contact{
  background: #ffffff !important;
}

.card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}


h1, h2, h3, h4, h5{
  color: #111111;
}

p,
li,
span{
  color: #333333;
}


.hero__accent{
  color: #c1121f; 
}


.btn--dark{
  background: #f3f3f3;
  color: #111111;
  border-color: rgba(0,0,0,.15);
}

.btn--dark:hover{
  background: #eaeaea;
}


.chev{
  border-color: #111111;
}

.footer{
  background: #f7f7f7;
  color: #111111;
}

.footer a{
  color: #111111;
}
=============================== */


