:root {
  --navy: #14315f;
  --navy-deep: #0c1d3a;
  --navy-soft: #e9f0fb;
  --green: #27944a;
  --green-soft: #edf7ef;
  --text: #13253f;
  --muted: #5a6d86;
  --line: rgba(19, 37, 63, 0.12);
  --white: #ffffff;
  --bg: #f6f9fc;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(14, 33, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 22%, #f5f8fb 100%);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 251, 255, 0.88);
  border-bottom: 1px solid rgba(19, 37, 63, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.site-header .brand-logo {
  height: 34px;
}

.brand-copy strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.15;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.header-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--muted);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #3bb85c);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(39, 148, 74, 0.24);
}

.button-secondary {
  background: rgba(20, 49, 95, 0.08);
  color: var(--navy);
  border-color: rgba(20, 49, 95, 0.1);
}

.button-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 28px;
  background:
    radial-gradient(circle at 15% 18%, rgba(39, 148, 74, 0.14), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(20, 49, 95, 0.13), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 48%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(20, 49, 95, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 49, 95, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 84%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 34px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 49, 95, 0.08);
  border: 1px solid rgba(20, 49, 95, 0.06);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.kicker-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lead {
  margin: 0;
  max-width: 46rem;
  font-size: 1.16rem;
  color: var(--muted);
}

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

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.card-points li {
  position: relative;
  padding-left: 18px;
}

.hero-list li::before,
.card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-list li {
  padding: 18px 18px 18px 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.hero-side {
  position: relative;
}

.image-frame {
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
}

.contact-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(12, 29, 58, 0.94);
  color: var(--white);
  box-shadow: 0 24px 52px rgba(12, 29, 58, 0.28);
}

.card-tag {
  margin: 0 0 8px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
}

.contact-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.card-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.proof-strip {
  padding: 0 0 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-item,
.card,
.info-panel,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-item {
  padding: 24px;
  border-radius: 24px;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.proof-item span,
.section-intro p,
.rich-text p,
.card p,
.info-panel p,
.info-panel li,
.faq-item p,
.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--muted);
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f7fafc 0%, #edf5ef 100%);
}

.section-intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

.section-intro h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.narrow {
  max-width: 52rem;
  margin-bottom: 32px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.rich-text {
  display: grid;
  gap: 18px;
}

.rich-text p {
  margin: 0;
  font-size: 1.05rem;
}

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

.card {
  padding: 26px;
  border-radius: 26px;
}

.card h3,
.info-panel h2 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

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

.info-panel {
  padding: 30px;
  border-radius: 28px;
}

.info-panel.emphasis {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 62%, var(--green) 150%);
  border-color: transparent;
}

.info-panel.emphasis h2,
.info-panel.emphasis .panel-kicker {
  color: var(--white);
}

.info-panel.emphasis p,
.info-panel.emphasis li {
  color: rgba(255, 255, 255, 0.84);
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 62%, var(--green) 150%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band p {
  margin: 14px 0 0;
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-section {
  padding-top: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border-radius: 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 20px;
}

.site-footer {
  margin-top: 24px;
  padding: 40px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand .brand-logo {
  height: 38px;
  max-width: 190px;
  flex: 0 0 auto;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  margin: 0;
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.footer-links-label {
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.96);
}

.footer-links a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1100px) {
  .hero-grid,
  .content-grid,
  .double-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-card {
    position: static;
    max-width: none;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 26px), var(--max));
  }

  .header-inner {
    align-items: flex-start;
  }

  .header-meta {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-list,
  .proof-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .card,
  .info-panel {
    padding: 24px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-links-label {
    margin: 0 0 6px;
  }

  .button {
    width: 100%;
  }

  .site-header .brand-logo {
    height: 28px;
    max-width: 170px;
  }

  .footer-brand .brand-logo {
    height: 32px;
    max-width: 160px;
  }
}
