:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9e2ec;
  --paper: #f7fafc;
  --white: #ffffff;
  --teal: #0f8b8d;
  --teal-dark: #096466;
  --coral: #f25f4c;
  --gold: #d99a2b;
  --navy: #172033;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 236, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--teal-dark);
  background: #e8f7f7;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 9px 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 20, 0.86), rgba(7, 11, 20, 0.58) 44%, rgba(7, 11, 20, 0.08));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  color: var(--white);
  padding-bottom: 48px;
}

.hero h1,
.page-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.4rem, 5.3vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ef2ed;
}

.hero-actions,
.site-footer div,
.cta-band {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(15, 139, 141, 0.24);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.dark {
  color: var(--teal-dark);
  border-color: var(--line);
  background: var(--white);
}

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

.intro-grid,
.split,
.form-section,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
}

.intro-grid p,
.split p,
.section-heading p {
  color: var(--muted);
}

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

.stat-row div,
.service-card,
.price-card,
.review-card,
.contact-card,
.support-panel,
.service-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-row div {
  padding: 24px;
}

.stat-row strong {
  display: block;
  font-size: 2rem;
  color: var(--teal-dark);
}

.stat-row span,
.review-card span {
  color: var(--muted);
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.price-card,
.review-card,
.contact-card {
  padding: 26px;
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #dff4f2;
  font-weight: 800;
  font-size: 0.85rem;
}

.service-card h3,
.price-card h3,
.review-card strong,
.contact-card h2 {
  margin: 18px 0 8px;
}

.timeline,
.feature-list {
  display: grid;
  gap: 14px;
}

.timeline div,
.feature-list p {
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  border-radius: 8px;
  margin: 0;
}

.cta-band {
  justify-content: space-between;
  background: var(--navy);
  color: var(--white);
  padding: 38px;
  border-radius: 8px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 54px;
}

.page-hero.compact {
  padding-bottom: 28px;
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
}

.page-hero p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-list article {
  padding: 28px;
}

.service-list h2 {
  margin: 16px 0 8px;
}

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

.price-card strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--teal-dark);
  font-size: 1.6rem;
}

.price-card.featured {
  border-color: rgba(15, 139, 141, 0.55);
  box-shadow: 0 20px 48px rgba(15, 139, 141, 0.18);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.client-strip span {
  display: grid;
  min-height: 86px;
  place-items: center;
  text-align: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
}

.review-card p {
  color: var(--muted);
}

.form-section {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  padding-top: 24px;
}

.inquiry-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 139, 141, 0.18);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-submit {
  justify-self: start;
  border: 0;
}

.support-panel {
  position: sticky;
  top: 92px;
  padding: 28px;
}

.support-panel h2 {
  margin-top: 0;
}

.support-panel p,
.support-panel span {
  color: var(--muted);
}

.support-panel div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 71px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 11, 20, 0.9), rgba(7, 11, 20, 0.5));
  }

  .intro-grid,
  .split,
  .form-section,
  .contact-grid,
  .service-list,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

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

  .support-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .section,
  .page-hero {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 52px 0;
  }

  .stat-row,
  .form-grid,
  .client-strip {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
