:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --line: #d7dce0;
  --line-dark: rgba(255, 255, 255, 0.18);
  --soft: #eef1f3;
  --ink: #111827;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  background: #ffffff;
  padding-bottom: 0;
}

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,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

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

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(201,154,54,.5);
  flex: 0 0 auto;
}

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

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

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

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

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

.phone-button,
.primary-button,
.secondary-button,
.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  min-height: 48px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.phone-button,
.primary-button {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  box-shadow: 0 14px 34px rgba(9,61,92,.22);
}

.phone-button { padding: 0 18px; font-size: 16px; white-space: nowrap; }

.primary-button { padding: 0 22px; font-size: 17px; }

.secondary-button {
  color: var(--heading);
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 0 22px;
  font-size: 17px;
}

.phone-button:hover,
.primary-button:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(9,61,92,.28);
}

.secondary-button:hover {
  background: #f1f3f5;
  color: #111827;
  border-color: #aab4bd;
  transform: translateY(-2px);
}

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

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

.hero {
  background: linear-gradient(135deg, #f2f4f5 0%, #ffffff 44%, #e9edf0 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  min-height: calc(100vh - 83px);
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 42px;
  align-items: center;
  padding: 58px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #20303a;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  box-shadow: 0 8px 26px rgba(16,24,32,.07);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2a915f;
}

h1,
h2,
h3,
h4 { line-height: 1.12; margin: 0 0 18px; }

h1 { font-size: clamp(35px, 5vw, 68px); letter-spacing: -0.055em; margin-top: 20px; }

h2 { font-size: clamp(28px, 3.5vw, 46px); letter-spacing: -0.045em; }

h3 { font-size: 22px; letter-spacing: -0.025em; }

h4 { font-size: 20px; letter-spacing: -0.02em; }

p { font-size: 16px; margin: 0 0 18px; }

.hero-lead { font-size: 19px; color: #34404a; max-width: 640px; }

.stars { color: var(--accent); font-size: 25px; letter-spacing: 2px; margin: 18px 0 14px; }

.brand-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 24px;
}

.brand-icons img {
  width: 68px;
  height: 48px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 7px;
  background: #fff;
}

.hero-cta-text {
  font-size: 20px;
  font-weight: 900;
  color: #17212a;
  margin-bottom: 12px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-card {
  aspect-ratio: 1 / 1;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.9);
}

.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.trust-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-panel span {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  font-weight: 900;
  color: #111827;
  backdrop-filter: blur(14px);
}

.section { padding: 84px 0; }

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

.section.dark { background: var(--surface-dark); color: #f9fafb; }

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

.section-head { max-width: 780px; margin-bottom: 34px; }

.h2-row { display: flex; align-items: center; gap: 14px; }

.h2-sticker {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(16,24,32,.08);
  flex: 0 0 auto;
}

.section.dark .h2-sticker { background: rgba(255,255,255,.08); border-color: var(--line-dark); color: #ffffff; }

.intro-grid,
.split-row {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 34px;
  align-items: center;
}

.split-row.reverse { grid-template-columns: 35fr 65fr; }

.split-row.reverse .split-media { order: 1; }

.split-row.reverse .split-copy { order: 2; }

.copy-card,
.list-card,
.process-card,
.payment-card,
.faq-item,
.review-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(16,24,32,.07);
}

.section.dark .copy-card,
.section.dark .process-card {
  background: rgba(255,255,255,.06);
  border-color: var(--line-dark);
  color: #f9fafb;
}

.split-media img,
.intro-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid #fff;
}

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

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #b9c3ca; }

.service-card img { width: 62px; height: 62px; object-fit: contain; margin-bottom: 14px; border-radius: 14px; }

.two-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

ul.clean-list li {
  position: relative;
  padding-left: 28px;
  color: #303b45;
}

ul.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(9,61,92,.12);
}

.section.dark ul.clean-list li { color: #e7edf2; }

.section.dark ul.clean-list li::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(201,154,54,.16); }

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

.process-card .step {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

.areas {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #17212a;
  font-weight: 800;
}

.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), #18232b);
  color: #fff;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

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

.cta-band .secondary-button { border-color: rgba(255,255,255,.32); }

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

.reviews-track { display: flex; transition: transform .45s ease; }

.review-slide { flex: 0 0 33.333%; padding: 0 9px; }

.review-card { height: 100%; }

.review-card .stars { font-size: 18px; margin: 0 0 12px; }

.reviewer { font-weight: 900; color: #111827; margin-top: 16px; }

.review-controls { display: flex; gap: 10px; margin-top: 22px; justify-content: flex-end; }

.review-controls button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111827;
  font-size: 22px;
  cursor: pointer;
}

.review-controls button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

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

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

.payment-card { text-align: center; font-weight: 900; color: #17212a; }

.footer {
  background: #0e151b;
  color: #dbe3ea;
  padding: 52px 0 34px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 30px;
  align-items: start;
}

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

.footer a { color: #ffffff; font-weight: 800; }

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

.footer-links { display: grid; gap: 8px; }

.disclaimer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #c4ced7;
}

.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav-links { position: absolute; left: 20px; right: 20px; top: 82px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 10px; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 12px; }
  .nav-links a:hover { background: #f3f5f6; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 42px 0; }
  .hero-card { min-height: auto; max-width: 620px; width: 100%; margin: 0 auto; }
  .service-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .review-slide { flex-basis: 50%; }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 106px; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "logo toggle" "phone phone"; gap: 10px; padding: 10px 0; }
  .logo { grid-area: logo; font-size: 24px; white-space: normal; line-height: 1.05; }
  .menu-toggle { grid-area: toggle; justify-self: end; }
  .header-actions { grid-area: phone; }
  .phone-button { width: 100%; font-size: 16px; }
  .nav-links { top: 112px; }
  h1 { font-size: clamp(35px, 10vw, 48px); }
  h2 { font-size: clamp(28px, 8vw, 34px); }
  .hero-grid { padding: 28px 0 36px; gap: 28px; }
  .hero-lead { font-size: 17px; }
  .hero-card { aspect-ratio: 1 / 1; }
  .trust-panel { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .h2-row { align-items: flex-start; }
  .intro-grid, .split-row, .split-row.reverse, .areas, .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .split-row.reverse .split-media, .split-row.reverse .split-copy { order: initial; }
  .service-grid, .two-list, .process-grid, .faq-grid, .payment-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 28px; }
  .review-slide { flex-basis: 100%; }
  .review-controls { justify-content: center; }
  .mobile-call { position: fixed; left: max(10px, env(safe-area-inset-left)); right: max(10px, env(safe-area-inset-right)); bottom: max(10px, env(safe-area-inset-bottom)); z-index: 80; display: flex; min-height: 56px; background: var(--primary); color: #ffffff; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 18px 46px rgba(0,0,0,.24); font-size: 15px; white-space: nowrap; }
  .mobile-call:hover { background: var(--primary-dark); color: #ffffff; }
}
