:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #0b1324;
  --muted: #5b6577;
  --line: #dfe5ee;
  --primary: #1769ff;
  --primary-dark: #0d4ed0;
  --accent: #35d2c0;
  --dark: #07101f;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(11, 19, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main[id],
section[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 15px;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 12px;
}

.site-stack {
  position: sticky;
  top: 0;
  z-index: 50;
}

.demo-banner {
  background: var(--dark);
  color: #fff;
  font-size: .875rem;
}

.demo-banner-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.demo-banner strong {
  color: var(--accent);
}

.demo-banner a {
  flex: 0 0 auto;
  font-weight: 800;
  text-underline-offset: 3px;
}

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

.site-header {
  position: relative;
  background: rgba(246, 248, 251, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 229, 238, 0.8);
}

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

.brand img,
.footer-wrap img {
  width: 210px;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}

.nav-toggle:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(23, 105, 255, .38);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(53, 210, 192, 0.22), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(23, 105, 255, 0.18), transparent 33%),
    linear-gradient(145deg, #f9fbff, #edf3ff);
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 75px solid rgba(23, 105, 255, 0.08);
  border-radius: 50%;
  right: -150px;
  bottom: -190px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
}

h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--primary);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(23, 105, 255, 0.22);
  transition: 0.2s ease;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--primary);
  font-weight: 900;
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.hero-card-badge,
.mini-badge {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(53, 210, 192, 0.16);
  color: #08796c;
  font-size: 0.875rem;
  font-weight: 800;
}

.card-label {
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.price {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card ul,
.service-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.stats-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: 1.55rem;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 100px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 24px;
}

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

.service-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.service-number {
  display: block;
  margin-bottom: 35px;
  color: #9aa5b6;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.mini-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.service-price {
  margin: 26px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.section-dark {
  background: var(--dark);
  color: white;
}

.section-heading.light p:last-child {
  color: #aab4c6;
}

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

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-grid figcaption {
  padding-top: 12px;
  color: #c6cfdd;
  font-size: 0.93rem;
}

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

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.process-step p {
  color: var(--muted);
}

.testimonial-section {
  padding-top: 0;
}

.quote-card {
  padding: 58px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 20%, rgba(53, 210, 192, 0.3), transparent 35%),
    linear-gradient(135deg, #eaf1ff, #ffffff);
  border: 1px solid var(--line);
}

blockquote {
  max-width: 900px;
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.quote-name {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  background: #e9eef6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-copy,
.contact-details p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 32px;
}

.contact-details span {
  color: var(--primary);
  font-weight: 800;
}

.contact-details small {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 600;
}

.quote-form {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd3df;
  border-radius: 12px;
  background: white;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 105, 255, 0.18);
  border-color: var(--primary);
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: #08796c;
  font-weight: 700;
}

footer {
  padding: 36px 0;
  background: #050b15;
  color: #bac3d2;
}

.footer-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.footer-wrap img {
  filter: brightness(0) invert(1);
}

.footer-wrap p {
  margin: 0;
  font-size: 0.875rem;
}

.footer-back {
  color: #fff;
  font-size: .875rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .three-column,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    transform: none;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .demo-banner-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 8px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 75px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-card {
    padding: 34px 25px;
  }
}
