:root {
  --bg: #f6f9ff;
  --bg-2: #eef4ff;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-solid: #ffffff;
  --panel-soft: #f8fbff;
  --line: rgba(58, 92, 152, 0.12);
  --line-strong: rgba(76, 118, 190, 0.2);
  --text: #46607f;
  --muted: #6e86a5;
  --heading: #18314f;
  --blue: #4f7cff;
  --blue-2: #7aa2ff;
  --cyan: #67cfe9;
  --cyan-2: #8adced;
  --accent-soft: #eaf3ff;
  --ink: #102033;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(41, 72, 122, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(103, 207, 233, 0.12), transparent 20%),
    radial-gradient(circle at 88% 10%, rgba(79, 124, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #f9fbff, #f3f7fd 42%, #eef4fb 100%);
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24,49,79,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,49,79,0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.24), transparent 80%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.72; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #4f7cff;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7aa2ff, transparent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #688fff 60%, var(--cyan));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(79,124,255,0.22);
}
.btn-secondary {
  background: rgba(255,255,255,0.7);
  color: var(--heading);
  border-color: rgba(76,118,190,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
}
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58,92,152,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.footer-logo { height: 58px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #627b9b;
}
.site-nav a:hover { color: var(--heading); }
.header-phone {
  background: linear-gradient(135deg, rgba(79,124,255,0.12), rgba(103,207,233,0.16));
  border: 1px solid rgba(76,118,190,0.18);
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--heading);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--heading);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--heading);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(103,207,233,0.13), transparent 20%),
    radial-gradient(circle at 82% 24%, rgba(79,124,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.26), transparent 38%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(240,246,255,0.45));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 430px);
  gap: 52px;
  align-items: center;
  min-height: 760px;
  padding: 90px 0 70px;
}
.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  color: var(--heading);
}
.hero-lead {
  max-width: 680px;
  color: #6c84a3;
  font-size: 1.08rem;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
  max-width: 760px;
}
.badge-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(76,118,190,0.12);
  background: rgba(255,255,255,0.76);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}
.badge-card strong { display: block; margin-bottom: 8px; color: var(--heading); }
.badge-card span { color: #6e86a5; font-size: .95rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.hero-points li {
  position: relative;
  padding-left: 18px;
  color: #6b84a3;
}
.hero-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-2));
  position: absolute;
  left: 0;
  top: .52rem;
}

.lead-card {
  background: rgba(255,255,255,0.88);
  color: var(--text);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(76,118,190,0.14);
  backdrop-filter: blur(16px);
}
.lead-card h2 { margin: 0 0 10px; font-size: 1.95rem; line-height: 1.08; color: var(--heading); }
.lead-card-head p { margin: 0 0 18px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.lead-form label { display: block; margin-bottom: 14px; }
.lead-form span {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #5d7696;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(76,118,190,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--heading);
  background: rgba(248,251,255,0.92);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #90a4bf; }
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(103,207,233,0.62);
  box-shadow: 0 0 0 4px rgba(103,207,233,0.12);
}
.form-note,
.form-success { font-size: .9rem; }
.form-note a { color: var(--blue); }
.form-success {
  margin-top: 12px;
  color: #24634a;
  background: rgba(198, 247, 223, 0.7);
  border: 1px solid rgba(109, 201, 154, 0.34);
  padding: 12px 14px;
  border-radius: 14px;
}
.lead-card-footer {
  border-top: 1px solid rgba(76,118,190,0.1);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-card-footer a { font-weight: 800; color: var(--heading); }

.trust-strip {
  border-top: 1px solid rgba(76,118,190,0.08);
  border-bottom: 1px solid rgba(76,118,190,0.08);
  background: rgba(255,255,255,0.56);
  backdrop-filter: blur(10px);
}
.trust-strip-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  font-size: .95rem;
  color: #6982a2;
}
.trust-strip strong { color: var(--heading); }

.stats-grid,
.service-grid,
.process-grid,
.review-grid {
  display: grid;
  gap: 22px;
}
.stats-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.stats-grid > div,
.service-card,
.process-step,
.review-card,
.contact-card,
.dark-card,
.faq-list details {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,255,0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stats-grid > div::before,
.service-card::before,
.process-step::before,
.review-card::before,
.contact-card::before,
.faq-list details::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,207,233,0.82), transparent);
}
.stats-grid > div { padding: 30px 24px 24px; }
.stat {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 10px;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: var(--heading);
}
.service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-card {
  padding: 30px 24px 24px;
  min-height: 220px;
}
.service-card h3 { margin: 0 0 12px; font-size: 1.28rem; color: var(--heading); }
.accent-card {
  background: linear-gradient(135deg, rgba(236,244,255,0.98), rgba(246,250,255,0.98));
}
.accent-card::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,207,233,0.16), transparent 62%);
}
.accent-card p { color: #6c84a3; }

.dark-section {
  background:
    radial-gradient(circle at 10% 24%, rgba(103,207,233,0.12), transparent 18%),
    radial-gradient(circle at 86% 42%, rgba(79,124,255,0.08), transparent 18%),
    linear-gradient(180deg, rgba(239,245,255,0.78), rgba(244,248,255,0.92));
  border-top: 1px solid rgba(76,118,190,0.06);
  border-bottom: 1px solid rgba(76,118,190,0.06);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #6982a2;
}
.check-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}
.dark-card {
  padding: 26px;
}
.dark-card h3 { color: var(--heading); margin-top: 0; }
.micro-stats {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.micro-stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(76,118,190,0.1);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.micro-stats strong { display: block; color: var(--heading); }
.micro-stats span { color: var(--muted); }

.gallery-section { background: transparent; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 66px;
  gap: 16px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(76,118,190,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,250,255,0.95));
  box-shadow: var(--shadow);
}
.gallery-wide {
  grid-column: 1 / span 6;
  grid-row: span 9;
}
.gallery-grid .gallery-item:nth-child(2) {
  grid-column: 7 / span 3;
  grid-row: span 4;
}
.gallery-grid .gallery-item:nth-child(3) {
  grid-column: 10 / span 3;
  grid-row: span 6;
}
.gallery-grid .gallery-item:nth-child(4) {
  grid-column: 7 / span 3;
  grid-row: span 5;
}
.gallery-grid .gallery-item:nth-child(5) {
  grid-column: 10 / span 3;
  grid-row: span 3;
}
.mockup-card { padding: 18px; }
.mockup-window {
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f8ff, #edf4ff);
  padding: 14px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(76,118,190,0.1);
}
.mockup-topbar {
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79,124,255,0.18), rgba(103,207,233,0.34), rgba(79,124,255,0.08));
  margin-bottom: 14px;
}
.mockup-hero {
  flex: 1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(103,207,233,0.16), transparent 24%),
    linear-gradient(135deg, #eaf3ff, #f4f8ff 58%, #eef4ff);
  padding: 20px;
}
.mockup-copy-lines,
.mockup-copy-lines.short,
.mockup-buttons,
.mockup-phone-shell,
.mini-bars,
.layout-grid,
.cta-block {
  border-radius: 12px;
}
.mockup-copy-lines {
  height: 18px;
  background: linear-gradient(90deg, rgba(24,49,79,0.78), rgba(24,49,79,0.24));
  margin-bottom: 12px;
  width: 86%;
}
.mockup-copy-lines.short { width: 58%; }
.mockup-buttons {
  width: 46%;
  height: 42px;
  background: linear-gradient(135deg, rgba(79,124,255,0.64), rgba(103,207,233,0.5));
  margin-top: 24px;
}
.mockup-phone,
.mockup-trust,
.mockup-layout,
.mockup-cta {
  display: grid;
  place-items: center;
}
.mockup-phone-shell {
  width: 70%;
  height: 86%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(233,242,255,0.9));
  box-shadow:
    inset 0 0 0 10px #d7e4fb,
    0 18px 40px rgba(41,72,122,0.14);
}
.mini-bars {
  width: 82%;
  height: 72%;
  background:
    linear-gradient(180deg, #4f7cff 0 20%, transparent 20% 30%, #67cfe9 30% 50%, transparent 50% 60%, #87aaf7 60% 82%, transparent 82% 100%);
}
.layout-grid {
  width: 82%;
  height: 82%;
  background:
    linear-gradient(90deg, rgba(79,124,255,0.08) 0 32%, transparent 32% 38%, rgba(24,49,79,0.08) 38% 100%),
    linear-gradient(180deg, rgba(103,207,233,0.16) 0 24%, rgba(255,255,255,0.38) 24% 100%);
}
.cta-block {
  width: 82%;
  height: 62%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.process-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.process-step { padding: 30px 24px 24px; }
.process-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79,124,255,0.14), rgba(103,207,233,0.18));
  color: var(--heading);
  font-weight: 800;
  margin-bottom: 18px;
  border: 1px solid rgba(76,118,190,0.12);
}
.process-step h3 { margin: 0 0 10px; color: var(--heading); }

.reviews-section { background: transparent; }
.review-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.review-card { padding: 30px 22px 22px; }
.review-card p { margin: 0 0 16px; color: #6b84a3; font-size: 1rem; }
.review-stars {
  margin-bottom: 14px;
  color: #67cfe9;
  letter-spacing: 0.12em;
  font-size: 1rem;
}
.review-card footer { font-weight: 800; color: var(--heading); }
.featured-review {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(240,246,255,0.98), rgba(247,250,255,0.98));
}
.featured-review .review-stars { color: var(--blue); }

.alt-split { grid-template-columns: .95fr 1.05fr; }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill-list span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(76,118,190,0.12);
  font-weight: 700;
  color: #567192;
}
.contact-card {
  padding: 30px 24px 24px;
}
.contact-card h3 { margin-top: 0; color: var(--heading); }
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}

.faq-section { background: transparent; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 18px 20px; }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--heading);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 12px 0 0; }

.final-cta {
  background:
    radial-gradient(circle at 18% 20%, rgba(103,207,233,0.12), transparent 18%),
    radial-gradient(circle at 84% 50%, rgba(79,124,255,0.1), transparent 20%),
    linear-gradient(180deg, rgba(239,245,255,0.82), rgba(244,248,255,0.98));
  border-top: 1px solid rgba(76,118,190,0.08);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 760px;
  color: var(--heading);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: rgba(251,253,255,0.92);
  color: #7a91ae;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(76,118,190,0.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-brand { margin-bottom: 10px; }
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a:first-child { color: var(--heading); font-weight: 800; }

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .alt-split,
  .stats-grid,
  .process-grid,
  .review-grid,
  .service-grid,
  .trust-strip-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }
  .gallery-wide,
  .gallery-grid .gallery-item:nth-child(2),
  .gallery-grid .gallery-item:nth-child(3),
  .gallery-grid .gallery-item:nth-child(4),
  .gallery-grid .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-wide { min-height: 380px; }
  .featured-review { grid-column: auto; }
  .final-cta-inner,
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.98);
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    color: #5e7697;
    border: 1px solid rgba(76,118,190,0.1);
  }
  .site-nav.open { display: flex; }
  .hero-badges,
  .field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero-grid { padding-top: 78px; padding-bottom: 48px; }
  .lead-card { padding: 22px; }
  .hero-copy h1 { font-size: 2.45rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .brand-logo { height: 46px; }
  .container { width: min(100% - 28px, var(--container)); }
}
