:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --gold: #d8b15d;
  --ink: #111827;
  --deep: #0f2f3a;
  --deep-2: #071b22;
  --muted: #5f6975;
  --cream: #f6f2ea;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 22px 55px rgba(15, 47, 58, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #374151;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold), #f0d693);
  border: 2px solid var(--deep);
}

.logo-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
}

.nav-links a:hover { color: var(--deep); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  background: var(--gold);
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.62), 0 16px 34px rgba(216,177,93,0.34);
  animation: pulseGlow 2.4s infinite;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #f1d27e;
  color: #071b22;
}

.btn.dark {
  background: var(--deep);
  color: #fff;
}

.btn svg { width: 20px; height: 20px; }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.58), 0 16px 34px rgba(216,177,93,.32); }
  70% { box-shadow: 0 0 0 18px rgba(255,255,255,0), 0 16px 34px rgba(216,177,93,.32); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 16px 34px rgba(216,177,93,.32); }
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(7,27,34,.74), rgba(7,27,34,.78)), url('../images/hero.webp') center/cover no-repeat;
}

.hero-content {
  width: min(980px, calc(100% - 36px));
  padding: 70px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  color: #fff;
  font-size: clamp(45px, 6vw, 72px);
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

h3, h4 {
  font-size: 22px;
  font-weight: 900;
}

p { font-size: 17px; }

.hero p {
  width: min(800px, 100%);
  margin: 22px auto 0;
  color: rgba(255,255,255,.9);
  font-size: 19px;
}

.stars {
  margin: 20px 0 8px;
  color: var(--gold);
  font-size: 27px;
  letter-spacing: 5px;
}

.badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 16px auto 28px;
  flex-wrap: wrap;
}

.badge-row img {
  width: 118px;
  max-height: 52px;
  object-fit: contain;
  background: #fff;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.34);
}

.hero-cta-text {
  margin: 20px 0 12px;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}

.section {
  padding: 92px 0;
}

.section.alt { background: var(--cream); }

.section.dark {
  background: var(--deep);
  color: rgba(255,255,255,.86);
}

.section.dark h2,
.section.dark h3,
.section.dark h4 { color: #fff; }

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2::after,
.two-col h2::after,
.faq h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 17px;
  background: var(--gold);
}

h3::after,
h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 12px;
  margin-bottom: 12px;
  background: var(--gold);
}

.section-head.center h2::after { margin-left: auto; margin-right: auto; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(250px, 3fr);
  gap: 42px;
  align-items: center;
}

.two-col.reverse { grid-template-columns: minmax(250px, 3fr) minmax(0, 7fr); }

.two-col.reverse .media { order: 1; }

.two-col.reverse .copy { order: 2; }

.media-card {
  position: relative;
  min-height: 330px;
  background: #fff;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.media-card::after {
  content: "15+ Years";
  position: absolute;
  left: -18px;
  bottom: 24px;
  padding: 14px 20px;
  background: var(--gold);
  color: #111827;
  font-weight: 900;
  font-size: 18px;
}

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

.trust-card,
.service-card,
.review-card,
.problem-panel,
.model-box,
.payment-item {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(15,47,58,.07);
}

.trust-card {
  padding: 24px;
  min-height: 145px;
}

.trust-card .icon,
.payment-item .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--deep);
  background: var(--cream);
  border: 1px solid var(--gold);
}

.trust-card strong { display: block; color: var(--ink); font-size: 19px; }

.service-feature {
  margin-bottom: 34px;
  padding: 34px;
  background: var(--deep);
  color: rgba(255,255,255,.86);
}

.service-feature h3 { color: #fff; }

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

.service-card {
  padding: 24px;
  color: #374151;
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.line-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--deep);
  background: #fbf8f0;
  border: 1px solid var(--gold);
}

.line-icon svg { width: 34px; height: 34px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: square; stroke-linejoin: miter; }

.review-shell { position: relative; overflow: hidden; }

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar { display: none; }

.review-card {
  scroll-snap-align: start;
  padding: 26px;
  min-height: 280px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-card .stars { margin: 0; font-size: 18px; letter-spacing: 2px; }

.review-card blockquote { margin: 0; color: #374151; font-size: 17px; }

.slider-controls { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
  font-size: 22px;
  cursor: pointer;
}

.cta-band {
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--deep), #173f4c);
  color: rgba(255,255,255,.88);
}

.cta-band h2 { color: #fff; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details.problem-panel { padding: 0; }

details summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

details ul {
  margin: 0;
  padding: 0 22px 22px 42px;
}

.model-box { padding: 28px; }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: #25313d;
  font-size: 16px;
  font-weight: 700;
}

.city-grid {
  columns: 3;
  column-gap: 32px;
  color: #fff;
  font-size: 17px;
}

.local-box {
  padding: 32px;
  border-left: 6px solid var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
}

.payments {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.payment-item {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  color: var(--ink);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 62px 0 86px;
  background: #071b22;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 32px;
}

.site-footer .logo { color: #fff; margin-bottom: 16px; }

.site-footer a { color: #fff; }

.site-footer p, .site-footer li { font-size: 14px; }

.site-footer h3::after { margin-bottom: 14px; }

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }

.mobile-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 10px 14px;
  background: #071b22;
}

.mobile-call .btn { width: 100%; min-height: 54px; }

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 24px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links { display: grid; gap: 16px; }
  .menu-toggle { display: block; }
  .trust-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .payments { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 66px; gap: 8px; }
  .logo { font-size: 24px; max-width: 168px; overflow: hidden; }
  .logo-mark { width: 34px; height: 34px; flex: 0 0 auto; }
  .header-actions .btn { padding: 10px 12px; min-height: 42px; font-size: 0; }
  .header-actions .btn svg { margin: 0; }
  .menu-toggle { width: 40px; height: 40px; flex: 0 0 auto; }
  .nav-links { top: 66px; }
  .hero { min-height: 650px; }
  h1 { font-size: clamp(32px, 11vw, 42px); }
  h2 { font-size: clamp(23px, 8vw, 34px); }
  .section { padding: 64px 0; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .media, .two-col.reverse .copy { order: initial; }
  .trust-grid, .service-grid, .problems-grid, .footer-grid { grid-template-columns: 1fr; }
  .review-track { grid-auto-columns: 86%; }
  .cta-band { grid-template-columns: 1fr; padding: 32px 24px; }
  .city-grid { columns: 1; }
  .payments { grid-template-columns: repeat(2, 1fr); }
  .mobile-call { display: block; }
  .badge-row img { width: 96px; max-height: 46px; }
}
