:root {
  --ink: #31454a;
  --muted: #6d7f80;
  --paper: #ffffff;
  --cream: #fff5df;
  --mist: #eaf7f2;
  --mint: #9fcec0;
  --sage: #78a995;
  --teal: #3f827b;
  --coral: #df8a72;
  --sun: #f2c97b;
  --blue: #b8d8e1;
  --line: rgba(49, 69, 74, 0.13);
  --shadow: 0 18px 46px rgba(70, 99, 101, 0.14);
  --radius: 8px;
  --header-height: 76px;
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(234, 247, 242, 0.75), rgba(255, 255, 255, 0) 24rem),
    var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header-height);
  padding: 14px 0;
  color: var(--ink);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header__inner {
  height: 100%;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 239, 0.94);
  box-shadow: 0 10px 30px rgba(49, 69, 74, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  display: block;
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: currentColor;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 245, 223, 0.72);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: var(--mist);
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 245, 223, 0.78);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  min-height: min(760px, 92vh);
  display: flex;
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(234, 247, 242, 0.9), rgba(255, 245, 223, 0.86)),
    var(--cream);
}

.hero__inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 16px) 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(34px, 5.5vw, 72px);
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero__media {
  margin: 0;
  justify-self: end;
  width: min(100%, 500px);
}

.hero__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 22px 46px rgba(70, 99, 101, 0.16);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--teal);
}

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

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(63, 130, 123, 0.28);
}

.button--ghost {
  border-color: rgba(63, 130, 123, 0.32);
  background: rgba(255, 255, 255, 0.54);
  color: var(--teal);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  padding: 16px 0;
  border-top: 1px solid rgba(63, 130, 123, 0.22);
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 24px;
}

.hero__facts span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section--soft {
  background: var(--mist);
}

.section--accent {
  background: #4a8178;
  color: var(--paper);
}

.section--accent p {
  color: rgba(255, 255, 255, 0.76);
}

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

.section__heading {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section__heading--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.intro {
  padding: 58px 0;
  background: linear-gradient(90deg, rgba(255, 245, 223, 0.72), rgba(255, 255, 255, 0));
}

.intro__grid,
.approach,
.signs,
.testimonials__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro__text {
  display: grid;
  gap: 14px;
}

.intro__text p:last-child {
  margin-bottom: 0;
}

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

.service-card,
.approach-item,
blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.service-card {
  min-height: 260px;
  padding: 22.56px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 19.74px;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.service-card:nth-child(4n + 2) .service-card__icon {
  background: var(--sun);
}

.service-card:nth-child(4n + 3) .service-card__icon {
  background: var(--mint);
}

.service-card:nth-child(4n + 4) .service-card__icon {
  background: #f4c5b7;
}

.service-card p,
.approach-item p {
  margin-bottom: 0;
}

.approach__list {
  display: grid;
  gap: 14px;
}

.approach-item {
  padding: 24px;
  border-left: 5px solid var(--mint);
  box-shadow: 0 10px 34px rgba(70, 99, 101, 0.08);
}

.approach-item:nth-child(2) {
  border-left-color: var(--sun);
}

.approach-item:nth-child(3) {
  border-left-color: var(--coral);
}

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

.steps li {
  position: relative;
  min-height: 278px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 850;
}

.steps h3 {
  color: var(--paper);
}

.signs {
  align-items: center;
}

.signs__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signs__list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(70, 99, 101, 0.06);
}

.signs__list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(120, 169, 149, 0.18);
}

blockquote {
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

blockquote p {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.58;
}

cite {
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
}

.contact {
  background:
    linear-gradient(135deg, rgba(159, 206, 192, 0.22), rgba(242, 201, 123, 0.22)),
    var(--paper);
}

.contact__info p {
  max-width: 560px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  width: fit-content;
  color: var(--teal);
  font-weight: 850;
}

.messengers {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.messenger {
  width: 47.5px;
  height: 47.5px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}

.messenger:hover {
  transform: translateY(-3px);
  filter: brightness(1.05) saturate(1.04);
}

.messenger--whatsapp {
  background: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.messenger--telegram {
  background: linear-gradient(180deg, #2aabee 0%, #229ed9 100%);
  box-shadow: 0 6px 16px rgba(34, 158, 217, 0.3);
}

.messenger--max {
  background:
    radial-gradient(100% 100% at 8% 96%, #4cc7ff 0%, rgba(76, 199, 255, 0) 46%),
    linear-gradient(132deg, #4f6dff 0%, #7a66ef 50%, #aa70df 100%);
  box-shadow: 0 6px 16px rgba(95, 80, 230, 0.3);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf7;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 122, 117, 0.12);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  padding: 26px 0;
  background: #31454a;
  color: var(--paper);
}

.site-footer__inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  flex-wrap: wrap;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__brand {
  font-weight: 800;
  color: var(--paper);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 24px;
}

.site-footer__nav a {
  font-size: 14px;
  transition: color 160ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal {
  padding: calc(var(--header-height) + 48px) 0 clamp(56px, 8vw, 96px);
}

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

.legal__title {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.14;
}

.legal__content p {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
}

.legal__content a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.legal__content ul {
  margin: 0 0 16px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.legal__content li {
  color: var(--ink);
  line-height: 1.7;
}

.legal-section-title {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-section-title strong {
  font-size: 19px;
  color: var(--ink);
}

.site-cookie-consent {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1030;
  width: min(380px, calc(100vw - 32px));
  border-radius: 6px;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(70, 99, 101, 0.28);
  padding: 18px 19px 19px;
}

.site-cookie-consent[hidden] {
  display: none !important;
}

.site-cookie-consent__text {
  margin: 0;
  color: var(--paper);
  font-size: 13.5px;
  line-height: 1.45;
}

.site-cookie-consent__text a {
  color: var(--sun);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-cookie-consent__button {
  width: 100%;
  min-height: 32.6px;
  margin-top: 12px;
  border: 0;
  border-radius: 4px;
  color: var(--paper);
  background: var(--teal);
  padding: 8px 16px;
  font: inherit;
  font-size: 13.5px;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease;
}

.site-cookie-consent__button:hover,
.site-cookie-consent__button:focus-visible {
  background: var(--sage);
}

@media (max-width: 575.98px) {
  .site-cookie-consent {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    border-radius: 0;
    padding: 18px 19px calc(19px + env(safe-area-inset-bottom));
  }

  .site-cookie-consent__button {
    min-height: 29.6px;
  }
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    justify-self: start;
    width: min(100%, 520px);
  }

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

  .intro__grid,
  .approach,
  .signs,
  .testimonials__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section__heading {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand__logo {
    height: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 18px 22px;
    color: var(--ink);
    background: rgba(255, 250, 239, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 36px rgba(35, 49, 58, 0.12);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(calc(-100% - var(--header-height) - 40px));
    transition:
      transform 180ms ease,
      opacity 160ms ease,
      visibility 0s linear 180ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition:
      transform 180ms ease,
      opacity 160ms ease;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 14px 12px;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 42px;
    gap: 28px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  h2 {
    font-size: 34px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__facts li {
    padding: 12px 0;
  }

  .services-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .steps li {
    min-height: 0;
  }

  .steps span {
    margin-bottom: 24px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 16px;
    padding-left: 16px;
  }
}
