:root {
  --bg: #eefbff;
  --bg-soft: #f7fdff;
  --text: #12343d;
  --muted: #5f747c;
  --sea: #00a9c7;
  --sea-dark: #075b70;
  --turquoise: #25d0c2;
  --aqua: #bff4f6;
  --sky: #dff7ff;
  --sun: #ffc857;
  --sun-soft: #ffe7ad;
  --sand: #f2d38a;
  --coral: #ff8a5b;
  --line: rgba(18, 52, 61, .12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 169, 199, .18);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 251, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--bg-soft);
  background: var(--sea);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}

.nav a:hover,
.header-phone:hover {
  color: var(--sea);
}

.header-phone {
  font-weight: 700;
  color: var(--sea-dark);
}

.hero {
  padding: 84px 0 64px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 200, 87, .38), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(37, 208, 194, .42), transparent 34%),
    radial-gradient(circle at 70% 78%, rgba(0, 169, 199, .22), transparent 36%),
    linear-gradient(135deg, #fff3cf 0%, #e5fbff 38%, #c9f5fb 72%, #bff4f6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: start;
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-flex;
  color: var(--sea);
  background: rgba(15, 79, 95, .08);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

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

h1 {
  margin: 22px 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}

.lead {
  font-size: 21px;
  color: var(--muted);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--sea);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 159, 157, .24);
}

.btn.primary:hover {
  background: var(--sea-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(255, 255, 255, .55);
  border-color: var(--line);
}

.btn.secondary:hover {
  background: #fff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  min-height: 520px;
  border-radius: 38px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 200, 87, .22), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(37, 208, 194, .24), transparent 34%),
    linear-gradient(135deg, #073f5f 0%, #075b70 48%, #02222d 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card .card-label {
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  width: max-content;
  margin-bottom: 18px;
}

.hero-card h2 {
  color: #fff;
  max-width: 520px;
}

.hero-card p {
  color: rgba(255,255,255,.92);
  font-size: 18px;
}

.section {
  padding: 84px 0;
}

.two-col,
.why-grid,
.request-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.text-block {
  font-size: 19px;
  color: var(--muted);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p {
  font-size: 19px;
  color: var(--muted);
}

.cards-grid,
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.region-card {
  background: linear-gradient(180deg, #ffffff 0%, #f2fcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 36px rgba(24, 47, 53, .05);
}

.service-card p,
.region-card p {
  color: var(--muted);
}

.why {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 200, 87, .22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(37, 208, 194, .26), transparent 34%),
    linear-gradient(135deg, #075b70 0%, #008fb0 52%, #073f5f 100%);
  color: #fff;
}

.why .section-kicker {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.why-panel p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

.trust-list {
  display: grid;
  gap: 16px;
}

.trust-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.trust-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--sand);
  font-weight: 800;
}

.trust-item p {
  color: rgba(255,255,255,.72);
  margin-bottom: 0;
}

.steps-list {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f2fcff 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.step-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sea);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.consult {
  padding-top: 20px;
}

.consult-card {
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 87, .38), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(37, 208, 194, .30), transparent 34%),
    linear-gradient(135deg, #00a9c7 0%, #075b70 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.consult-card .section-kicker {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.consult-card p {
  color: rgba(255,255,255,.8);
  max-width: 760px;
  font-size: 18px;
}

.request {
  background: linear-gradient(135deg, #f7fdff 0%, #eefbff 55%, #fff6dc 100%);
}

.contact-box {
  margin-top: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box a {
  color: var(--sea);
  font-weight: 700;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfbfb;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  background: #fff;
}

.form-btn {
  width: 100%;
  border: 0;
  margin-top: 6px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 36px 0;
  background: linear-gradient(135deg, #075b70 0%, #073f5f 100%);
  color: #fff;
}

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

.footer p {
  color: rgba(255,255,255,.68);
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.74);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .two-col,
  .why-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-card {
    min-height: 420px;
  }

  .cards-grid,
  .region-grid {
    grid-template-columns: 1fr 1fr;
  }

  .consult-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-phone {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 32px;
  }

  .cards-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero-card,
  .consult-card,
  .lead-form {
    border-radius: 26px;
  }
}

.section-kicker {
  display: flex;
  width: max-content;
  margin-bottom: 22px;
}

.card-label {
  display: flex;
  width: max-content;
  margin-bottom: 22px;
}


/* Mobile header improvements */
.top-brow {
  height: 5px;
  background: linear-gradient(90deg, #075b70 0%, #00a9c7 55%, #25d0c2 100%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--sea-dark);
  transition: .2s ease;
}

.menu-toggle-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {  .site-header {
    box-shadow: 0 12px 34px rgba(7, 91, 112, .08);
  }

  .header-inner {
    min-height: 66px;
    position: relative;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .header-phone {
    display: inline-flex;
    margin-left: auto;
    font-size: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--sea);
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .header-phone::before {
    content: "☎";
    font-size: 20px;
    line-height: 1;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(247, 253, 255, .98);
    box-shadow: 0 22px 60px rgba(7, 91, 112, .18);
    backdrop-filter: blur(18px);
    z-index: 40;
  }

  .nav.nav-open {
    display: grid;
    gap: 4px;
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--text);
    background: rgba(255,255,255,.58);
  }

  .nav a:hover {
    background: #fff;
    color: var(--sea-dark);
  }

  .hero {
    padding: 38px 0 48px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-content {
    text-align: left;
  }

  .eyebrow,
  .section-kicker,
  .card-label {
    font-size: 13px;
    padding: 7px 11px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    font-size: 13px;
    padding: 7px 10px;
  }
}

@media (max-width: 620px) {
  .hero-card {
    min-height: 340px;
    padding: 26px;
  }

  .two-col,
  .why-grid,
  .request-grid {
    gap: 28px;
  }

  .trust-item,
  .step {
    grid-template-columns: 1fr;
  }

  .step-num,
  .trust-item span {
    margin-bottom: 4px;
  }

  .footer-links {
    display: grid;
    gap: 10px;
  }
}




.brand-mark {
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: inherit;
}
