:root {
  --blue: #002b5c;
  --blue-dark: #001b3d;
  --orange: #f26a0a;
  --orange-soft: #fff0e6;
  --white: #ffffff;
  --ink: #102033;
  --muted: #5f6f84;
  --line: #dbe4ee;
  --shadow: 0 24px 70px rgba(0, 31, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 7px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo {
  display: block;
  width: 370px;
  height: 82px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-action {
  justify-self: end;
}

.header-action,
.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(242, 106, 10, 0.25);
}

.button-secondary {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
}

.header-action:hover,
.header-action:focus-visible,
.button:hover,
.button:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 18px 42px rgba(242, 106, 10, 0.24);
  transform: translateY(-2px) scale(1.025);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(34px, 6vw, 82px) clamp(20px, 5vw, 72px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at top left, rgba(242, 106, 10, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--blue-dark);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 43, 92, 0.12);
  border-radius: 8px;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.carousel {
  position: relative;
  min-height: clamp(430px, 58vw, 640px);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 58vw, 640px);
  object-fit: cover;
  filter: saturate(1.02);
}

.slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 27, 61, 0.82) 0%, rgba(0, 27, 61, 0.15) 58%);
}

.slide-badge {
  position: absolute;
  top: 62px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--white);
  background: rgba(0, 43, 92, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 27, 61, 0.32);
  transform: translateX(-50%);
}

.slide-badge svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.slide-content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: var(--white);
}

.slide-content span {
  color: var(--orange);
  font-weight: 800;
}

.slide-content h2 {
  margin: 8px 0 8px;
  color: var(--white);
}

.slide-content p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.slide-link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.slide-link {
  color: var(--white);
  background: var(--orange);
}

.carousel-controls {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.control,
.dot {
  border: 0;
  cursor: pointer;
}

.control {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 28px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.dot.active {
  width: 28px;
  background: var(--orange);
  border-radius: 999px;
}

.services,
.benefits,
.deposit,
.reviews,
.service-areas,
.referral,
.contact-band {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 43, 92, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--orange);
  box-shadow: 0 20px 46px rgba(242, 106, 10, 0.18);
  transform: translateY(-4px) scale(1.015);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.card-link {
  width: fit-content;
  margin-top: auto;
  color: var(--white);
  background: var(--orange);
}

.slide-link:hover,
.slide-link:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 16px 34px rgba(242, 106, 10, 0.26);
  transform: translateY(-2px) scale(1.025);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--orange);
  background: var(--blue);
  border-radius: 50%;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.service-card:first-child .service-icon svg {
  fill: currentColor;
  stroke: none;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: stretch;
  color: var(--white);
  background: var(--blue-dark);
}

.benefits h2 {
  color: var(--white);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  border-radius: 8px;
}

.benefit-list article {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.benefit-list article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 18px;
  transition: color 180ms ease;
}

.benefit-list span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.benefit-list article:hover,
.benefit-list article:focus-within {
  background:
    linear-gradient(135deg, rgba(242, 106, 10, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  border-color: var(--orange);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(242, 106, 10, 0.22);
  transform: translateY(-6px);
}

.benefit-list article:hover::before,
.benefit-list article:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.benefit-list article:hover strong,
.benefit-list article:focus-within strong {
  color: #ff8a25;
}

.deposit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(0, 43, 92, 0.06), rgba(242, 106, 10, 0.1)),
    #fff9f4;
}

.deposit-copy {
  max-width: 760px;
}

.deposit-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.deposit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.reviews {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 43, 92, 0.96), rgba(0, 27, 61, 0.98)),
    var(--blue-dark);
}

.reviews-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.reviews-heading h2 {
  color: var(--white);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
}

.review-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.review-label {
  color: var(--blue-dark);
  font-weight: 800;
}

.review-card input,
.review-card select,
.review-card textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  line-height: 1.5;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.review-card textarea {
  min-height: 118px;
  resize: vertical;
}

.review-card input:focus,
.review-card select:focus,
.review-card textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 106, 10, 0.12);
}

.review-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.review-note.is-alert {
  color: #b74400;
  font-weight: 700;
}

.review-stream {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  min-width: max-content;
  padding: 28px 16px;
  animation: reviewScroll 42s linear infinite;
}

.review-item {
  width: min(340px, 78vw);
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.review-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-item strong {
  color: var(--blue-dark);
  font-size: 17px;
}

.review-item span {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.service-areas {
  overflow: hidden;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-areas .eyebrow {
  margin-bottom: 18px;
  text-align: center;
}

.area-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.area-track {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  min-width: max-content;
  padding-right: 10px;
  animation: areaScroll 58s linear infinite;
}

.area-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--blue);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

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

.referral {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.72fr);
  gap: 26px;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(0, 43, 92, 0.05), transparent 44%),
    var(--white);
}

.referral-copy {
  max-width: 740px;
}

.referral-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.referral-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.referral-panel strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.referral-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(242, 106, 10, 0.13), rgba(0, 43, 92, 0.06)),
    var(--orange-soft);
}

.contact-band h2 {
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 360px);
}

.contact-actions a {
  padding: 16px 18px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  border-color: var(--orange);
  background: var(--blue-dark);
  box-shadow: 0 18px 42px rgba(242, 106, 10, 0.22);
  transform: translateY(-2px) scale(1.02);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--blue);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero,
  .benefits,
  .reviews-layout,
  .referral {
    grid-template-columns: 1fr;
  }

  .deposit {
    align-items: flex-start;
    flex-direction: column;
  }

  .deposit-actions {
    justify-content: flex-start;
  }

  .service-grid,
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-list article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: clamp(20px, 5vw, 72px);
    left: clamp(20px, 5vw, 72px);
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 31, 70, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease, border-color 180ms ease;
  }

  .main-nav.is-open {
    max-height: 360px;
    padding: 12px 18px;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .brand-logo {
    width: 260px;
    height: 64px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 112px;
    padding: 12px 20px;
  }

  .brand-logo {
    width: min(76vw, 360px);
    height: 88px;
  }

  .menu-toggle {
    grid-column: 2;
    width: 58px;
    height: 58px;
  }

  .main-nav {
    right: 16px;
    left: 16px;
  }

  .button,
  .header-action,
  .contact-actions a,
  .card-link,
  .slide-link {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  h1 {
    font-size: 38px;
  }

  .carousel {
    min-height: 460px;
  }

  .slide img {
    min-height: 460px;
  }

  .carousel-controls {
    right: 18px;
    top: 18px;
  }

  .slide-content {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .slide-badge {
    top: 54px;
    width: 64px;
    height: 64px;
  }

  .slide-badge svg {
    width: 34px;
    height: 34px;
  }

  .slide-content h2 {
    font-size: 32px;
  }

  .service-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list article,
  .benefit-list article:nth-child(3) {
    grid-column: auto;
  }

  .contact-band,
  .review-card .button,
  .deposit-actions,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
