:root {
  --blue: #1298f3;
  --blue-dark: #0578cf;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e8eef6;
  --soft: #eef8ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef8ff 0, #ffffff 34%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 16px auto 0;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 238, 246, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.hero-numbers,
.metric-band,
.about-cards,
.price-work,
.cta-section,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
}

.brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(18, 152, 243, 0.3);
}

.nav-links {
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

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

.nav-links a.active {
  color: var(--blue);
}

.header-cta,
.btn {
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta {
  padding: 11px 20px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
}

.btn {
  min-height: 48px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(18, 152, 243, 0.27);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  background: var(--white);
  color: #142033;
  box-shadow: inset 0 0 0 1px var(--line);
}

.play-dot {
  width: 12px;
  height: 12px;
  background: #0f172a;
  clip-path: polygon(12% 0, 100% 50%, 12% 100%);
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: clamp(48px, 8vw, 86px) 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.eyebrow,
.pill {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

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

h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy > p:not(.eyebrow),
.section-copy > p,
.pricing > p,
.cta-section p,
.page-hero p,
.values span,
.pricing-grid span,
.contact-card p,
.map-section p,
.steps li,
.service-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
}

.page-hero {
  padding: clamp(64px, 9vw, 112px) 0 48px;
  text-align: center;
}

.page-hero h1 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0 34px;
}

.hero-numbers {
  gap: 56px;
}

.hero-numbers strong,
.about-cards strong,
.metric-band strong {
  display: block;
  color: #172033;
  font-size: 26px;
  line-height: 1;
}

.hero-numbers span,
.about-cards span,
.metric-band span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-media img,
.feature-photo img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-main-img {
  aspect-ratio: 16 / 9;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.thumb-row img {
  aspect-ratio: 1.82 / 1;
}

.metric-band {
  width: min(1180px, calc(100% - 32px));
  min-height: 126px;
  margin: 48px auto 78px;
  padding: 26px 28px;
  justify-content: space-around;
  gap: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 152, 243, 0.24);
}

.metric-band div {
  min-width: 140px;
  text-align: center;
}

.metric-band div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.metric-band strong,
.metric-band span {
  color: var(--white);
}

.about {
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.check-list {
  padding: 8px 0 0;
  margin: 0 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 0 15px;
  padding-left: 28px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
}

.about-cards {
  gap: 16px;
}

.about-cards div {
  width: 190px;
  min-height: 112px;
  padding: 22px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-photo {
  position: relative;
  aspect-ratio: 1.16 / 1;
}

.status-badge,
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.status-badge {
  top: 18px;
  right: 18px;
  padding: 10px 16px;
  color: #16a34a;
  font-size: 12px;
  font-weight: 800;
}

.floating-card {
  left: 28px;
  bottom: 26px;
  min-width: 252px;
  padding: 15px 18px;
  display: flex;
  gap: 13px;
  align-items: center;
}

.trophy {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #f59e0b;
  background: #eaf6ff;
  border-radius: 8px;
  font-weight: 800;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 20px;
}

.floating-card span {
  max-width: 160px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.services {
  padding: 78px max(16px, calc((100vw - 1180px) / 2)) 94px;
  background: linear-gradient(180deg, #eaf7ff, #f8fcff);
}

.page-services {
  margin-top: 20px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.service-grid article {
  min-height: 244px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--blue);
  background: #e9f6ff;
  border-radius: 8px;
  font-weight: 800;
}

.price-work {
  width: min(1180px, calc(100% - 32px));
  margin: 82px auto;
  gap: 22px;
  align-items: stretch;
}

.values,
.pricing-grid,
.contact-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 86px;
}

.values,
.pricing-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

.values {
  grid-template-columns: repeat(3, 1fr);
}

.values article,
.pricing-grid article,
.contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.contact-card address {
  margin: 20px 0 24px;
  color: #334155;
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
}

.values strong,
.pricing-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.values span,
.pricing-grid span {
  display: block;
  line-height: 1.6;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-grid p {
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 800;
}

.pricing-grid .btn {
  margin-top: auto;
}

.wide-photo {
  margin-bottom: 86px;
}

.wide-photo img {
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: start;
}

.contact-form {
  width: 100%;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.lead-form textarea {
  width: 100%;
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #17b26a;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(23, 178, 106, 0.34);
}

.wa-float img {
  width: 32px;
  height: 32px;
}

.map-section {
  margin-bottom: 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.map-section > div {
  padding: 34px;
  background: #edf8ff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-section iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.pricing,
.steps {
  flex: 1;
  min-height: 320px;
  padding: 38px;
  border-radius: 8px;
}

.pricing {
  color: var(--white);
  background: #102033;
}

.pricing .pill,
.pricing p {
  color: #bfdbfe;
}

.steps {
  background: #f7fbff;
  border: 1px solid var(--line);
}

.steps ol {
  margin: 0;
  padding-left: 23px;
}

.steps li {
  margin-bottom: 15px;
  padding-left: 8px;
}

.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 86px;
  padding: clamp(30px, 5vw, 54px);
  justify-content: space-between;
  gap: 28px;
  background: #edf8ff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-section > div {
  max-width: 520px;
}

.lead-form {
  width: min(430px, 100%);
  display: grid;
  gap: 12px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

footer {
  min-height: 82px;
  padding: 22px 16px;
  justify-content: center;
  gap: 10px;
  color: #475569;
  border-top: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #102033;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-links.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 8px;
    padding-top: 10px;
  }

  .nav-links.is-open a {
    padding: 12px;
    background: #f7fbff;
    border-radius: 8px;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-media,
  .feature-photo {
    max-width: 640px;
  }

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

  .price-work,
  .cta-section {
    flex-direction: column;
  }

  .values,
  .pricing-grid,
  .contact-layout,
  .map-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-pad,
  .metric-band,
  .price-work,
  .cta-section,
  .values,
  .pricing-grid,
  .contact-layout,
  .map-section {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 12px;
  }

  .hero {
    gap: 24px;
    padding-bottom: 24px;
  }

  h1 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1.04;
  }

  h2 {
    font-size: 28px;
  }

  .hero-actions,
  .hero-numbers,
  .about-cards,
  .metric-band,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .btn {
    min-height: 40px;
  }

  .hero-numbers {
    gap: 18px;
  }

  .hero-numbers strong,
  .metric-band strong {
    font-size: 23px;
  }

  .thumb-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .metric-band {
    margin: 28px auto 58px;
    padding: 22px 18px;
  }

  .metric-band div + div {
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .about-cards div {
    width: 100%;
  }

  .floating-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: 0;
  }

  .services {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .service-grid article {
    min-height: auto;
    padding: 24px;
  }

  .pricing,
  .steps,
  .cta-section,
  .contact-form,
  .contact-card,
  .map-section > div,
  .values article,
  .pricing-grid article {
    padding: 26px;
  }

  .map-section iframe {
    min-height: 300px;
  }

  .page-hero {
    padding-top: 48px;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
