:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eefbfa;
  --text: #17324b;
  --muted: #607082;
  --brand: #2cc7c9;
  --brand-dark: #149196;
  --warm: #f3d36a;
  --coral: #f47f7c;
  --border: rgba(23, 50, 75, .1);
  --shadow: 0 18px 45px rgba(23, 50, 75, .12);
  --radius: 28px;
  --max: 1160px;
  --font: "Avenir Next", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

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

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 8% 0%, rgba(44, 199, 201, .18), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(243, 211, 106, .22), transparent 24%),
    linear-gradient(180deg, #f4f8fb 0%, #fffaf2 100%);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: var(--font);
  background: transparent;
}

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

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

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin: 16px 0 40px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(23, 50, 75, .08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.logo strong,
.logo small {
  display: block;
}

.logo small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav__link--active,
.nav__link:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(20, 145, 150, .22);
}

.btn--secondary {
  background: var(--warm);
  color: var(--text);
}

.btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn--disabled {
  opacity: .55;
  cursor: not-allowed;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
  padding: 54px;
  border-radius: 44px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: .95;
  letter-spacing: -.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero__lead,
.section__lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero__note,
.muted {
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.wall-poster {
  width: min(390px, 78%);
  margin: 0 auto;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(23, 50, 75, .18);
  overflow: hidden;
  transform: rotate(-2deg);
}

.phone-card {
  position: absolute;
  right: 0;
  bottom: 40px;
  max-width: 260px;
  padding: 22px;
  border-radius: 28px;
  background: #17324b;
  color: #fff;
  box-shadow: var(--shadow);
}

.phone-card span,
.phone-card small {
  display: block;
  color: #bdeeed;
}

.phone-card strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.section {
  padding: 72px 0 0;
}

.section__head {
  max-width: 840px;
  margin-bottom: 26px;
}

.section--accent {
  margin-top: 72px;
  padding: 54px;
  border-radius: 40px;
  background: #17324b;
  color: #fff;
}

.section--accent .section__lead,
.section--accent .card p {
  color: #d8ecf0;
}

.section--accent .card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card,
.mini-card,
.step,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 75, .06);
}

.card {
  padding: 24px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
}

.poster-card {
  padding: 0;
  overflow: hidden;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f3f7fa;
}

.card__body {
  padding: 24px;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 13px;
}

.badge--warm {
  color: #8a5f00;
  background: #fff4d2;
}

.included {
  font-weight: 800;
  color: var(--text) !important;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand-dark);
  font-weight: 900;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
}

.step span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.step p {
  margin: 6px 0 0;
  color: var(--text);
  font-weight: 700;
}

.compact {
  gap: 12px;
}

.mini-card {
  padding: 20px;
  font-weight: 850;
}

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

.audience div {
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-soft);
  font-weight: 850;
  text-align: center;
}

.final-cta {
  margin: 72px 0;
  padding: 54px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 10% 0%, rgba(44, 199, 201, .25), transparent 30%),
    linear-gradient(135deg, #fff, #fff6df);
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 820px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
}

.article-body p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 36px 0 56px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  max-width: 420px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .grid--3,
  .steps,
  .audience,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 20px, var(--max));
  }

  .hero,
  .section--accent,
  .final-cta {
    padding: 24px;
    border-radius: 28px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px auto 0;
  }
}
/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.96);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
  color: #fff;
}

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

.cookie-consent__body {
  max-width: 760px;
}

.cookie-consent__title {
  margin-bottom: 6px;
  font-weight: 800;
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.cookie-consent__link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.cookie-consent__accept {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.legal-text h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-text ul {
  margin: 0 0 18px 20px;
  padding: 0;
}

.legal-text li + li {
  margin-top: 8px;
}

@media (max-width: 720px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
  }

  .cookie-consent__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cookie-consent__actions .button {
    width: 100%;
    justify-content: center;
  }
}


.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
