:root {
  --bg: #ffffff;
  --soft: #f5f5f3;
  --soft-2: #f0f0ee;
  --text: #111111;
  --muted: #666666;
  --line: rgba(17, 17, 17, 0.1);
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 14px 40px rgba(17, 17, 17, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1240px;
  --header-height: 92px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  overflow-x: hidden;
}
.hero-title {
  position: relative;
  max-width: 920px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-line-accent {
  margin-top: 10px;
  color: #111111;
}

.hero-title-line-accent span {
  display: inline-block;
  position: relative;
  padding: 0.02em 0.14em 0.08em;
  margin: 0 0.02em;
  border-radius: 0.22em;
  background: #111111;
  color: #ffffff;
  letter-spacing: -0.065em;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.14);
  transform: translateY(-0.02em);
}

.hero-title-line-accent span::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -0.08em;
  height: 0.06em;
  border-radius: 999px;
  background: #111111;
  opacity: 0.18;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.12em;
  width: 7px;
  height: 72%;
  border-radius: 999px;
  background: linear-gradient(180deg, #111111, rgba(17, 17, 17, 0.12));
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(38px, 13.5vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .hero-title::before {
    left: -10px;
    width: 4px;
  }

  .hero-title-line-accent span {
    padding: 0.03em 0.13em 0.07em;
    border-radius: 0.24em;
  }
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

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

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

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(245,245,243,0.85), rgba(255,255,255,0.95));
}

.eyebrow,
.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: 0.02em;
  font-size: 14px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 920px;
}

.section-heading h2,
.hero-copy h1,
.cta-grid h2,
.modal-dialog h2,
.calculator-card h2 {
  margin: 18px 0 16px;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(48px, 7vw, 88px);
  max-width: 840px;
}

.section-heading h2,
.cta-grid h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.section-heading p,
.hero-text,
.cta-grid p,
.review-card p,
.segment-card p,
.why-card p,
.metric-card p,
.timeline-item p,
.service-card p,
.calculator-card p,
.modal-dialog p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 22px rgba(17, 17, 17, 0.04);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height var(--transition);
}

.site-header.scrolled .header-inner {
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--text);
  color: white;
  font-size: 18px;
  box-shadow: var(--shadow-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.mobile-menu a,
.site-footer a {
  color: var(--muted);
  transition: color var(--transition);
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  font-weight: 600;
}

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

.button-dark {
  background: var(--text);
  color: white;
  box-shadow: var(--shadow-soft);
}

.button-dark:hover {
  background: #262626;
}

.button-light {
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
}

.button-light:hover {
  border-color: rgba(17,17,17,0.2);
}

.button-full {
  width: 100%;
}

.burger {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
}

.mobile-menu-inner {
  display: grid;
  gap: 18px;
  padding: 20px 0 26px;
}

.hero {
  padding-top: 48px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.hero::before {
  top: -120px;
  right: -120px;
  background: rgba(17, 17, 17, 0.05);
}

.hero::after {
  bottom: 20px;
  left: -120px;
  background: rgba(17, 17, 17, 0.04);
}

.hero-grid,
.cta-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: start;
}

.hero-copy {
  padding-top: 40px;
}

.hero-text {
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.75);
}

.hero-stats,
.metrics-grid,
.services-grid,
.why-cards,
.timeline-grid,
.segments-grid,
.reviews-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.hero-stats article,
.metric-card,
.service-card,
.why-card,
.timeline-item,
.segment-card,
.review-card,
.panel-card,
.lead-form,
.cta-grid,
.modal-dialog {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
}

.hero-stats article {
  padding: 22px;
}

.hero-stats strong,
.metric-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.hero-stats span {
  color: var(--muted);
}

.panel-card,
.lead-form,
.modal-dialog {
  padding: 28px;
}

.calculator-card {
  position: sticky;
  top: 114px;
}

.calculator-form,
.lead-form,
.modal-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.calculator-form label,
.lead-form label,
.modal-form label,
.calculator-form fieldset {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.calculator-form select,
.lead-form input,
.lead-form select,
.lead-form textarea,
.modal-form input,
.modal-form select {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(17,17,17,0.12);
  background: white;
  padding: 0 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lead-form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.calculator-form select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.modal-form input:focus,
.modal-form select:focus {
  border-color: rgba(17,17,17,0.35);
  box-shadow: 0 0 0 4px rgba(17,17,17,0.06);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 500 !important;
  color: var(--muted) !important;
}

.check-row input {
  width: 18px;
  height: 18px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--text);
}

.range-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.estimate-box {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid rgba(17,17,17,0.08);
}

.estimate-box span,
.estimate-box small,
.form-note,
.form-success,
.footer-bottom,
.site-footer li {
  color: var(--muted);
}

.estimate-box strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 10px 0 8px;
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric-card,
.service-card,
.why-card,
.timeline-item,
.segment-card,
.review-card {
  padding: 26px;
}

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

.service-card,
.why-card,
.segment-card,
.review-card,
.metric-card,
.timeline-item {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.why-card:hover,
.segment-card:hover,
.review-card:hover,
.metric-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(17,17,17,0.16);
}

.service-number {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 42px;
}

.service-card h3,
.why-card h3,
.timeline-item h3,
.segment-card h3,
.site-footer h3 {
  font-size: 24px;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.service-card span {
  display: inline-block;
  margin-top: 24px;
  color: var(--text);
  font-weight: 600;
}

.why-cards {
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
}

.timeline-grid {
  grid-template-columns: repeat(5, 1fr);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid rgba(17,17,17,0.08);
  font-weight: 700;
  margin-bottom: 24px;
}

.segments-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 0 22px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  cursor: pointer;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 22px;
  color: var(--muted);
}

.cta-grid {
  padding: 34px;
  gap: 28px;
}

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

.cta-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
}

.site-footer {
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 22px 0 16px;
}

.footer-brand {
  margin-bottom: 20px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  padding: 0 18px;
  min-height: 52px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  box-shadow: var(--shadow);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 520px);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  font-size: 26px;
  line-height: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--text);
  z-index: 50;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-error {
  border-color: #d13232 !important;
  box-shadow: 0 0 0 4px rgba(209, 50, 50, 0.08) !important;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .hero-grid,
  .cta-grid,
  .why-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .calculator-card {
    position: static;
  }

  .metrics-grid,
  .segments-grid,
  .timeline-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .burger {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-stats,
  .why-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 84px;
  }

  .floating-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

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

  .panel-card,
  .lead-form,
  .modal-dialog,
  .cta-grid,
  .metric-card,
  .service-card,
  .why-card,
  .timeline-item,
  .segment-card,
  .review-card,
  .hero-stats article {
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 15vw, 56px);
  }

  .section-heading h2,
  .cta-grid h2 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .section-heading p,
  .hero-text,
  .cta-grid p,
  .review-card p,
  .segment-card p,
  .why-card p,
  .metric-card p,
  .timeline-item p,
  .service-card p,
  .calculator-card p,
  .modal-dialog p,
  .site-footer p {
    font-size: 16px;
  }

  .hero-actions,
  .button,
  .button-full {
    width: 100%;
  }

  .metrics-grid,
  .services-grid,
  .reviews-grid,
  .segments-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal {
    padding: 10px;
    align-items: end;
  }

  .modal-dialog {
    width: 100%;
  }
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body,
.site-header,
main,
section,
.site-footer,
.hero {
  max-width: 100%;
  overflow-x: clip;
}

.container,
.hero-grid,
.cta-grid,
.why-grid,
.faq-layout,
.metrics-grid,
.services-grid,
.why-cards,
.timeline-grid,
.segments-grid,
.reviews-grid,
.footer-grid,
.hero-copy,
.hero-panel,
.panel-card,
.lead-form,
.modal-dialog {
  min-width: 0;
  max-width: 100%;
}

img,
svg,
video,
canvas,
iframe,
input,
select,
textarea {
  max-width: 100%;
}

.hero::before,
.hero::after {
  pointer-events: none;
  max-width: 100vw;
}

@media (max-width: 640px) {
  * {
    max-width: 100%;
  }

  .container {
    overflow-x: clip;
  }
}
.hero {
  padding-top: 48px;
  position: relative;
  overflow: hidden;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #555555;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #111111;
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: -1;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.desktop-nav a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.16);
}

.desktop-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.desktop-nav a:hover::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.desktop-nav a:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.mobile-menu a {
  position: relative;
  padding: 12px 16px;
  border-radius: 16px;
  color: #555555;
  font-weight: 600;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.mobile-menu a:hover {
  color: #ffffff;
  background: #111111;
  transform: translateX(4px);
}
.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: end center;
    padding: 18px;
    background: rgba(17, 17, 17, 0.28);
    backdrop-filter: blur(8px);
  }

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

  .cookie-consent__box {
    width: min(100%, 980px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 30px 90px rgba(17, 17, 17, 0.22);
    animation: cookieSlideUp 420ms ease both;
  }

  .cookie-consent__badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .cookie-consent h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #111111;
  }

  .cookie-consent p {
    margin: 0 0 14px;
    color: #666666;
    font-size: 16px;
    line-height: 1.55;
  }

  .cookie-consent__link {
    display: inline-flex;
    color: #111111;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .cookie-consent__settings {
    display: grid;
    gap: 12px;
  }

  .cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: #ffffff;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  }

  .cookie-option:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.22);
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
  }

  .cookie-option strong {
    display: block;
    margin-bottom: 4px;
    color: #111111;
    font-size: 15px;
  }

  .cookie-option small {
    display: block;
    color: #666666;
    font-size: 13px;
    line-height: 1.35;
  }

  .cookie-option input {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    accent-color: #111111;
  }

  .cookie-option--disabled {
    opacity: 0.78;
  }

  .cookie-consent__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cookie-btn {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    font-weight: 700;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  }

  .cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
  }

  .cookie-btn--dark {
    background: #111111;
    color: #ffffff;
  }

  .cookie-btn--outline {
    background: #ffffff;
    color: #111111;
  }

  .cookie-btn--light {
    background: #f5f5f3;
    color: #111111;
  }

  @keyframes cookieSlideUp {
    from {
      opacity: 0;
      transform: translateY(28px) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @media (max-width: 760px) {
    .cookie-consent {
      padding: 10px;
      place-items: end center;
    }

    .cookie-consent__box {
      grid-template-columns: 1fr;
      padding: 18px;
      border-radius: 24px;
    }

    .cookie-consent__actions {
      display: grid;
      grid-template-columns: 1fr;
    }

    .cookie-btn {
      width: 100%;
    }
  }