:root {
  --navy: #0b2a4a;
  --navy-mid: #123a62;
  --navy-deep: #071f38;
  --green: #1a7a4c;
  --green-dark: #14603c;
  --green-soft: #e8f5ee;
  --ink: #1a2332;
  --muted: #5a6a7a;
  --line: #e2e8f0;
  --bg: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(11, 42, 74, 0.08);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", system-ui, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

main section[id] {
  scroll-margin-top: 96px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn--lg { padding: 1rem 1.55rem; }
.btn--nav { padding: 0.7rem 1.15rem; font-size: 0.8rem; flex-shrink: 0; }

.section-title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title--green { color: var(--green); }

.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 0.55rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__item,
.top-bar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar__contacts { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.top-bar__social { display: flex; gap: 0.85rem; }
.top-bar a:hover { color: #9fe0bc; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar.scrolled { box-shadow: 0 8px 24px rgba(11, 42, 74, 0.08); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.logo { display: flex; align-items: center; gap: 0.7rem; }

.logo__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.logo__text { display: flex; flex-direction: column; justify-content: center; line-height: 1.05; }
.logo__text strong { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: 0.06em; text-shadow: 0 1px 0 rgba(11, 42, 74, 0.12); }
.logo__text > span { display: inline-flex; align-items: flex-start; gap: 0.12rem; font-family: var(--display); font-size: 0.72rem; font-weight: 700; color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; text-shadow: 0 1px 0 rgba(11, 42, 74, 0.08); }
.logo__tm { font-size: 0.55em; font-weight: 800; color: #e11d2e; line-height: 1; position: relative; top: -0.15em; left: 0.05em; letter-spacing: 0; font-style: normal; }

.nav { display: flex; align-items: center; gap: 0.15rem; }

.nav__link {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.55rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  white-space: nowrap;
}

.nav__link:hover,
.nav__dropdown:hover > .nav__trigger { color: var(--green); }
.nav__link i { font-size: 0.65rem; }
.nav__dropdown { position: relative; }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 230px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  z-index: 120;
}

.nav__dropdown-menu--cols {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: none;
}

.nav__dropdown--wide .nav__dropdown-menu {
  left: 50%;
  transform: translate(-50%, 6px);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown--wide:hover .nav__dropdown-menu,
.nav__dropdown--wide:focus-within .nav__dropdown-menu,
.nav__dropdown--wide.open .nav__dropdown-menu {
  transform: translate(-50%, 0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-size: 0.86rem;
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.is-active {
  background: var(--green-soft);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span { width: 18px; height: 2px; background: var(--navy); }

/* Hero */
.pvt-hero {
  position: relative;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 50% at 88% 30%, rgba(26, 122, 76, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 45% at 8% 80%, rgba(11, 42, 74, 0.06), transparent 55%),
    linear-gradient(165deg, #eef3f8 0%, #f5f8fb 50%, #ffffff 100%);
}

.pvt-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.85rem; }
.breadcrumb a:hover { color: var(--green); }

.pvt-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.pvt-hero h1 em { font-style: normal; color: var(--green); }

.pvt-hero__banner {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.pvt-hero__text {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.pvt-hero__perks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.perk {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}

.perk i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(11, 42, 74, 0.05);
}

.pvt-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.pvt-hero__glow {
  position: absolute;
  width: 78%;
  height: 68%;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 122, 76, 0.18) 0%, rgba(11, 42, 74, 0.08) 45%, transparent 70%);
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
}

.pvt-hero__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: 600px;
  border-radius: 22px;
  overflow: hidden;
  padding: 0.7rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 239, 247, 0.95));
  border: 1px solid rgba(197, 210, 224, 0.8);
  box-shadow:
    0 10px 24px rgba(11, 42, 74, 0.08),
    0 24px 56px rgba(11, 42, 74, 0.09);
  animation: floatCard 5.8s ease-in-out infinite;
}

.pvt-hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.pvt-hero__figure:hover .pvt-hero__img {
  
  box-shadow: 0 12px 26px rgba(11, 42, 74, 0.12);
}

@keyframes floatCard {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Why */
.why { padding: 1.5rem 0 1.75rem; background: var(--white); }

.why .section-title {
  margin-bottom: 2rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem 0.85rem;
  align-items: start;
  max-width: 1120px;
  margin-inline: auto;
}

.why .why-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.35rem;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  border: none;
  overflow: visible;
  position: relative;
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.why .why-card::before {
  display: none;
}

.why .why-card:hover {
  transform: scale(1.14);
  box-shadow: none;
  background: transparent;
  border-color: transparent;
}

.process__step:hover,
.reqs-panel:hover,
.advantages__grid article:hover,
.trust-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11, 42, 74, 0.08);
}

.why .why-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
}

.why .why-card:hover i {
  transform: scale(1.12);
  background: #dff5e8;
  color: var(--green);
  box-shadow: 0 10px 22px rgba(45, 138, 90, 0.25);
}

.why .why-card h3 {
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-wrap: balance;
  margin: 0;
  transition: color 0.3s ease;
}

.why .why-card:hover h3 {
  color: var(--green);
}

/* Process */
.process { padding: 1rem 0 2rem; background: var(--bg); }

.process__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem;
}

.process__step { flex: 1; text-align: center; max-width: 170px; }

.process__num {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--navy);
  color: #9fe0bc;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.process__step h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.process__step p { font-size: 0.8rem; color: var(--muted); }
.process__arrow { color: var(--green); padding-top: 1.15rem; opacity: 0.7; }

/* Requirements */
.reqs { padding: 1.5rem 0; background: var(--white); }

.reqs__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: 0.45rem;
  row-gap: 0.35rem;
  align-items: stretch;
}

.reqs-panel {
  background: var(--bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.reqs-panel header {
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.95rem 1.2rem;
}

.reqs-panel ol {
  list-style: none;
  padding: 1.25rem;
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.reqs-panel ol li {
  color: var(--ink);
}

.reqs-panel--min {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.reqs-panel--min .min-req {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.15rem;
  padding: 2rem 1.5rem 2.25rem;
}

.min-req__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 2.35rem;
  flex-shrink: 0;
}

.min-req h3 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.55rem;
}

.min-req p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 26rem;
  margin: 0 auto;
}

/* Advantages */
.advantages { padding: 1rem 0 1.85rem; background: var(--bg); }

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0.62rem;
  row-gap: 0.35rem;
}

.advantages__grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1rem;
  text-align: center;
}

.advantages__grid i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
  font-size: 1.15rem;
}

.advantages__grid h3 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 0.95rem;
}

/* Trust */
.trust {
  background: var(--navy-deep);
  color: var(--white);
  padding: 1.75rem 0;
}

.trust__inner { display: grid; column-gap: 0.78rem; row-gap: 0.35rem; }

.trust-cta {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.2rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-cta > i { font-size: 1.6rem; color: #9fe0bc; }

.trust-cta strong {
  font-family: var(--display);
  display: block;
  margin-bottom: 0.2rem;
}

.trust-cta p { opacity: 0.85; font-size: 0.9rem; }

.trust-cta .btn { margin-left: auto; }

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0.62rem;
  row-gap: 0.35rem;
}

.trust__grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
}

.trust__grid i { color: #9fe0bc; }

.footer {
  background: #041526;
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem 0;
  font-size: 0.88rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a { color: #9fe0bc; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .why__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 780px;
    gap: 1.25rem 1rem;
  }
  .why .why-card:hover { transform: scale(1.08); }
  .pvt-hero__perks { grid-template-columns: repeat(3, 1fr); }
  .advantages__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .pvt-hero__grid,
  .reqs__grid { grid-template-columns: 1fr; }

  .pvt-hero__visual { order: -1; }

  .pvt-hero__figure {
    max-width: 560px;
    margin-inline: auto;
  }

  .pvt-hero__img {
    aspect-ratio: 16 / 9;
  }

  .process__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem 0.75rem;
  }

  .process__arrow { display: none; }
  .process__step { flex: 0 0 calc(50% - 1rem); max-width: none; }

  .trust__grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.1rem;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .nav__dropdown-menu,
  .nav__dropdown-menu--cols {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    border: none;
    display: none;
    min-width: 0;
    grid-template-columns: 1fr;
    padding-left: 0.75rem;
  }

  .nav__dropdown.open .nav__dropdown-menu { display: grid; }
}

@media (max-width: 700px) {
  .top-bar__contacts { display: none; }
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.85rem;
  }
  .why-card h3 { min-height: 0; font-size: 0.82rem; }
  .why .why-card:hover { transform: scale(1.06); }
  .pvt-hero__perks,
  .advantages__grid,
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .process__step { flex-basis: 100%; }
  .trust-cta .btn { margin-left: 0; width: 100%; }
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep) center/cover no-repeat;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 31, 56, 0.88) 0%, rgba(11, 42, 74, 0.72) 45%, rgba(7, 31, 56, 0.55) 100%);
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  color: var(--white);
}

.contact-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.contact-hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.1rem;
}

.contact-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.contact-hero .breadcrumb a { color: #9fe0bc; }
.contact-hero .breadcrumb a:hover { color: var(--white); }
.contact-hero .breadcrumb span { color: rgba(255, 255, 255, 0.95); }

.contact-main {
  padding: 2.5rem 0;
  background: var(--bg);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.35rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-list__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.contact-list strong {
  display: block;
  font-family: var(--display);
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-list p,
.contact-list a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-list a:hover { color: var(--green); }

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--display);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26, 122, 76, 0.12);
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form label.contact-form__check {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}

.contact-form label.contact-form__check input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  margin: 0.1rem 0 0;
  padding: 0;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 4px;
}

.contact-form label.contact-form__check span {
  flex: 1;
  text-align: left;
}

.contact-form label.contact-form__check a {
  color: var(--green);
  font-weight: 700;
}

.contact-form .btn { width: 100%; margin-top: 0.25rem; }

.contact-form__success {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--green);
  font-size: 0.9rem;
}

.contact-map {
  padding: 2.25rem 0;
  background: var(--white);
}

.contact-map__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
}

.contact-map__info h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.contact-map__info p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.contact-map__frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 280px;
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 2.25rem 0;
}

.contact-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.contact-cta__art {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: #9fe0bc;
}

.contact-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.contact-cta p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }

.contact-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  min-width: 220px;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-cta__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-cta__meta a:hover { color: #9fe0bc; }

.nav__link.active { color: var(--green); }

@media (max-width: 980px) {
  .contact-main__grid,
  .contact-map__grid,
  .contact-cta__inner {
    grid-template-columns: 1fr;
  }

  .contact-cta__art { display: none; }
  .contact-cta__actions { min-width: 0; }
}

@media (max-width: 700px) {
  .contact-form__row { grid-template-columns: 1fr; }
}
