@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 181, 74, 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(63, 181, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(63, 181, 74, 0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin-in {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-40deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #16223f;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
}

h1, h2, h3 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  color: #0e1b3d;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 20px;
}

p {
  color: #5b6478;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #3d6fd6;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}
.eyebrow--light {
  color: #8fc0ff;
}

.section-head {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .section-head {
    padding: 0 20px;
  }
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
}
.section-head h2 {
  max-width: 560px;
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head--center h2 {
  max-width: 640px;
}
@media (max-width: 640px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head h2 {
    font-size: 27px;
  }
}

.section-sub {
  color: #8891a8;
  max-width: 480px;
  margin-top: 6px;
}

.link-arrow {
  color: #3d6fd6;
  font-weight: 600;
  font-size: 14.5px;
  transition: gap 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.link-arrow:hover {
  color: #0e1b3d;
  letter-spacing: 0.3px;
}
.link-arrow--sm {
  font-size: 14px;
}
.link-arrow--light {
  color: #8fc0ff;
}
.link-arrow--light:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease, border-color 0.25s ease;
  padding: 13px 24px;
  font-size: 14.5px;
}
.btn--quote {
  background: #3fb54a;
  color: #fff;
  padding: 11px 22px;
  box-shadow: 0 6px 16px rgba(63, 181, 74, 0.28);
}
.btn--quote:hover {
  background: #33a03e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(63, 181, 74, 0.38);
}
.btn--emergency {
  background: #3fb54a;
  color: #fff;
  padding: 15px 26px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(63, 181, 74, 0.3);
}
.btn--emergency:hover {
  background: #33a03e;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(63, 181, 74, 0.4);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 15px 26px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline {
  background: transparent;
  color: #0e1b3d;
  border: 1.5px solid #e7eaf1;
  padding: 12px 22px;
}
.btn--outline:hover {
  border-color: #0e1b3d;
  background: #0e1b3d;
  color: #fff;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3fb54a;
  display: inline-block;
  margin-right: 8px;
}
.dot--pulse {
  animation: pulse 2s infinite;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #e7eaf1;
}
.check-list--light li {
  color: #e7eaf1;
}

.check {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #3fb54a;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 15px;
}

.topbar {
  background: #0a1128;
  color: #e7eaf1;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 24px;
}
.topbar__sep {
  opacity: 0.35;
}
.topbar__call {
  color: #8fc0ff;
  transition: color 0.2s ease;
  font-weight: 500;
}
.topbar__call:hover {
  color: #ffffff;
}
@media (max-width: 640px) {
  .topbar {
    flex-wrap: wrap;
    font-size: 11.5px;
    gap: 10px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
@media (max-width: 640px) {
  .navbar {
    padding: 12px 18px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand__text {
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.brand__name {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #0e1b3d;
  letter-spacing: 0.2px;
}
.brand__name--light {
  color: #ffffff;
}
.brand__sub {
  font-size: 10.5px;
  font-weight: 600;
  color: #33a03e;
  letter-spacing: 1.6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #0e1b3d;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  position: relative;
  display: inline-block;
  padding: 9px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: #3d4560;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links li a:hover {
  color: #0e1b3d;
  background: #eef2f8;
}
.nav-links li a.active {
  color: #0e1b3d;
  background: #eef2f8;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open {
    max-height: 400px;
  }
  .nav-links li a {
    display: block;
    padding: 12px 10px;
    border-radius: 8px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: #0e1b3d;
}
.nav-phone .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.nav-phone:hover .icon-circle {
  background: #0e1b3d;
  transform: scale(1.08) rotate(8deg);
}
.nav-phone:hover .icon-circle svg {
  stroke: #fff;
}
@media (max-width: 640px) {
  .nav-phone .num {
    display: none;
  }
}

.hero {
  position: relative;
  background: linear-gradient(115deg, rgba(9, 16, 40, 0.95) 20%, rgba(10, 20, 50, 0.8) 60%, rgba(12, 24, 58, 0.6) 100%);
  overflow: hidden;
  padding: 90px 40px 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.9;
}
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-size: 47px;
  line-height: 1.16;
  color: #fff;
  max-width: 620px;
  margin-bottom: 22px;
}
.hero__title .accent {
  color: #8fc0ff;
}
.hero__lede {
  font-size: 16px;
  color: #a7b0c7;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__rating .dim {
  color: #8891a8;
  font-size: 14px;
}
.hero__rating .dim strong {
  color: #fff;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 56px 20px 60px;
  }
  .hero__title {
    font-size: 30px;
  }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}

.emergency-card {
  background: linear-gradient(165deg, rgba(30, 50, 110, 0.55), rgba(15, 25, 60, 0.8));
  border: 1px solid rgba(120, 150, 220, 0.28);
  border-radius: 24px;
  padding: 30px 30px 32px;
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.emergency-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}
.emergency-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: #8fc0ff;
  margin-bottom: 14px;
}
.emergency-card__phone {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Poppins", system-ui, sans-serif;
}

.trust-strip {
  background: #ffffff;
  padding: 26px 40px;
}
.trust-strip__list {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-strip__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #0e1b3d;
  flex: 1;
  min-width: 140px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d6fd6;
  font-size: 16px;
}

.services {
  background: #f7f9fc;
  padding: 90px 40px;
}
@media (max-width: 640px) {
  .services {
    padding: 60px 20px;
  }
}

.services__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .services__grid {
    padding: 0 20px;
  }
}
.services__grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 30, 70, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 22px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 30, 70, 0.14);
}
.service-card__img {
  height: 170px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img {
  transform: scale(1.06);
}
.service-card h3 {
  font-size: 17px;
  margin: 18px 20px 8px;
}
.service-card p {
  font-size: 14px;
  margin: 0 20px 14px;
}
.service-card .link-arrow {
  margin: 0 20px;
}

.craft {
  background: #f7f9fc;
  padding: 90px 40px;
}
@media (max-width: 640px) {
  .craft {
    padding: 60px 20px;
  }
}

.craft__body {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .craft__body {
    padding: 0 20px;
  }
}
.craft__body {
  padding: 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .craft__body {
    grid-template-columns: 1fr;
  }
}

.craft__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 30, 70, 0.08);
}

.marker {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #3d6fd6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, background 0.25s ease;
  transform: translate(-50%, -50%);
}
.marker:hover {
  transform: translate(-50%, -50%) scale(1.15);
}
.marker--green, .marker.is-active {
  background: #3fb54a;
}
.marker.is-active {
  animation: spin-in 0.3s ease;
}

.craft__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.craft__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  color: #0e1b3d;
  cursor: pointer;
  transition: box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 1px 0 rgba(16, 30, 70, 0.03);
}
.craft__item:hover {
  box-shadow: 0 10px 30px rgba(16, 30, 70, 0.08);
}
.craft__item-title {
  font-weight: 600;
  margin-bottom: 4px;
}
.craft__item-desc {
  font-size: 13.5px;
  color: #8891a8;
  font-weight: 400;
  margin: 0;
}
.craft__item--active {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 30, 70, 0.08);
}

.num-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #132456;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.num-badge--green {
  background: #3fb54a;
}

.why {
  background: #f7f9fc;
  padding: 90px 40px;
}
@media (max-width: 640px) {
  .why {
    padding: 60px 20px;
  }
}

.why__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .why__grid {
    padding: 0 20px;
  }
}
.why__grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 1px 0 rgba(16, 30, 70, 0.03);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
  box-shadow: 0 18px 40px rgba(16, 30, 70, 0.14);
  transform: translateY(-4px);
}
.why-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 14px;
}

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #132456;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon-tile svg {
  width: 22px;
  height: 22px;
}

.closer-look {
  background: #0a1128;
  padding: 80px 40px 60px;
}
.closer-look__head {
  max-width: 1240px;
  margin: 0 auto 30px;
}
.closer-look__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.closer-look__title-row h2 {
  color: #ffffff;
  font-size: 28px;
}

.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.06);
}

.closer-look__track {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  height: 430px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .closer-look__track {
    height: auto;
  }
}

.closer-look__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.closer-look__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
@media (max-width: 900px) {
  .closer-look__slide {
    grid-template-columns: 1fr;
  }
}

.closer-look__img {
  background-size: cover;
  background-position: center;
  border-radius: 24px 0 0 24px;
}
@media (max-width: 900px) {
  .closer-look__img {
    border-radius: 24px 24px 0 0;
    height: 240px;
  }
}

.closer-look__panel {
  background: #132456;
  padding: 44px 40px;
  border-radius: 0 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.closer-look__panel h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 14px;
}
.closer-look__panel p {
  color: #a7b0c7;
  margin-bottom: 20px;
  font-size: 14.5px;
}
.closer-look__panel .check-list {
  margin-bottom: 26px;
}
.closer-look__panel .btn {
  align-self: flex-start;
}
@media (max-width: 900px) {
  .closer-look__panel {
    border-radius: 0 0 24px 24px;
    padding: 30px 24px;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.carousel-dots span, .carousel-dots button {
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
  border: none;
}
.carousel-dots .is-active {
  background: #3fb54a;
  width: 30px;
}

.split-cards {
  background: #f7f9fc;
  padding: 90px 40px;
}
@media (max-width: 640px) {
  .split-cards {
    padding: 60px 20px;
  }
}
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .split-cards {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.split-card {
  min-height: 300px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  transition: transform 0.3s ease;
}
.split-card:hover {
  transform: translateY(-5px);
}
.split-card h3 {
  color: #ffffff;
  font-size: 24px;
}
.split-card p {
  color: #e7eaf1;
  font-size: 14.5px;
  max-width: 420px;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.pill--green {
  background: #3fb54a;
  color: #fff;
}

.how-it-works {
  background: #f7f9fc;
  padding: 90px 40px;
}
@media (max-width: 640px) {
  .how-it-works {
    padding: 60px 20px;
  }
}

.steps {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .steps {
    padding: 0 20px;
  }
}
.steps {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.step:hover {
  box-shadow: 0 18px 40px rgba(16, 30, 70, 0.14);
  transform: translateY(-4px);
}
.step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.step__num {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #e7eaf1;
}
.step__arrow {
  color: #8fc0ff;
  font-size: 18px;
}
.step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
}

.testimonials {
  background: #f7f9fc;
  padding: 90px 40px;
}
@media (max-width: 640px) {
  .testimonials {
    padding: 60px 20px;
  }
}

.testimonials__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .testimonials__grid {
    padding: 0 20px;
  }
}
.testimonials__grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(16, 30, 70, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(16, 30, 70, 0.14);
}
.testimonial-card p {
  font-size: 14.5px;
  color: #16223f;
  margin: 14px 0 20px;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__person strong {
  display: block;
  font-size: 14.5px;
  color: #0e1b3d;
}
.testimonial-card__person span {
  font-size: 13px;
  color: #8891a8;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #132456;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq {
  background: #f7f9fc;
  padding: 90px 40px;
}
@media (max-width: 640px) {
  .faq {
    padding: 60px 20px;
  }
}

.faq__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .faq__grid {
    padding: 0 20px;
  }
}
.faq__grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }
}

.faq__intro h2 {
  font-size: 30px;
  margin-bottom: 14px;
}
.faq__intro .btn--outline {
  margin-top: 16px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #e7eaf1;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 600;
  color: #0e1b3d;
  cursor: pointer;
}
.faq-item__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  max-width: 640px;
}
.faq-item--open .faq-item__a {
  max-height: 200px;
}
.faq-item--open .faq-item__icon {
  background: #0e1b3d;
  color: #fff;
  transform: rotate(180deg);
}

.cta-banner {
  background: linear-gradient(120deg, #0e1b3d 0%, #132456 55%, #0e3b3a 100%);
  padding: 90px 40px;
  text-align: center;
  border-radius: 24px;
  max-width: 1240px;
  margin: 0 auto 80px;
}
.cta-banner h2 {
  color: #ffffff;
  font-size: 36px;
  max-width: 700px;
  margin: 0 auto 16px;
}
.cta-banner p {
  color: #a7b0c7;
  max-width: 560px;
  margin: 0 auto 30px;
}
.cta-banner__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-banner {
    padding: 60px 24px;
  }
  .cta-banner h2 {
    font-size: 26px;
  }
}

.site-footer {
  background: #0a1128;
  color: #a7b0c7;
}

.footer-cta {
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(120deg, #132456, #0e3b3a);
  border-radius: 24px;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(-60px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.footer-cta h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 6px;
}
.footer-cta p {
  color: #a7b0c7;
  font-size: 14px;
}
@media (max-width: 700px) {
  .footer-cta {
    flex-direction: column;
    text-align: center;
  }
}

.footer-main {
  max-width: 1240px;
  margin: -30px auto 0;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 0 20px 30px;
  }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li a {
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.footer-col li a:hover {
  color: #ffffff;
}
.footer-col .footer-contact li {
  font-size: 14.5px;
}
.footer-col--brand p {
  font-size: 14px;
  margin: 16px 0 20px;
  max-width: 300px;
}

.brand--footer {
  margin-bottom: 4px;
}

.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
  background: #3fb54a;
  border-color: #3fb54a;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom__links {
  display: flex;
  gap: 20px;
}
.footer-bottom a:hover {
  color: #ffffff;
}
@media (max-width: 560px) {
  .footer-bottom {
    padding: 20px;
    justify-content: center;
    text-align: center;
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0e1b3d;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 300;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #3fb54a;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   CARLISLE GLASS REPAIRS — SHARED STYLESHEET
   Design tokens
========================================================= */
:root{
  --navy-900:#0e1c47;
  --navy-800:#132456;
  --navy-700:#1a2f6b;
  --green:#3fb54a;
  --green-dark:#2f9a3a;
  --blue:#5b9bf5;
  --bg-light:#f4f8fc;
  --bg-white:#ffffff;
  --text-dark:#132456;
  --text-body:#5b6b85;
  --text-muted:#8b97ad;
  --border:#e3eaf3;

  --font-head:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;

  --radius-md:14px;
  --radius-lg:20px;
  --shadow-card:0 20px 45px -25px rgba(19,36,86,0.35);
  --container:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--bg-white);
  line-height:1.6;
}
h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--text-dark);
  margin:0 0 14px;
  line-height:1.2;
}
p{ margin:0 0 16px; }
ul{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
:focus-visible{ outline:3px solid var(--blue); outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:13px;
  letter-spacing:.02em;
  color:var(--green);
  margin-bottom:14px;
}
.eyebrow--dark{ color:var(--green-dark); }
.eyebrow--light{ color:#8fe3a0; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn--quote{ background:var(--green); color:#fff; }
.btn--quote:hover{ background:var(--green-dark); }
.btn--dark{ background:var(--navy-800); color:#fff; }
.btn--dark:hover{ background:var(--navy-700); }
.btn--green{ background:var(--green); color:#fff; }
.btn--green:hover{ background:var(--green-dark); }
.btn--outline{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.55); }
.btn--outline:hover{ background:rgba(255,255,255,.1); }

/* =========================================================
   TOPBAR
========================================================= */
.topbar{
  background:var(--navy-900);
  color:#dbe6ff;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 20px;
}
.dot{ width:7px; height:7px; border-radius:50%; background:var(--green); display:inline-block; margin-right:8px; }
.dot--pulse{ box-shadow:0 0 0 0 rgba(63,181,74,.6); animation:pulse 2s infinite; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(63,181,74,.55); }
  70%{ box-shadow:0 0 0 7px rgba(63,181,74,0); }
  100%{ box-shadow:0 0 0 0 rgba(63,181,74,0); }
}
.topbar__sep{ opacity:.4; }
.topbar__call{ font-weight:600; color:#fff; }
.topbar__call:hover{ color:var(--green); }

/* =========================================================
   NAVBAR
========================================================= */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.navbar{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ width:38px; height:38px; flex-shrink:0; }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--font-head); font-weight:800; font-size:16px; color:var(--navy-800); letter-spacing:.02em; }
.brand__sub{ font-family:var(--font-body); font-weight:600; font-size:10px; color:var(--green); letter-spacing:.14em; }

.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-weight:500; font-size:15px; color:var(--text-dark); padding:6px 2px; position:relative; }
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--green);
  transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--green-dark); }

.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-phone{ display:flex; align-items:center; gap:10px; font-weight:600; color:var(--text-dark); }
.icon-circle{
  width:34px; height:34px; border-radius:50%; background:var(--bg-light);
  display:flex; align-items:center; justify-content:center;
}

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy-800); border-radius:2px; }



.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:13px;
  letter-spacing:.02em;
  color:var(--green);
  margin-bottom:14px;
}
.eyebrow--dark{ color:var(--green-dark); }
.eyebrow--light{ color:#8fe3a0; }

/* Reusable "lead" text: 18px / weight 600, used on intro paragraphs */
.lead{
  font-size:18px;
  font-weight:600;
  line-height:1.55;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn--quote{ background:var(--green); color:#fff; }
.btn--quote:hover{ background:var(--green-dark); }
.btn--dark{ background:var(--navy-800); color:#fff; }
.btn--dark:hover{ background:var(--navy-700); }
.btn--green{ background:var(--green); color:#fff; }
.btn--green:hover{ background:var(--green-dark); }
.btn--outline{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.55); }
.btn--outline:hover{ background:rgba(255,255,255,.1); }

/* =========================================================
   TOPBAR
========================================================= */
.topbar{
  background:var(--navy-900);
  color:#dbe6ff;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 20px;
}
.dot{ width:7px; height:7px; border-radius:50%; background:var(--green); display:inline-block; margin-right:8px; }
.dot--pulse{ box-shadow:0 0 0 0 rgba(63,181,74,.6); animation:pulse 2s infinite; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(63,181,74,.55); }
  70%{ box-shadow:0 0 0 7px rgba(63,181,74,0); }
  100%{ box-shadow:0 0 0 0 rgba(63,181,74,0); }
}
.topbar__sep{ opacity:.4; }
.topbar__call{ font-weight:600; color:#fff; }
.topbar__call:hover{ color:var(--green); }

/* =========================================================
   NAVBAR
========================================================= */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.navbar{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ width:38px; height:38px; flex-shrink:0; }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--font-head); font-weight:800; font-size:16px; color:var(--navy-800); letter-spacing:.02em; }
.brand__sub{ font-family:var(--font-body); font-weight:600; font-size:10px; color:var(--green); letter-spacing:.14em; }

.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-weight:500; font-size:15px; color:var(--text-dark); padding:6px 2px; position:relative; }
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--green);
  transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--green-dark); }

.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-phone{ display:flex; align-items:center; gap:10px; font-weight:600; color:var(--text-dark); }
.icon-circle{
  width:34px; height:34px; border-radius:50%; background:var(--bg-light);
  display:flex; align-items:center; justify-content:center;
}

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy-800); border-radius:2px; }

/* =========================================================
   SERVICES PAGE HERO
========================================================= */
.services-hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.services-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.55;
}
.services-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 35%, rgba(14,28,71,.55) 75%, rgba(14,28,71,.25) 100%);
}
.services-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:70px 24px;
  color:#fff;
  max-width:640px;
}
.services-hero__inner h1{ color:#fff; font-size:clamp(30px,4.2vw,44px); font-weight:700; }
.services-hero__inner p{ color:#c7d4ee; font-size:18px; font-weight:600; max-width:520px; }
.services-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   SERVICES GRID
========================================================= */
.services-grid{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.service-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  align-items:stretch;
}
.service-row--reverse{ direction:rtl; }
.service-row--reverse > *{ direction:ltr; }
.service-row__media{ overflow:hidden; min-height:320px; }
.service-row__media img{ width:100%; height:100%; object-fit:cover; }
.service-row__content{
  padding:44px 46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-row__index{
  font-family:var(--font-head);
  font-weight:700;
  font-size:13px;
  color:var(--green-dark);
  letter-spacing:.08em;
  margin-bottom:10px;
}
.service-row__content h2{ font-size:26px; }
.service-row__content p{ font-size:15px; }
.service-row__list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 20px;
  margin-bottom:26px;
}
.service-row__list li{
  position:relative;
  padding-left:20px;
  font-size:14px;
  color:var(--text-body);
}
.service-row__list li::before{
  content:'';
  position:absolute; left:0; top:7px;
  width:7px; height:7px;
  border-radius:50%;
  background:var(--green);
}
.service-row .btn{ align-self:flex-start; }

/* =========================================================
   HOW IT WORKS
========================================================= */
.how-it-works{
  background:var(--bg-light);
  padding:80px 24px;
  text-align:center;
}
.how-it-works__head{ max-width:640px; margin:0 auto 50px; }
.how-it-works__head h2{ font-size:clamp(26px,3vw,34px); }
.steps{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  text-align:left;
}
.step{ padding:6px 4px; }
.step__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:38px;
  color:#d4deee;
  margin-bottom:10px;
}
.step h3{ font-size:18px; margin-bottom:8px; }
.step p{ font-size:14px; margin:0; }

/* =========================================================
   ABOUT — HERO
========================================================= */
.about-hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.about-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.5;
}
.about-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 40%, rgba(14,28,71,.5) 80%, rgba(14,28,71,.2) 100%);
}
.about-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:70px 24px;
  color:#fff;
  max-width:640px;
}
.about-hero__inner h1{ color:#fff; font-size:clamp(30px,4.2vw,44px); font-weight:700; }
.about-hero__inner p{ color:#c7d4ee; max-width:520px; }
.about-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   ABOUT — OUR STORY (split section)
========================================================= */
.story{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.story__media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.story__media img{ width:100%; height:100%; object-fit:cover; min-height:360px; }
.story__content h2{ font-size:clamp(24px,2.6vw,32px); }
.story__content p{ font-size:15px; }

/* =========================================================
   ABOUT — STATS BAR
========================================================= */
.stats-bar{
  background:var(--navy-900);
  padding:56px 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:var(--container);
  margin:0 auto;
  text-align:center;
}
.stat__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:clamp(30px,3.4vw,42px);
  color:var(--blue);
  margin-bottom:6px;
}
.stat__label{ font-size:14px; color:#c7d4ee; }

/* =========================================================
   ABOUT — VALUES
========================================================= */
.values{
  background:var(--bg-light);
  padding:80px 24px;
  text-align:center;
}
.values__head{ max-width:640px; margin:0 auto 50px; }
.values__head h2{ font-size:clamp(26px,3vw,34px); }
.value-cards{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:34px 30px;
  text-align:left;
  box-shadow:var(--shadow-card);
}
.value-card__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:22px;
  color:var(--blue);
  margin-bottom:14px;
}
.value-card h3{ font-size:18px; margin-bottom:8px; }
.value-card p{ font-size:14.5px; margin:0; }

/* =========================================================
   ABOUT — TESTIMONIALS
========================================================= */
.testimonials{
  background:#eef3fa;
  padding:80px 24px;
  text-align:center;
}
.testimonials__head{ max-width:640px; margin:0 auto 50px; }
.testimonials__head h2{ font-size:clamp(26px,3vw,34px); }
.testimonial-cards{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card{
  background:#fff;
  border-radius:var(--radius-md);
  padding:30px 28px;
  text-align:left;
  box-shadow:var(--shadow-card);
}
.stars{ color:var(--green); letter-spacing:2px; font-size:14px; display:block; margin-bottom:12px; }
.testimonial-card p{ font-size:14.5px; margin-bottom:20px; }
.testimonial-card__author{ display:flex; align-items:center; gap:12px; }
.testimonial-card__author div{ display:flex; flex-direction:column; font-size:13px; }
.testimonial-card__author strong{ font-size:14.5px; color:var(--text-dark); }
.avatar{
  width:38px; height:38px; border-radius:50%;
  background:var(--navy-800); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; flex-shrink:0;
}

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner{
  margin:80px 24px;
  max-width:calc(var(--container) + 48px);
  margin-inline:auto;
  border-radius:var(--radius-lg);
  background:linear-gradient(120deg, var(--navy-900) 30%, #16413a 100%);
  padding:70px 40px;
  text-align:center;
}
.cta-banner__inner{ max-width:620px; margin:0 auto; }
.cta-banner__inner h2{ color:#fff; font-size:clamp(26px,3.4vw,36px); }
.cta-banner__inner p{ color:#c7d4ee; font-size:15.5px; }
.cta-banner__actions{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:26px;
  flex-wrap:wrap;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background:var(--navy-900); color:#c7d4ee; }
.footer-top{
  max-width:var(--container);
  margin:0 auto;
  padding:44px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}
.footer-top h3{ color:#fff; font-size:20px; margin-bottom:6px; }
.footer-top p{ margin:0; font-size:14px; }

.footer-main{
  max-width:var(--container);
  margin:0 auto;
  padding:50px 24px;
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:32px;
}
.footer-col h4{ color:#fff; font-size:15px; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color:#aebbd8; }
.footer-col a:hover{ color:var(--green); }
.footer-contact li{ font-size:14px; color:#aebbd8; }
.brand--footer .brand__name{ color:#fff; }
.footer-col--brand p{ font-size:13.5px; margin:16px 0 18px; color:#9fadc9; }
.social-links{ display:flex; gap:10px; }
.social-links a{
  width:32px; height:32px; border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:#fff;
}
.social-links a:hover{ background:var(--green); border-color:var(--green); }

.footer-bottom{
  max-width:var(--container);
  margin:0 auto;
  padding:20px 24px 34px;
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:#8394b5;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom__links a{ margin-left:16px; color:#8394b5; }
.footer-bottom__links a:hover{ color:#fff; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:960px){
  .steps{ grid-template-columns:repeat(2,1fr); }
  .footer-main{ grid-template-columns:1fr 1fr; }
  .value-cards, .testimonial-cards{ grid-template-columns:1fr 1fr; }
}

@media (max-width:820px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; flex-direction:column; align-items:flex-start;
    padding:18px 24px; gap:14px;
    border-bottom:1px solid var(--border);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-actions .num{ display:none; }
  .service-row, .service-row--reverse{ grid-template-columns:1fr; direction:ltr; }
  .service-row__media{ min-height:220px; }
  .service-row__list{ grid-template-columns:1fr; }
  .story{ grid-template-columns:1fr; }
  .stats-bar{ grid-template-columns:repeat(2,1fr); gap:32px 0; }
}

@media (max-width:560px){
  .topbar{ flex-wrap:wrap; text-align:center; }
  .steps{ grid-template-columns:1fr; }
  .footer-main{ grid-template-columns:1fr; }
  .footer-top{ flex-direction:column; align-items:flex-start; }
  .cta-banner{ padding:50px 24px; }
  .value-cards, .testimonial-cards{ grid-template-columns:1fr; }
}
/* =========================================================
   CARLISLE GLASS REPAIRS — SHARED STYLESHEET
   Design tokens
========================================================= */
:root{
  --navy-900:#0e1c47;
  --navy-800:#132456;
  --navy-700:#1a2f6b;
  --green:#3fb54a;
  --green-dark:#2f9a3a;
  --blue:#5b9bf5;
  --bg-light:#f4f8fc;
  --bg-white:#ffffff;
  --text-dark:#132456;
  --text-body:#5b6b85;
  --text-muted:#8b97ad;
  --border:#e3eaf3;

  --font-head:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;

  --radius-md:14px;
  --radius-lg:20px;
  --shadow-card:0 20px 45px -25px rgba(19,36,86,0.35);
  --container:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--bg-white);
  line-height:1.6;
}
h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--text-dark);
  margin:0 0 14px;
  line-height:1.2;
}
p{ margin:0 0 16px; }
ul{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
:focus-visible{ outline:3px solid var(--blue); outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:13px;
  letter-spacing:.02em;
  color:var(--green);
  margin-bottom:14px;
}
.eyebrow--dark{ color:var(--green-dark); }
.eyebrow--light{ color:#8fe3a0; }

/* Reusable "lead" text: 18px / weight 600, used on intro paragraphs */
.lead{
  font-size:18px;
  font-weight:600;
  line-height:1.55;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn--quote{ background:var(--green); color:#fff; }
.btn--quote:hover{ background:var(--green-dark); }
.btn--dark{ background:var(--navy-800); color:#fff; }
.btn--dark:hover{ background:var(--navy-700); }
.btn--green{ background:var(--green); color:#fff; }
.btn--green:hover{ background:var(--green-dark); }
.btn--outline{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.55); }
.btn--outline:hover{ background:rgba(255,255,255,.1); }

/* =========================================================
   TOPBAR
========================================================= */
.topbar{
  background:var(--navy-900);
  color:#dbe6ff;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 20px;
}
.dot{ width:7px; height:7px; border-radius:50%; background:var(--green); display:inline-block; margin-right:8px; }
.dot--pulse{ box-shadow:0 0 0 0 rgba(63,181,74,.6); animation:pulse 2s infinite; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(63,181,74,.55); }
  70%{ box-shadow:0 0 0 7px rgba(63,181,74,0); }
  100%{ box-shadow:0 0 0 0 rgba(63,181,74,0); }
}
.topbar__sep{ opacity:.4; }
.topbar__call{ font-weight:600; color:#fff; }
.topbar__call:hover{ color:var(--green); }

/* =========================================================
   NAVBAR
========================================================= */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.navbar{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ width:38px; height:38px; flex-shrink:0; }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--font-head); font-weight:800; font-size:16px; color:var(--navy-800); letter-spacing:.02em; }
.brand__sub{ font-family:var(--font-body); font-weight:600; font-size:10px; color:var(--green); letter-spacing:.14em; }

.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-weight:500; font-size:15px; color:var(--text-dark); padding:6px 2px; position:relative; }
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--green);
  transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--green-dark); }

.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-phone{ display:flex; align-items:center; gap:10px; font-weight:600; color:var(--text-dark); }
.icon-circle{
  width:34px; height:34px; border-radius:50%; background:var(--bg-light);
  display:flex; align-items:center; justify-content:center;
}

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy-800); border-radius:2px; }

/* =========================================================
   SERVICES PAGE HERO
========================================================= */
.services-hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.services-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.55;
}
.services-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 35%, rgba(14,28,71,.55) 75%, rgba(14,28,71,.25) 100%);
}
.services-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:70px 24px;
  color:#fff;
  max-width:640px;
}
.services-hero__inner h1{ color:#fff; font-size:clamp(30px,4.2vw,44px); font-weight:700; }
.services-hero__inner p{ color:#c7d4ee; font-size:18px; font-weight:600; max-width:520px; }
.services-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   SERVICES GRID
========================================================= */
.services-grid{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.service-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  align-items:stretch;
}
.service-row--reverse{ direction:rtl; }
.service-row--reverse > *{ direction:ltr; }
.service-row__media{ overflow:hidden; min-height:320px; }
.service-row__media img{ width:100%; height:100%; object-fit:cover; }
.service-row__content{
  padding:44px 46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-row__index{
  font-family:var(--font-head);
  font-weight:700;
  font-size:13px;
  color:var(--green-dark);
  letter-spacing:.08em;
  margin-bottom:10px;
}
.service-row__content h2{ font-size:26px; }
.service-row__content p{ font-size:15px; }
.service-row__list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 20px;
  margin-bottom:26px;
}
.service-row__list li{
  position:relative;
  padding-left:20px;
  font-size:14px;
  color:var(--text-body);
}
.service-row__list li::before{
  content:'';
  position:absolute; left:0; top:7px;
  width:7px; height:7px;
  border-radius:50%;
  background:var(--green);
}
.service-row .btn{ align-self:flex-start; }

/* =========================================================
   HOW IT WORKS
========================================================= */
.how-it-works{
  background:var(--bg-light);
  padding:80px 24px;
  text-align:center;
}
.how-it-works__head{ max-width:640px; margin:0 auto 50px; }
.how-it-works__head h2{ font-size:clamp(26px,3vw,34px); }
.steps{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  text-align:left;
}
.step{ padding:6px 4px; }
.step__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:38px;
  color:#d4deee;
  margin-bottom:10px;
}
.step h3{ font-size:18px; margin-bottom:8px; }
.step p{ font-size:14px; margin:0; }

/* =========================================================
   ABOUT — HERO
========================================================= */
.about-hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.about-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.5;
}
.about-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 40%, rgba(14,28,71,.5) 80%, rgba(14,28,71,.2) 100%);
}
.about-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:70px 24px;
  color:#fff;
  max-width:640px;
}
.about-hero__inner h1{ color:#fff; font-size:clamp(30px,4.2vw,44px); font-weight:700; }
.about-hero__inner p{ color:#c7d4ee; max-width:520px; }
.about-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   ABOUT — OUR STORY (split section)
========================================================= */
.story{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.story__media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.story__media img{ width:100%; height:100%; object-fit:cover; min-height:360px; }
.story__content h2{ font-size:clamp(24px,2.6vw,32px); }
.story__content p{ font-size:15px; }

/* =========================================================
   ABOUT — STATS BAR
========================================================= */
.stats-bar{
  background:var(--navy-900);
  padding:56px 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:var(--container);
  margin:0 auto;
  text-align:center;
}
.stat__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:clamp(30px,3.4vw,42px);
  color:var(--blue);
  margin-bottom:6px;
}
.stat__label{ font-size:14px; color:#c7d4ee; }

/* =========================================================
   ABOUT — VALUES
========================================================= */
.values{
  background:var(--bg-light);
  padding:80px 24px;
  text-align:center;
}
.values__head{ max-width:640px; margin:0 auto 50px; }
.values__head h2{ font-size:clamp(26px,3vw,34px); }
.value-cards{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:34px 30px;
  text-align:left;
  box-shadow:var(--shadow-card);
}
.value-card__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:22px;
  color:var(--blue);
  margin-bottom:14px;
}
.value-card h3{ font-size:18px; margin-bottom:8px; }
.value-card p{ font-size:14.5px; margin:0; }

/* =========================================================
   ABOUT — TESTIMONIALS
========================================================= */
.testimonials{
  background:#eef3fa;
  padding:80px 24px;
  text-align:center;
}
.testimonials__head{ max-width:640px; margin:0 auto 50px; }
.testimonials__head h2{ font-size:clamp(26px,3vw,34px); }
.testimonial-cards{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card{
  background:#fff;
  border-radius:var(--radius-md);
  padding:30px 28px;
  text-align:left;
  box-shadow:var(--shadow-card);
}
.stars{ color:var(--green); letter-spacing:2px; font-size:14px; display:block; margin-bottom:12px; }
.testimonial-card p{ font-size:14.5px; margin-bottom:20px; }
.testimonial-card__author{ display:flex; align-items:center; gap:12px; }
.testimonial-card__author div{ display:flex; flex-direction:column; font-size:13px; }
.testimonial-card__author strong{ font-size:14.5px; color:var(--text-dark); }
.avatar{
  width:38px; height:38px; border-radius:50%;
  background:var(--navy-800); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; flex-shrink:0;
}

/* =========================================================
   FAQ — HERO
========================================================= */
.faq-hero{
  position:relative;
  min-height:320px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.faq-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.35;
}
.faq-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 45%, rgba(14,28,71,.55) 85%, rgba(14,28,71,.3) 100%);
}
.faq-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:64px 24px;
  color:#fff;
  max-width:680px;
}
.faq-hero__inner h1{ color:#fff; font-size:clamp(28px,4vw,42px); font-weight:700; }
.faq-hero__inner p{ color:#c7d4ee; margin:0; max-width:560px; }
.faq-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   FAQ — ACCORDION
========================================================= */
.faq-body{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:flex;
  flex-direction:column;
  gap:44px;
}
.faq-group__label{ display:block; margin-bottom:16px; }

.accordion{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.accordion-item{ border-bottom:1px solid var(--border); }
.accordion-item:last-child{ border-bottom:none; }

.accordion-item__trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  padding:22px 26px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:16px;
  color:var(--text-dark);
}

.accordion-item__icon{
  position:relative;
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--bg-light);
}
.accordion-item__icon::before,
.accordion-item__icon::after{
  content:'';
  position:absolute;
  top:50%; left:50%;
  width:10px; height:2px;
  background:var(--text-dark);
  transform:translate(-50%,-50%);
  transition:transform .2s ease, opacity .2s ease;
}
.accordion-item__icon::after{ transform:translate(-50%,-50%) rotate(90deg); }
.accordion-item.is-open .accordion-item__icon::before{ transform:translate(-50%,-50%) rotate(45deg); }
.accordion-item.is-open .accordion-item__icon::after{ transform:translate(-50%,-50%) rotate(-45deg); }

.accordion-item__panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.accordion-item.is-open .accordion-item__panel{ max-height:220px; }
.accordion-item__panel p{
  margin:0;
  padding:0 26px 22px;
  font-size:14.5px;
  color:var(--text-body);
}

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner{
  margin:80px 24px;
  max-width:calc(var(--container) + 48px);
  margin-inline:auto;
  border-radius:var(--radius-lg);
  background:linear-gradient(120deg, var(--navy-900) 30%, #16413a 100%);
  padding:70px 40px;
  text-align:center;
}
.cta-banner__inner{ max-width:620px; margin:0 auto; }
.cta-banner__inner h2{ color:#fff; font-size:clamp(26px,3.4vw,36px); }
.cta-banner__inner p{ color:#c7d4ee; font-size:15.5px; }
.cta-banner__actions{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:26px;
  flex-wrap:wrap;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background:var(--navy-900); color:#c7d4ee; }
.footer-top{
  max-width:var(--container);
  margin:0 auto;
  padding:44px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}
.footer-top h3{ color:#fff; font-size:20px; margin-bottom:6px; }
.footer-top p{ margin:0; font-size:14px; }

.footer-main{
  max-width:var(--container);
  margin:0 auto;
  padding:50px 24px;
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:32px;
}
.footer-col h4{ color:#fff; font-size:15px; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color:#aebbd8; }
.footer-col a:hover{ color:var(--green); }
.footer-contact li{ font-size:14px; color:#aebbd8; }
.brand--footer .brand__name{ color:#fff; }
.footer-col--brand p{ font-size:13.5px; margin:16px 0 18px; color:#9fadc9; }
.social-links{ display:flex; gap:10px; }
.social-links a{
  width:32px; height:32px; border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:#fff;
}
.social-links a:hover{ background:var(--green); border-color:var(--green); }

.footer-bottom{
  max-width:var(--container);
  margin:0 auto;
  padding:20px 24px 34px;
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:#8394b5;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom__links a{ margin-left:16px; color:#8394b5; }
.footer-bottom__links a:hover{ color:#fff; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:960px){
  .steps{ grid-template-columns:repeat(2,1fr); }
  .footer-main{ grid-template-columns:1fr 1fr; }
  .value-cards, .testimonial-cards{ grid-template-columns:1fr 1fr; }
}

@media (max-width:820px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; flex-direction:column; align-items:flex-start;
    padding:18px 24px; gap:14px;
    border-bottom:1px solid var(--border);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-actions .num{ display:none; }
  .service-row, .service-row--reverse{ grid-template-columns:1fr; direction:ltr; }
  .service-row__media{ min-height:220px; }
  .service-row__list{ grid-template-columns:1fr; }
  .story{ grid-template-columns:1fr; }
  .stats-bar{ grid-template-columns:repeat(2,1fr); gap:32px 0; }
}

@media (max-width:560px){
  .topbar{ flex-wrap:wrap; text-align:center; }
  .steps{ grid-template-columns:1fr; }
  .footer-main{ grid-template-columns:1fr; }
  .footer-top{ flex-direction:column; align-items:flex-start; }
  .cta-banner{ padding:50px 24px; }
  .value-cards, .testimonial-cards{ grid-template-columns:1fr; }
}
/* =========================================================
   CARLISLE GLASS REPAIRS — SHARED STYLESHEET
   Design tokens
========================================================= */
:root{
  --navy-900:#0e1c47;
  --navy-800:#132456;
  --navy-700:#1a2f6b;
  --green:#3fb54a;
  --green-dark:#2f9a3a;
  --blue:#5b9bf5;
  --bg-light:#f4f8fc;
  --bg-white:#ffffff;
  --text-dark:#132456;
  --text-body:#5b6b85;
  --text-muted:#8b97ad;
  --border:#e3eaf3;

  --font-head:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;

  --radius-md:14px;
  --radius-lg:20px;
  --shadow-card:0 20px 45px -25px rgba(19,36,86,0.35);
  --container:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--bg-white);
  line-height:1.6;
}
h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--text-dark);
  margin:0 0 14px;
  line-height:1.2;
}
p{ margin:0 0 16px; }
ul{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
:focus-visible{ outline:3px solid var(--blue); outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:13px;
  letter-spacing:.02em;
  color:var(--green);
  margin-bottom:14px;
}
.eyebrow--dark{ color:var(--green-dark); }
.eyebrow--light{ color:#8fe3a0; }

/* Reusable "lead" text: 18px / weight 600, used on intro paragraphs */
.lead{
  font-size:18px;
  font-weight:600;
  line-height:1.55;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn--quote{ background:var(--green); color:#fff; }
.btn--quote:hover{ background:var(--green-dark); }
.btn--dark{ background:var(--navy-800); color:#fff; }
.btn--dark:hover{ background:var(--navy-700); }
.btn--green{ background:var(--green); color:#fff; }
.btn--green:hover{ background:var(--green-dark); }
.btn--outline{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.55); }
.btn--outline:hover{ background:rgba(255,255,255,.1); }

/* =========================================================
   TOPBAR
========================================================= */
.topbar{
  background:var(--navy-900);
  color:#dbe6ff;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 20px;
}
.dot{ width:7px; height:7px; border-radius:50%; background:var(--green); display:inline-block; margin-right:8px; }
.dot--pulse{ box-shadow:0 0 0 0 rgba(63,181,74,.6); animation:pulse 2s infinite; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(63,181,74,.55); }
  70%{ box-shadow:0 0 0 7px rgba(63,181,74,0); }
  100%{ box-shadow:0 0 0 0 rgba(63,181,74,0); }
}
.topbar__sep{ opacity:.4; }
.topbar__call{ font-weight:600; color:#fff; }
.topbar__call:hover{ color:var(--green); }

/* =========================================================
   NAVBAR
========================================================= */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.navbar{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ width:38px; height:38px; flex-shrink:0; }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--font-head); font-weight:800; font-size:16px; color:var(--navy-800); letter-spacing:.02em; }
.brand__sub{ font-family:var(--font-body); font-weight:600; font-size:10px; color:var(--green); letter-spacing:.14em; }

.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-weight:500; font-size:15px; color:var(--text-dark); padding:6px 2px; position:relative; }
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--green);
  transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--green-dark); }

.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-phone{ display:flex; align-items:center; gap:10px; font-weight:600; color:var(--text-dark); }
.icon-circle{
  width:34px; height:34px; border-radius:50%; background:var(--bg-light);
  display:flex; align-items:center; justify-content:center;
}

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy-800); border-radius:2px; }

/* =========================================================
   SERVICES PAGE HERO
========================================================= */
.services-hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.services-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.55;
}
.services-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 35%, rgba(14,28,71,.55) 75%, rgba(14,28,71,.25) 100%);
}
.services-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:70px 24px;
  color:#fff;
  max-width:640px;
}
.services-hero__inner h1{ color:#fff; font-size:clamp(30px,4.2vw,44px); font-weight:700; }
.services-hero__inner p{ color:#c7d4ee; font-size:18px; font-weight:600; max-width:520px; }
.services-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   SERVICES GRID
========================================================= */
.services-grid{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.service-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  align-items:stretch;
}
.service-row--reverse{ direction:rtl; }
.service-row--reverse > *{ direction:ltr; }
.service-row__media{ overflow:hidden; min-height:320px; }
.service-row__media img{ width:100%; height:100%; object-fit:cover; }
.service-row__content{
  padding:44px 46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-row__index{
  font-family:var(--font-head);
  font-weight:700;
  font-size:13px;
  color:var(--green-dark);
  letter-spacing:.08em;
  margin-bottom:10px;
}
.service-row__content h2{ font-size:26px; }
.service-row__content p{ font-size:15px; }
.service-row__list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 20px;
  margin-bottom:26px;
}
.service-row__list li{
  position:relative;
  padding-left:20px;
  font-size:14px;
  color:var(--text-body);
}
.service-row__list li::before{
  content:'';
  position:absolute; left:0; top:7px;
  width:7px; height:7px;
  border-radius:50%;
  background:var(--green);
}
.service-row .btn{ align-self:flex-start; }

/* =========================================================
   HOW IT WORKS
========================================================= */
.how-it-works{
  background:var(--bg-light);
  padding:80px 24px;
  text-align:center;
}
.how-it-works__head{ max-width:640px; margin:0 auto 50px; }
.how-it-works__head h2{ font-size:clamp(26px,3vw,34px); }
.steps{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  text-align:left;
}
.step{ padding:6px 4px; }
.step__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:38px;
  color:#d4deee;
  margin-bottom:10px;
}
.step h3{ font-size:18px; margin-bottom:8px; }
.step p{ font-size:14px; margin:0; }

/* =========================================================
   ABOUT — HERO
========================================================= */
.about-hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.about-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.5;
}
.about-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 40%, rgba(14,28,71,.5) 80%, rgba(14,28,71,.2) 100%);
}
.about-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:70px 24px;
  color:#fff;
  max-width:640px;
}
.about-hero__inner h1{ color:#fff; font-size:clamp(30px,4.2vw,44px); font-weight:700; }
.about-hero__inner p{ color:#c7d4ee; max-width:520px; }
.about-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   ABOUT — OUR STORY (split section)
========================================================= */
.story{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.story__media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.story__media img{ width:100%; height:100%; object-fit:cover; min-height:360px; }
.story__content h2{ font-size:clamp(24px,2.6vw,32px); }
.story__content p{ font-size:15px; }

/* =========================================================
   ABOUT — STATS BAR
========================================================= */
.stats-bar{
  background:var(--navy-900);
  padding:56px 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:var(--container);
  margin:0 auto;
  text-align:center;
}
.stat__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:clamp(30px,3.4vw,42px);
  color:var(--blue);
  margin-bottom:6px;
}
.stat__label{ font-size:14px; color:#c7d4ee; }

/* =========================================================
   ABOUT — VALUES
========================================================= */
.values{
  background:var(--bg-light);
  padding:80px 24px;
  text-align:center;
}
.values__head{ max-width:640px; margin:0 auto 50px; }
.values__head h2{ font-size:clamp(26px,3vw,34px); }
.value-cards{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:34px 30px;
  text-align:left;
  box-shadow:var(--shadow-card);
}
.value-card__num{
  display:block;
  font-family:var(--font-head);
  font-weight:800;
  font-size:22px;
  color:var(--blue);
  margin-bottom:14px;
}
.value-card h3{ font-size:18px; margin-bottom:8px; }
.value-card p{ font-size:14.5px; margin:0; }

/* =========================================================
   ABOUT — TESTIMONIALS
========================================================= */
.testimonials{
  background:#eef3fa;
  padding:80px 24px;
  text-align:center;
}
.testimonials__head{ max-width:640px; margin:0 auto 50px; }
.testimonials__head h2{ font-size:clamp(26px,3vw,34px); }
.testimonial-cards{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card{
  background:#fff;
  border-radius:var(--radius-md);
  padding:30px 28px;
  text-align:left;
  box-shadow:var(--shadow-card);
}
.stars{ color:var(--green); letter-spacing:2px; font-size:14px; display:block; margin-bottom:12px; }
.testimonial-card p{ font-size:14.5px; margin-bottom:20px; }
.testimonial-card__author{ display:flex; align-items:center; gap:12px; }
.testimonial-card__author div{ display:flex; flex-direction:column; font-size:13px; }
.testimonial-card__author strong{ font-size:14.5px; color:var(--text-dark); }
.avatar{
  width:38px; height:38px; border-radius:50%;
  background:var(--navy-800); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; flex-shrink:0;
}

/* =========================================================
   FAQ — HERO
========================================================= */
.faq-hero{
  position:relative;
  min-height:320px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.faq-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.35;
}
.faq-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 45%, rgba(14,28,71,.55) 85%, rgba(14,28,71,.3) 100%);
}
.faq-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:64px 24px;
  color:#fff;
  max-width:680px;
}
.faq-hero__inner h1{ color:#fff; font-size:clamp(28px,4vw,42px); font-weight:700; }
.faq-hero__inner p{ color:#c7d4ee; margin:0; max-width:560px; }
.faq-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   FAQ — ACCORDION
========================================================= */
.faq-body{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:flex;
  flex-direction:column;
  gap:44px;
}
.faq-group__label{ display:block; margin-bottom:16px; }

.accordion{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.accordion-item{ border-bottom:1px solid var(--border); }
.accordion-item:last-child{ border-bottom:none; }

.accordion-item__trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  padding:22px 26px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:16px;
  color:var(--text-dark);
}

.accordion-item__icon{
  position:relative;
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--bg-light);
}
.accordion-item__icon::before,
.accordion-item__icon::after{
  content:'';
  position:absolute;
  top:50%; left:50%;
  width:10px; height:2px;
  background:var(--text-dark);
  transform:translate(-50%,-50%);
  transition:transform .2s ease, opacity .2s ease;
}
.accordion-item__icon::after{ transform:translate(-50%,-50%) rotate(90deg); }
.accordion-item.is-open .accordion-item__icon::before{ transform:translate(-50%,-50%) rotate(45deg); }
.accordion-item.is-open .accordion-item__icon::after{ transform:translate(-50%,-50%) rotate(-45deg); }

.accordion-item__panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.accordion-item.is-open .accordion-item__panel{ max-height:220px; }
.accordion-item__panel p{
  margin:0;
  padding:0 26px 22px;
  font-size:14.5px;
  color:var(--text-body);
}

/* =========================================================
   CONTACT — HERO
========================================================= */
.contact-hero{
  position:relative;
  min-height:320px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.contact-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.3;
}
.contact-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy-900) 45%, rgba(14,28,71,.6) 85%, rgba(14,28,71,.3) 100%);
}
.contact-hero__inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:64px 24px;
  color:#fff;
  max-width:680px;
}
.contact-hero__inner h1{ color:#fff; font-size:clamp(28px,4vw,42px); font-weight:700; }
.contact-hero__inner p{ color:#c7d4ee; margin:0; max-width:560px; }
.contact-hero .eyebrow{ color:#8fe3a0; }

/* =========================================================
   CONTACT — BODY
========================================================= */
.contact-body{
  max-width:var(--container);
  margin:70px auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:48px;
  align-items:start;
}

.contact-info h2{ font-size:clamp(24px,2.6vw,30px); }
.contact-info > .lead{ margin-bottom:28px; }

.info-card{
  display:flex;
  align-items:flex-start;
  gap:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:20px 22px;
  margin-bottom:16px;
}
.info-card__icon{
  width:44px; height:44px;
  border-radius:12px;
  background:var(--navy-800);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.info-card__label{ display:block; font-size:13px; color:var(--text-muted); margin-bottom:4px; }
.info-card__value{ display:block; font-family:var(--font-head); font-weight:700; font-size:17px; color:var(--text-dark); }
a.info-card__value:hover{ color:var(--green-dark); }
.info-card__note{ display:block; font-size:13px; color:var(--text-muted); margin-top:2px; }

.urgent-box{
  background:#eaf6ec;
  border:1px solid #cdeacf;
  border-radius:var(--radius-md);
  padding:24px 26px;
  margin-top:6px;
}
.urgent-box h3{ font-size:18px; margin-bottom:6px; }
.urgent-box p{ font-size:14px; margin-bottom:16px; }

/* =========================================================
   CONTACT — FORM
========================================================= */
.contact-form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:40px 44px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.form-field{ margin-bottom:20px; }
.form-field label{
  display:block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:14px;
  color:var(--text-dark);
  margin-bottom:8px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:13px 16px;
  font-family:var(--font-body);
  font-size:14.5px;
  color:var(--text-dark);
  background:#fff;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder{ color:var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(91,155,245,.15);
}
.form-field textarea{ resize:vertical; min-height:110px; }
.form-field select{ appearance:none; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235b6b85' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat:no-repeat; background-position:right 16px center; }

.file-upload{
  display:flex;
  align-items:center;
  gap:12px;
  border:1.5px dashed var(--border);
  border-radius:10px;
  padding:16px 18px;
  cursor:pointer;
  background:var(--bg-light);
  transition:border-color .15s ease, background .15s ease;
}
.file-upload:hover{ border-color:var(--blue); background:#eef4fd; }
.file-upload__icon{
  width:30px; height:30px; border-radius:50%;
  background:#e4ecfb;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.file-upload__text{ font-size:14px; color:var(--text-muted); }
.file-upload.has-file .file-upload__text{ color:var(--text-dark); font-weight:600; }

.btn--block{ width:100%; justify-content:center; }
.form-footnote{ text-align:center; font-size:13px; color:var(--text-muted); margin:14px 0 0; }

/* =========================================================
   CTA BANNER — compact row variant (Contact page)
========================================================= */
.cta-banner--compact{ padding:0; background:none; }
.cta-banner__row{
  background:var(--navy-900);
  border-radius:var(--radius-lg);
  padding:44px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.cta-banner__row h2{ color:#fff; font-size:24px; margin-bottom:6px; }
.cta-banner__row p{ color:#c7d4ee; font-size:14.5px; margin:0; }

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner{
  margin:80px 24px;
  max-width:calc(var(--container) + 48px);
  margin-inline:auto;
  border-radius:var(--radius-lg);
  background:linear-gradient(120deg, var(--navy-900) 30%, #16413a 100%);
  padding:70px 40px;
  text-align:center;
}
.cta-banner__inner{ max-width:620px; margin:0 auto; }
.cta-banner__inner h2{ color:#fff; font-size:clamp(26px,3.4vw,36px); }
.cta-banner__inner p{ color:#c7d4ee; font-size:15.5px; }
.cta-banner__actions{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:26px;
  flex-wrap:wrap;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background:var(--navy-900); color:#c7d4ee; }
.footer-top{
  max-width:var(--container);
  margin:0 auto;
  padding:44px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}
.footer-top h3{ color:#fff; font-size:20px; margin-bottom:6px; }
.footer-top p{ margin:0; font-size:14px; }

.footer-main{
  max-width:var(--container);
  margin:0 auto;
  padding:50px 24px;
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:32px;
}
.footer-col h4{ color:#fff; font-size:15px; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color:#aebbd8; }
.footer-col a:hover{ color:var(--green); }
.footer-contact li{ font-size:14px; color:#aebbd8; }
.brand--footer .brand__name{ color:#fff; }
.footer-col--brand p{ font-size:13.5px; margin:16px 0 18px; color:#9fadc9; }
.social-links{ display:flex; gap:10px; }
.social-links a{
  width:32px; height:32px; border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:#fff;
}
.social-links a:hover{ background:var(--green); border-color:var(--green); }

.footer-bottom{
  max-width:var(--container);
  margin:0 auto;
  padding:20px 24px 34px;
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:#8394b5;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom__links a{ margin-left:16px; color:#8394b5; }
.footer-bottom__links a:hover{ color:#fff; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:960px){
  .steps{ grid-template-columns:repeat(2,1fr); }
  .footer-main{ grid-template-columns:1fr 1fr; }
  .value-cards, .testimonial-cards{ grid-template-columns:1fr 1fr; }
  .contact-body{ grid-template-columns:1fr; }
}

@media (max-width:820px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; flex-direction:column; align-items:flex-start;
    padding:18px 24px; gap:14px;
    border-bottom:1px solid var(--border);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-actions .num{ display:none; }
  .service-row, .service-row--reverse{ grid-template-columns:1fr; direction:ltr; }
  .service-row__media{ min-height:220px; }
  .service-row__list{ grid-template-columns:1fr; }
  .story{ grid-template-columns:1fr; }
  .stats-bar{ grid-template-columns:repeat(2,1fr); gap:32px 0; }
}

@media (max-width:560px){
  .topbar{ flex-wrap:wrap; text-align:center; }
  .steps{ grid-template-columns:1fr; }
  .footer-main{ grid-template-columns:1fr; }
  .footer-top{ flex-direction:column; align-items:flex-start; }
  .cta-banner{ padding:50px 24px; }
  .value-cards, .testimonial-cards{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .contact-form-card{ padding:28px 24px; }
  .cta-banner__row{ text-align:center; justify-content:center; }
}


/* =========================================================
   SERVICES PAGE ONLY
   This file is intentionally scoped to .services-page
   so it does NOT conflict with the existing website CSS.
========================================================= */

.services-page .services-hero,
.services-page .service-feature,
.services-page .services,
.services-page .services-split,
.services-page .services-why,
.services-page .how-it-works,
.services-page .cta-banner{
    width:min(1180px,calc(100% - 48px));
    margin-left:auto;
    margin-right:auto;
}

/* ---------- Services Hero ---------- */

.services-page .services-hero{
    padding:70px 0 65px;
    min-height:0;
    display:block;
    overflow:visible;
    background:transparent;
}

.services-page .services-hero__inner{
    min-height:455px;
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
    border-radius:30px;
    background:#f7f9fc;
    box-shadow:0 18px 45px rgba(16,42,82,.12);
    position:relative;
    max-width:none;
    margin:0;
    padding:0;
}

.services-page .services-hero__copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px 65px;
    color:#132456;
    position:relative;
    z-index:2;
}

.services-page .services-hero__title{
    max-width:600px;
    color:#132456;
    font-family:"Poppins",sans-serif;
    font-size:46px;
    line-height:1.13;
    font-weight:700;
    letter-spacing:-.035em;
}

.services-page .services-hero__text{
    max-width:560px;
    margin-top:20px;
    color:#5b6b88;
    font-size:18px;
    line-height:1.7;
}

.services-page .services-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:13px;
    margin-top:30px;
}

.services-page .services-hero__image{
    min-height:455px;
    height:100%;
    overflow:hidden;
    position:relative;
    opacity:1;
}

.services-page .services-hero__image::before,
.services-page .services-hero__overlay,
.services-page .services-hero__bg{
    display:none !important;
}

.services-page .services-hero__image img{
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
    object-position:center;
}

/* ---------- Feature / Screenshot Style Card ---------- */

.services-page .service-feature{
    padding:0 0 95px;
    min-height:0;
    display:block;
    background:transparent;
    overflow:visible;
}

.services-page .service-feature__inner{
    min-height:460px;
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
    border-radius:30px;
    background:#fff;
    border:1px solid #eef1f5;
    box-shadow:0 10px 35px rgba(20,44,80,.10);
}

.services-page .service-feature__content{
    padding:48px 50px 45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#132456;
}

.services-page .service-feature__number{
    display:block;
    margin-bottom:8px;
    color:#1463c5;
    font-size:12px;
    line-height:1;
    font-weight:700;
    letter-spacing:.24em;
}

.services-page .service-feature__content h2{
    max-width:510px;
    color:#132456;
    font-family:"Poppins",sans-serif;
    font-size:32px;
    line-height:1.15;
    font-weight:700;
    letter-spacing:-.025em;
}

.services-page .service-feature__lead{
    max-width:560px;
    margin-top:16px;
    color:#5b6b88;
    font-size:18px;
    line-height:1.55;
}

.services-page .service-feature__points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 24px;
    margin-top:22px;
    margin-bottom:26px;
}

.services-page .service-point{
    display:grid;
    grid-template-columns:18px 1fr;
    gap:10px;
    align-items:start;
}

.services-page .service-point__icon{
    width:18px;
    height:18px;
    margin-top:3px;
    object-fit:contain;
}

.services-page .service-point h3{
    color:#17386f;
    font-family:"Inter",sans-serif;
    font-size:14px;
    line-height:1.35;
    font-weight:600;
}

.services-page .service-point p{
    margin-top:3px;
    color:#65738a;
    font-size:12px;
    line-height:1.45;
}

.services-page .service-feature__image{
    min-height:460px;
    height:100%;
    overflow:hidden;
}

.services-page .service-feature__image img{
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
    object-position:center;
}

/* ---------- Buttons used only on services page ---------- */

.services-page .btn{
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border:0;
    border-radius:28px;
    padding:12px 25px;
    font-size:14px;
    font-weight:700;
    line-height:1;
    text-decoration:none;
    transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
}

.services-page .btn:hover{
    transform:translateY(-2px);
}

.services-page .btn--quote,
.services-page .btn--emergency{
    color:#fff;
    background:#0b2d68;
    box-shadow:0 10px 20px rgba(11,45,104,.18);
}

.services-page .btn--quote:hover,
.services-page .btn--emergency:hover{
    background:#123f87;
}

.services-page .btn--outline{
    color:#0b2d68;
    background:#fff;
    border:1px solid #cdd8e6;
}

/* ---------- Service Grid ---------- */

.services-page .services{
    padding:0 0 100px;
    min-height:0;
    display:block;
    background:transparent;
}

.services-page .services__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
}

.services-page .service-card{
    overflow:hidden;
    border:1px solid #e5eaf1;
    border-radius:26px;
    background:#fff;
    box-shadow:0 10px 30px rgba(20,44,80,.06);
    transition:transform .3s ease,box-shadow .3s ease;
}

.services-page .service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(20,44,80,.12);
}

.services-page .service-card__img{
    width:100%;
    height:270px;
    overflow:hidden;
    background:#eef3f8;
}

.services-page .service-card__img img{
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
    transition:transform .45s ease;
}

.services-page .service-card:hover .service-card__img img{
    transform:scale(1.04);
}

.services-page .service-card__content{
    padding:28px 30px 32px;
}

.services-page .service-card__number{
    display:inline-block;
    margin-bottom:7px;
    color:#1463c5;
    font-size:12px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:.18em;
}

.services-page .service-card__content h3{
    color:#132456;
    font-family:"Poppins",sans-serif;
    font-size:25px;
    line-height:1.2;
    font-weight:700;
}

.services-page .service-card__content > p{
    margin-top:13px;
    color:#5b6b88;
    font-size:16px;
    line-height:1.65;
}

.services-page .service-card__list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:13px 20px;
    margin:23px 0 27px;
}

.services-page .service-card__list li{
    display:grid;
    grid-template-columns:17px 1fr;
    align-items:start;
    gap:9px;
    color:#193b73;
    font-size:13px;
    line-height:1.45;
    font-weight:500;
}

.services-page .service-card__list img{
    width:17px;
    height:17px;
    margin-top:2px;
    object-fit:contain;
}

/* ---------- Other service sections ---------- */

.services-page .services-split{
    padding:0 0 100px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.services-page .split-card{
    min-height:390px;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    border-radius:28px;
    overflow:hidden;
    background-position:center;
    background-size:cover;
    color:#fff;
}

.services-page .services-why{
    padding:0 0 100px;
}

.services-page .why__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.services-page .why-card{
    padding:28px;
    border:1px solid #e5eaf1;
    border-radius:22px;
    background:#fff;
    box-shadow:0 8px 25px rgba(20,44,80,.05);
}

.services-page .how-it-works{
    padding:0 0 100px;
}

.services-page .steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #dfe6ef;
}

.services-page .step{
    min-height:210px;
    padding:25px 24px;
    border-right:1px solid #dfe6ef;
}

.services-page .step:first-child{
    border-left:1px solid #dfe6ef;
}

.services-page .cta-banner{
    margin-bottom:90px;
    padding:65px 40px;
    text-align:center;
    border-radius:30px;
    background:#0b2d68;
    color:#fff;
}

/* ---------- Responsive ---------- */

@media (max-width:1100px){
    .services-page .services-hero__copy{
        padding:48px;
    }

    .services-page .services-hero__title{
        font-size:40px;
    }

    .services-page .service-feature__content{
        padding:40px;
    }
}

@media (max-width:850px){
    .services-page .services-hero__inner,
    .services-page .service-feature__inner{
        grid-template-columns:1fr;
    }

    .services-page .services-hero__image,
    .services-page .service-feature__image{
        min-height:360px;
        height:360px;
    }

    .services-page .services__grid,
    .services-page .services-split{
        grid-template-columns:1fr;
    }

    .services-page .why__grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-page .steps{
        grid-template-columns:repeat(2,1fr);
    }

    .services-page .step:nth-child(3){
        border-left:1px solid #dfe6ef;
        border-top:1px solid #dfe6ef;
    }

    .services-page .step:nth-child(4){
        border-top:1px solid #dfe6ef;
    }
}

@media (max-width:600px){
    .services-page .services-hero,
    .services-page .service-feature,
    .services-page .services,
    .services-page .services-split,
    .services-page .services-why,
    .services-page .how-it-works,
    .services-page .cta-banner{
        width:calc(100% - 28px);
    }

    .services-page .services-hero{
        padding:35px 0 55px;
    }

    .services-page .services-hero__title{
        font-size:32px;
    }

    .services-page .services-hero__text{
        font-size:16px;
    }

    .services-page .services-hero__copy{
        padding:35px 26px;
    }

    .services-page .services-hero__image,
    .services-page .service-feature__image{
        min-height:290px;
        height:290px;
    }

    .services-page .service-feature{
        padding-bottom:65px;
    }

    .services-page .service-feature__content{
        padding:32px 25px;
    }

    .services-page .service-feature__content h2{
        font-size:27px;
    }

    .services-page .service-feature__lead{
        font-size:16px;
    }

    .services-page .service-feature__points{
        grid-template-columns:1fr;
    }

    .services-page .service-card__img{
        height:235px;
    }

    .services-page .service-card__content{
        padding:25px 23px 28px;
    }

    .services-page .service-card__content h3{
        font-size:22px;
    }

    .services-page .service-card__list{
        grid-template-columns:1fr;
    }

    .services-page .why__grid,
    .services-page .steps{
        grid-template-columns:1fr;
    }

    .services-page .step,
    .services-page .step:first-child,
    .services-page .step:nth-child(3),
    .services-page .step:nth-child(4){
        border-left:1px solid #dfe6ef;
        border-right:1px solid #dfe6ef;
        border-top:1px solid #dfe6ef;
    }

    .services-page .step:last-child{
        border-bottom:1px solid #dfe6ef;
    }

    .services-page .cta-banner{
        padding:45px 23px;
        margin-bottom:55px;
    }
}
