:root {
  --ink: #20242a;
  --muted: #666666;
  --green: #39434c;
  --green2: #4e88b5;
  --mint: #e4edf4;
  --cream: #e2e3de;
  --coral: #996633;
  --white: #fff;
  --line: #c3c4bd;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(52, 61, 69, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.skip {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
}
.skip:focus {
  top: 10px;
}
.header {
  position: sticky;
  top: 0;
  height: 82px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(210, 214, 218, 0.8);
}
.nav-row,
.legal-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo > img {
  width: 38px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
}
.logo b,
.logo small {
  display: block;
  line-height: 1.15;
}
.logo small {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 700;
}
.header nav a:hover {
  color: var(--green2);
}
.nav-button {
  color: var(--green) !important;
  border: 1px solid var(--green);
  border-radius: 100px;
  padding: 9px 18px;
}
.menu {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.menu i {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.hero {
  height: calc(100vh - 82px);
  min-height: 660px;
  max-height: 900px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #252a2f;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image {
  object-position: center;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(20, 23, 27, 0.91) 0%,
    rgba(27, 31, 36, 0.72) 32%,
    rgba(30, 34, 39, 0.13) 60%,
    rgba(30, 34, 39, 0.05) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 690px;
  color: #fff;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green2);
  font-weight: 800;
  font-size: 0.74rem;
  margin: 0 0 15px;
}
.kicker.light {
  color: #b7d3e7;
}
.hero h1 {
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 25px;
}
.hero h1 em {
  font-style: normal;
  color: #b7d3e7;
}
.hero-copy > p:not(.kicker) {
  font-size: 1.13rem;
  max-width: 600px;
  color: #e2e3de;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 14px 24px;
  font-weight: 800;
  cursor: pointer;
}
.coral {
  background: var(--coral);
  color: #fff;
}
.coral:hover {
  background: #7b522c;
}
.glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 33px 0 0;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  color: #d8d9d1;
  font-size: 0.8rem;
}
.hero-points li:before {
  content: "✓";
  margin-right: 7px;
  color: #b7d3e7;
  font-weight: 800;
}
.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  color: #fff;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.intro {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 60px;
}
h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}
.intro-text {
  font-size: 1.04rem;
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.offer-card.featured {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.offer-card .number {
  position: absolute;
  right: 25px;
  top: 24px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #999999;
}
.offer-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--mint);
  color: var(--green);
  font-size: 1.45rem;
  margin: 20px 0 36px;
}
.offer-card.featured .offer-icon {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}
.offer-card p {
  color: var(--muted);
  font-size: 0.92rem;
}
.offer-card.featured p,
.offer-card.featured li {
  color: #d8d9d1;
}
.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 25px;
  font-size: 0.84rem;
  color: var(--muted);
}
.offer-card li {
  margin: 7px 0;
}
.offer-card li:before {
  content: "✓";
  color: var(--green2);
  font-weight: 800;
  margin-right: 8px;
}
.offer-card.featured li:before {
  color: #b7d3e7;
}
.offer-card > a {
  margin-top: auto;
  color: var(--green2);
  font-size: 0.86rem;
  font-weight: 800;
}
.offer-card.featured > a {
  color: #fff;
}
.scenes {
  background: var(--cream);
  padding-bottom: 90px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 440px;
  color: var(--muted);
  margin: 0;
}
.scene-image {
  margin: 0;
}
.scene-image > img {
  width: 100%;
  height: min(49vw, 580px);
  object-fit: cover;
}
.scene-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.scene-tabs span {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 24px 28px;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(52, 61, 69, 0.08);
}
.scene-tabs span:first-child {
  border-radius: 15px 0 0 15px;
}
.scene-tabs span:last-child {
  border-radius: 0 15px 15px 0;
  border: 0;
}
.scene-tabs b {
  color: var(--coral);
  font-size: 0.72rem;
  margin-right: 10px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 65px;
}
.benefit {
  display: flex;
  gap: 15px;
}
.benefit > span {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}
.benefit h3 {
  margin: 0 0 4px;
}
.benefit p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.portrait-wrap {
  position: relative;
  min-height: 550px;
  background: var(--mint);
  border-radius: 36px;
  overflow: hidden;
}
.portrait-wrap:before {
  content: "";
  position: absolute;
  inset: 35px;
  border-radius: 50%;
  border: 1px solid rgba(78, 136, 181, 0.2);
}
.portrait-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center 65%;
  filter: saturate(0.92) contrast(0.98);
}
.since {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: #fff;
  border-radius: 16px;
  padding: 15px 20px;
  box-shadow: var(--shadow);
}
.since b,
.since span {
  display: block;
}
.since span {
  font-size: 0.72rem;
  color: var(--muted);
}
.about-copy .lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
  margin-top: 30px;
}
.about-copy > p:not(.kicker):not(.lead) {
  color: var(--muted);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0;
}
.facts span {
  font-size: 0.76rem;
  color: var(--muted);
}
.facts b {
  display: block;
  color: var(--green);
  font-size: 0.84rem;
}
.text-link {
  font-weight: 800;
  color: var(--green2);
}
.process {
  background: #f3f3f1;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 55px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.process-list li {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.process-list > li > span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.process-list h3 {
  margin: 4px 0 8px;
}
.process-list p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}
.contact {
  background: var(--green);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.contact-copy h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}
.contact-copy > p:not(.kicker) {
  color: #d8d9d1;
}
.contact-copy address {
  font-style: normal;
  margin-top: 40px;
}
.contact-copy address > * {
  display: block;
  margin: 20px 0;
  font-size: 1.05rem;
}
.contact-copy address small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aab8c3;
  font-size: 0.65rem;
  font-weight: 800;
}
.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 38px;
  border-radius: var(--radius);
}
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #c3c4bd;
  background: #fff;
  border-radius: 11px;
  padding: 13px;
  color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(78, 136, 181, 0.16);
  border-color: var(--green2);
}
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
  font-weight: 500 !important;
}
.consent input {
  margin-top: 4px;
}
.consent a {
  text-decoration: underline;
}
.form-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 12px 0 0;
}
footer {
  background: #252a2f;
  color: #fff;
  padding: 55px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.footer-logo > img {
  background: #fff;
}
.footer-logo small,
.footer-grid > p {
  color: #b7bec4;
}
.footer-grid nav {
  display: flex;
  justify-content: end;
  gap: 25px;
  font-size: 0.84rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 20px;
  margin-top: 35px;
  color: #999999;
  font-size: 0.75rem;
}
.appear {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.appear.visible {
  opacity: 1;
  transform: none;
}
.legal {
  background: #f3f3f1;
}
.legal-header {
  height: 82px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.legal-header .back {
  font-weight: 700;
  color: var(--green2);
}
.legal-main {
  max-width: 850px;
  padding-top: 80px;
  padding-bottom: 100px;
}
.legal-main h1 {
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 34px;
}
.legal-main section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 30px;
  margin: 15px 0;
}
.legal-main h2 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 13px;
}
.legal-main p {
  color: #4f615b;
}
.legal-main a {
  color: var(--green2);
  text-decoration: underline;
}
.legal-note {
  background: #fff4e9;
  border-left: 4px solid var(--coral);
  padding: 20px 24px;
  margin-top: 35px !important;
  border-radius: 0 12px 12px 0;
}
@media (max-width: 900px) {
  .header nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .header nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .hero {
    height: auto;
    min-height: 720px;
  }
  .hero-image {
    object-position: 64% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(20, 23, 27, 0.9),
      rgba(20, 23, 27, 0.52)
    );
  }
  .intro-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .cards .offer-card:last-child {
    grid-column: 1/-1;
  }
  .about-copy {
    max-width: 720px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 22px;
  }
  .portrait-wrap,
  .portrait-wrap img {
    min-height: 500px;
    height: 500px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > p {
    display: none;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .section {
    padding: 78px 0;
  }
  .hero {
    min-height: 740px;
  }
  .hero-image {
    object-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(20, 23, 27, 0.94),
      rgba(20, 23, 27, 0.64)
    );
  }
  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.28;
    letter-spacing: 0;
  }
  h3 {
    font-size: 1rem;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 1rem;
  }
  .actions .button {
    width: 100%;
  }
  .hero-points {
    display: grid;
    gap: 7px;
  }
  .cards,
  .benefits,
  .process-list,
  .form-split {
    grid-template-columns: 1fr;
  }
  .cards .offer-card:last-child {
    grid-column: auto;
  }
  .offer-card {
    min-height: 390px;
  }
  .scene-image > img {
    height: 420px;
  }
  .scene-tabs {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .scene-tabs span,
  .scene-tabs span:first-child,
  .scene-tabs span:last-child {
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
  }
  .scene-tabs span:first-child {
    border-radius: 12px 12px 0 0;
  }
  .scene-tabs span:last-child {
    border-radius: 0 0 12px 12px;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form {
    padding: 25px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid nav {
    justify-content: start;
  }
  .legal-header .back {
    font-size: 0.78rem;
  }
  .legal-main {
    padding-top: 55px;
  }
  .legal-main h1 {
    margin-bottom: 40px;
  }
  .legal-main section {
    padding: 22px 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .appear {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
