:root {
  --primary: #1f4e5f;
  --secondary: #2cb1a1;
  --accent: #79d1c7;
  --bg: #ffffff;
  --soft: #f5fafa;
  --text: #1c2730;
  --muted: #667784;
  --border: #dbe7ea;
  --shadow: 0 14px 40px rgba(31, 78, 95, .10);
  --radius: 20px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

ul {
  list-style: none
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto
}

.section {
  padding: 90px 0
}

.light-section {
  background: var(--soft)
}

.eyebrow {
  color: var(--secondary);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.15
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  margin-bottom: 20px
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px
}

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

p {
  color: var(--muted)
}

strong {
  color: var(--text)
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 231, 234, .8);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--primary)
}

.logo img {
  width: 46px;
  height: 46px
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow)
}

.logo small {
  display: block;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .18em
}

.nav-list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap
}

.nav-link {
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary)
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  border-radius: 999px
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(44, 177, 161, .12), transparent 30%),
    linear-gradient(135deg, rgba(44, 177, 161, .06), rgba(31, 78, 95, .04));
  padding-top: 120px
}

.hero-grid,
.grid-2,
.contact-grid,
.card-grid,
.trust-grid,
.steps,
.info-grid,
.team-grid {
  display: grid;
  gap: 28px
}

.hero-grid,
.grid-2,
.contact-grid {
  grid-template-columns: 1.15fr .85fr;
  align-items: center
}

.hero-copy p {
  max-width: 680px;
  font-size: 1.05rem
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow)
}

.btn-primary:hover {
  transform: translateY(-2px)
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--border)
}

.panel,
.card,
.step,
.trust-box,
.contact-form,
.info-box,
.feature-box,
.quote-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.panel,
.contact-form,
.info-box,
.quote-box {
  padding: 32px
}

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

.trust-box,
.card,
.step,
.feature-box {
  padding: 28px
}

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

.steps {
  grid-template-columns: repeat(4, 1fr)
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(44, 177, 161, .12);
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 16px
}

.section-head {
  max-width: 760px;
  margin-bottom: 46px
}

.list {
  display: grid;
  gap: 12px
}

.list li {
  padding-left: 20px;
  position: relative;
  color: var(--muted)
}

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

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

.gallery .photo {
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #c8ece8, #edf8f7);
  border: 1px solid var(--border);
  display: flex;
  align-items: end;
  padding: 20px
}

.photo span {
  background: rgba(255, 255, 255, .9);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700
}

.notice {
  background: linear-gradient(135deg, rgba(31, 78, 95, .04), rgba(44, 177, 161, .10));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px
}

form input,
form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: #fff
}

form textarea {
  resize: vertical;
  min-height: 140px
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(44, 177, 161, .12)
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: #fff
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700
}

.muted {
  color: var(--muted)
}

.hero-mini {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, rgba(44, 177, 161, .08), rgba(31, 78, 95, .04))
}

.table-like {
  display: grid;
  gap: 16px
}

.table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border)
}

.table-row:last-child {
  border-bottom: 0
}

.small {
  font-size: .95rem
}

@media (max-width: 980px) {

  .hero-grid,
  .grid-2,
  .contact-grid,
  .trust-grid,
  .steps,
  .card-grid,
  .gallery,
  .info-grid,
  .team-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  .section {
    padding: 74px 0
  }

  .nav-wrap {
    padding: 16px 0;
    flex-direction: column
  }

  .nav-list {
    justify-content: center;
    gap: 18px
  }

  .table-row {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 96px
  }
}