:root {
  --bg: #f4faf8;
  --surface: #ffffff;
  --text: #1e293b;
  --accent: #028fa8;
  --accent-dark: #11425e;
  --line: #cae2e9;
  --font-body: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(#f0faf7, #f8fcfb 18rem);
  line-height: 1.65;
}

.container { width: min(1060px, 92%); margin: 0 auto; }
.narrow { width: min(760px, 100%); }

.site-header {
  background: #ffffffd9;
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--line);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem 0; }
nav { display: flex; flex-wrap: wrap; gap: 1rem; }
nav a, .site-footer a { color: #0f172a; text-decoration: none; font-weight: 600; }
.logo-link { display: inline-flex; }
.brand-logo { width: 280px; max-width: 100%; height: auto; }

.hero {
 /* background: linear-gradient(145deg, #ddf4f0, #cdeee7);*/
  background: linear-gradient(145deg, #028fa8, #eaf4f7, #028fa8);
  text-align: center;
  padding: 4.4rem 0;
}
.hero.cta-block { padding: 3rem 0; }

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.25rem); margin: 0 0 .9rem; font-weight: 600; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 0 0 .75rem; font-weight: 600; }
.lead { font-size: 1.1rem; margin-bottom: 1.25rem; }

section { padding: 2.2rem 0; }
section.alt { background: #eaf4f7; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: .65rem;
  padding: .86rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-light { background: #fff; color: var(--accent-dark); border: 1px solid var(--line); }

.micro { color: #334155; font-size: .96rem; margin: .5rem 0 0; }
ul, ol { padding-left: 1.2rem; }


.form-status {
  display: none;
  margin: 0 0 1rem;
  padding: .75rem .85rem;
  border-radius: .5rem;
  font-weight: 600;
}

.form-status.is-success {
  display: block;
  color: #0f5132;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
}

.form-status.is-error {
  display: block;
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.request-form { display: grid; gap: .9rem; }
.request-form label { display: grid; gap: .35rem; font-weight: 600; }
input, textarea {
  width: 100%;
  padding: .72rem .8rem;
  border: 1px solid #bfded7;
  border-radius: .55rem;
  font: inherit;
  background: #fcfffe;
}



@media (max-width: 840px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
   nav a, .site-footer a { font-size: small; }
  .brand-logo { width: 180px; }
}


.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.site-footer {
  border-top: 1px solid rgba(202, 226, 233, 0.9);
  background:
    radial-gradient(circle at top center, rgba(2, 143, 168, 0.08), transparent 48%),
    linear-gradient(180deg, #f5fbfa 0%, #eef7f8 100%);
  padding: 2.4rem 0 1.5rem;
  font-size: .95rem;
}

.footer-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(202, 226, 233, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(17, 66, 94, 0.08);
  padding: 1.4rem 1.5rem 1rem;
}



.footer-lead,
.footer-note {
  margin: 0;
}

.footer-lead {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: .45rem;
}

.footer-note {
  color: #405565;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;

  color: #48606f;
}

.footer-bottom1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(202, 226, 233, 0.9);
  color: #48606f;
  font-size: smaller;
}

.footer-left {
  justify-self: start;
}

.footer-center {
  justify-self: center;
}

.footer-right {
  justify-self: end;
  text-align: right;
}

.footer-bottom a {
  color: var(--accent-dark);
  font-weight: 700;
}

.footer-bottom a:hover {
  opacity: .82;
}

@media (max-width: 840px) {
  .footer-card {
    padding: 1.2rem 1rem;
  }




}

