


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');


:root {
  
  --clr-primary: #3B5E3A;
  --clr-primary-dark: #2A4429;
  --clr-primary-light: #5A8A58;
  --clr-accent: #C8A96E;
  --clr-accent-dark: #A8884E;
  --clr-bg: #FAFAF7;
  --clr-bg-alt: #F2F0EB;
  --clr-bg-dark: #1E1E1E;
  --clr-text: #2C2C2C;
  --clr-text-light: #6B6B6B;
  --clr-text-inv: #F5F5F0;
  --clr-border: #E0DDD5;
  --clr-white: #FFFFFF;
  --clr-overlay: rgba(30, 30, 30, 0.55);

  
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-hero: clamp(2.2rem, 5vw, 3.8rem);
  --fs-h1: clamp(1.8rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --lh-body: 1.7;

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;

  
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  
  --tr-fast: 0.2s ease;
  --tr-med: 0.35s ease;
  --tr-slow: 0.5s ease;

  
  --header-h: 110px;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--clr-bg-alt);
}

.section--dark {
  background: var(--clr-bg-dark);
  color: var(--clr-text-inv);
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.section__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--clr-primary-dark);
}

.section--dark .section__title {
  color: var(--clr-accent);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--clr-accent);
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--tr-med), box-shadow var(--tr-med);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo img {
  height: 80px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text);
  position: relative;
  transition: color var(--tr-fast);
  white-space: nowrap;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--clr-accent);
  transition: left var(--tr-med), right var(--tr-med);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  left: 0.85rem;
  right: 0.85rem;
}

.header__nav a:hover {
  color: var(--clr-primary);
}


.nav-item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-arrow {
  margin-left: 0.3rem;
  font-size: 0.7em;
  transition: transform var(--tr-fast);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0.85rem;
  background: var(--clr-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--tr-med);
  padding: 0.5rem 0;
  z-index: 1010;
  display: flex;
  flex-direction: column;
}

.nav-item--dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item--dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu a,
.dropdown-menu .dropdown-submenu>a {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  color: var(--clr-text);
  border: none;
  width: 100%;
  display: block;
}

.dropdown-menu a::after,
.dropdown-menu .dropdown-submenu>a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu .dropdown-submenu>a:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-primary);
}


.dropdown-submenu {
  position: relative;
  width: 100%;
}

.submenu-arrow {
  float: right;
  font-size: 0.7em;
  margin-top: 0.2rem;
  transition: transform var(--tr-fast);
}

.dropdown-submenu:hover>a .submenu-arrow {
  transform: translateX(3px);
}

.submenu-content {
  position: absolute;
  top: -1px;
  left: 100%;
  background: var(--clr-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--tr-med);
  padding: 0.5rem 0;
  z-index: 1011;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1025px) {
  .dropdown-submenu:hover .submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}


.header__cta-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 0.9rem;
  margin-left: 1rem;
}

.header__cta-phone svg {
  width: 18px;
  height: 18px;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  transition: var(--tr-med);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    flex-direction: column;
    background: var(--clr-white);
    padding: calc(var(--header-h) + 2rem) 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--tr-med);
    gap: 0.25rem;
    overflow-y: auto;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--clr-border);
    width: 100%;
  }

  .header__nav a::after {
    display: none;
  }

  .header__cta-phone {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 1.1rem;
  }

  
  .nav-item--dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-item--dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-menu,
  .submenu-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--tr-med);
    background: transparent;
    width: 100%;
  }

  .header__nav.open .nav-item--dropdown.open .dropdown-menu {
    max-height: 400px;
  }

  .nav-item--dropdown.open>a .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding-left: 1.2rem !important;
    background: transparent !important;
  }

  .submenu-content {
    background: rgba(0, 0, 0, 0.02);
  }

  .dropdown-submenu.open .submenu-content {
    max-height: 300px;
  }

  .dropdown-submenu>a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-submenu .submenu-arrow {
    transform: rotate(90deg);
  }

  .dropdown-submenu.open>a .submenu-arrow {
    transform: rotate(270deg);
  }

  .submenu-content a {
    padding-left: 2rem !important;
    font-size: 0.85rem !important;
  }
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: var(--header-h);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero__slide.active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.65) 0%, rgba(30, 30, 30, 0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 var(--space-md);
  margin-left: 8%;
  color: var(--clr-text-inv);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.6s ease 0.3s forwards;
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.6s ease 0.5s forwards;
}

.hero__buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.6s ease 0.7s forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--tr-med);
}

.hero__dot.active {
  background: var(--clr-accent);
  width: 28px;
  border-radius: 5px;
}

.hero__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}

.hero__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  pointer-events: all;
  cursor: pointer;
  transition: var(--tr-med);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}


.hero-static {
  position: relative;
  margin-top: var(--header-h);
  height: 420px;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-static__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-static__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.7) 0%, rgba(30, 30, 30, 0.35) 100%);
}

.hero-static__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 var(--space-md);
  margin-left: 8%;
  color: var(--clr-text-inv);
}

.hero-static__content h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-static__content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-static {
    height: 320px;
  }

  .hero-static__content {
    margin-left: 0;
    padding: 0 1.25rem;
  }

  .hero {
    max-height: 700px;
  }

  .hero__content {
    margin-left: 0;
    padding: 0 1.25rem;
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.925rem;
  border-radius: var(--radius);
  transition: all var(--tr-med);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(59, 94, 58, 0.3);
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 94, 58, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}

.btn--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn--accent {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
}

.btn--accent:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: all var(--tr-med);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-light);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--clr-primary-dark);
}

.card__text {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.card__cta {
  font-weight: 600;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  transition: gap var(--tr-fast);
}

.card__cta:hover {
  gap: 0.7rem;
}


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse>* {
  direction: ltr;
}

.two-col__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .two-col--reverse {
    direction: ltr;
  }
}


.points-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--space-sm) 0;
}

.points-list li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
  color: var(--clr-text);
}

.points-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
}


.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  text-align: center;
}

.stat__number {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--clr-text-light);
}


.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  counter-reset: step;
}

.steps--3-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  grid-template-columns: none;
  
}

.steps--3-2 .step {
  flex: 0 1 calc(33.333% - var(--space-md));
  min-width: 280px;
}

@media (max-width: 1024px) {
  .steps--3-2 .step {
    flex: 0 1 calc(50% - var(--space-md));
  }
}

@media (max-width: 600px) {
  .steps--3-2 .step {
    flex: 0 1 100%;
  }
}

.step {
  position: relative;
  padding: var(--space-md);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: var(--space-md);
  width: 32px;
  height: 32px;
  background: var(--clr-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.step__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.step__text {
  color: var(--clr-text-light);
  font-size: 0.9rem;
}


.calculator {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  max-width: 700px;
  margin: 0 auto;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.calc-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.calc-form select,
.calc-form input[type="number"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--ff-body);
  background: var(--clr-white);
  transition: border-color var(--tr-fast);
}

.calc-form select:focus,
.calc-form input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(59, 94, 58, 0.1);
}

.calc-result {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-top: var(--space-sm);
  border: 1px solid var(--clr-primary-light);
  display: none;
}

.calc-result.show {
  display: block;
}

.calc-result__value {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--clr-primary);
  font-weight: 700;
}


.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem var(--space-lg);
  align-items: start;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.faq-category {
  display: flex;
  flex-direction: column;
}

.accordion__item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clr-white);
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--tr-fast);
}

.accordion__trigger:hover {
  background: var(--clr-bg-alt);
}

.accordion__item.open .accordion__trigger {
  background: var(--clr-bg-alt);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--tr-med);
  flex-shrink: 0;
}

.accordion__item.open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__content {
  padding: 10px 1.5rem 1.5rem;
  color: var(--clr-text-light);
  line-height: 1.65;
}


.cta-banner {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  color: var(--clr-text-inv);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: 0;
}

.cta-banner h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
  color: var(--clr-accent);
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto var(--space-md);
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner .btn--primary {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
}

.cta-banner .btn--primary:hover {
  background: var(--clr-accent-dark);
}


.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--clr-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--ff-body);
  background: var(--clr-white);
  transition: border-color var(--tr-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(59, 94, 58, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}


.tabs__nav {
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: var(--space-md);
  overflow-x: auto;
}

.tabs__btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text-light);
  position: relative;
  white-space: nowrap;
  transition: color var(--tr-fast);
}

.tabs__btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--tr-fast);
}

.tabs__btn.active {
  color: var(--clr-primary);
}

.tabs__btn.active::after {
  background: var(--clr-primary);
}

.tabs__panel {
  display: none;
}

.tabs__panel.active {
  display: block;
}


.footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-inv);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}


.footer__contact-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer__contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.15);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 24px !important;
  height: 24px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__contact-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer__contact-details a,
.footer__contact-details p {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-text-inv);
  text-decoration: none;
  margin-bottom: 0.35rem;
  transition: color var(--tr-fast);
}

.footer__contact-details a:hover {
  color: var(--clr-accent);
}

.footer__contact-details .sm-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  max-width: 320px;
  line-height: 1.6;
}

.footer__brand img {
  height: 100px;
  margin-bottom: 0.5rem;
  filter: brightness(10);
}

@media (max-width: 768px) {
  .footer__brand img {
    height: 80px;
  }
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-white);
  transition: all var(--tr-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link svg {
  width: 22px !important;
  height: 22px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social-link:hover {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
  transform: translateY(-3px);
  border-color: var(--clr-accent);
}

.footer__title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr-fast);
}

.footer__links a:hover {
  color: var(--clr-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-sm);
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--tr-fast);
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}


main {
  min-height: 100vh;
}


.rich-text h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--clr-primary-dark);
}

.policy-section-title {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  color: var(--clr-primary-dark);
  display: block;
}

.rich-text p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.rich-text ul {
  margin: var(--space-sm) 0;
  padding-left: 1.25rem;
}

.rich-text ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.rich-text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}


.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.pillar {
  text-align: center;
  padding: var(--space-md);
}

.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
}

.pillar__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pillar__text {
  color: var(--clr-text-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}


.page-body {
  padding-top: 0;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  padding: var(--space-sm) 0;
}

.breadcrumb a {
  color: var(--clr-primary);
}

.breadcrumb span {
  margin: 0 0.4rem;
}


.article-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: all var(--tr-med);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.article-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.article-card:hover .article-card__img img {
  transform: scale(1.05);
}

.article-card__body {
  padding: 1.25rem;
}

.article-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
}

.article-card__title {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 0.75rem;
}


.sitemap-list {
  column-count: 2;
  column-gap: var(--space-lg);
}

.sitemap-list li {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.sitemap-list a {
  color: var(--clr-primary);
  font-weight: 500;
  transition: color var(--tr-fast);
}

.sitemap-list a:hover {
  color: var(--clr-accent);
}

@media (max-width: 600px) {
  .sitemap-list {
    column-count: 1;
  }
}


#password-protector {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

#password-protector .password-box {
  background: var(--clr-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 90%;
  border: 1px solid var(--clr-border);
}

#password-protector input[type="password"] {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--tr-fast);
}

#password-protector input[type="password"]:focus {
  border-color: var(--clr-primary);
}


.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  background-color: #ffffff;
  
  height: 100px;
  
}

.partners-slider::before,
.partners-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider__track {
  display: flex;
  align-items: center;
  gap: 0;
  
  width: max-content;
  animation: scrollPartners 20s linear infinite;
}

.partners-slider__track:hover {
  animation-play-state: paused;
}

.partners-slider__track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin-right: 4rem;
  
}

.partners-slider__track img.logo-fnk {
  height: 100px;
  
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  
}

@media (max-width: 768px) {
  .partners-slider__track img {
    height: 45px;
  }
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

.gallery-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: min(95%, 1200px);
  max-height: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease, opacity 0.2s ease;
  object-fit: contain;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color var(--tr-fast);
}

.lightbox-close:hover {
  color: var(--clr-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--tr-fast);
  z-index: 10000;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav--prev {
  left: 1.5rem;
}

.lightbox-nav--next {
  right: 1.5rem;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
}


.vehicles-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.vehicles-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.vehicles-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.vehicles-slider__slide.active {
  opacity: 1;
  z-index: 1;
}

.vehicles-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicles-slider__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.vehicles-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicles-slider__dot.active {
  background: var(--clr-accent);
  transform: scale(1.2);
}


.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.product-grid-premium--single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-card-premium {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-med), box-shadow var(--tr-med);
  border: 1px solid var(--clr-border);
}

.product-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}


.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  max-width: 900px;
  margin: 2rem auto;
  justify-content: center;
}

.problem-box {
  flex: 0 1 calc(44% - 0.75rem);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-fast);
  box-shadow: var(--shadow-sm);
  color: var(--clr-text);
  line-height: 1.4;
  min-height: 80px;
}

.problem-box:hover {
  transform: translateY(-3px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
  color: var(--clr-primary-dark);
}

@media (max-width: 768px) {
  .problem-box {
    flex: 0 1 100%;
  }
}

.product-card-premium__img {
  width: 100%;
  height: 360px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  border-bottom: 1px solid #eee;
}

.product-card-premium--gray .product-card-premium__body {
  background: #f1f1f1;
}

.product-card-premium__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--tr-med);
}

.product-card-premium__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fafaf7;
  
}

.product-card-premium__title {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--clr-primary-dark);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-bottom: 0.5rem;
}

.product-card-premium__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--clr-accent);
}

.product-card-premium__text {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.product-card-premium__specs {
  background: var(--clr-bg-alt);
  padding: var(--space-md);
  border-radius: var(--radius);
  font-size: 0.9rem;
  border-left: 4px solid var(--clr-primary);
}

.product-card-premium__specs strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
}

.product-card-premium__specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card-premium__specs-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--clr-border);
  padding-bottom: 0.2rem;
}

.product-card-premium__specs-label {
  font-weight: 500;
  color: var(--clr-text);
}

.product-card-premium__specs-value {
  color: var(--clr-primary-dark);
  font-weight: 600;
  text-align: right;
}

@media (max-width: 992px) {
  .product-grid-premium {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .product-card-premium__img {
    height: 280px;
  }

  .product-card-premium__title {
    font-size: 1.4rem;
  }
}



.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 3.5rem;
  
  margin: 0 auto;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--tr-fast);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.reviews-arrow:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.reviews-arrow--prev {
  left: 0;
}

.reviews-arrow--next {
  right: 0;
}

@media (max-width: 600px) {
  .reviews-slider {
    padding: 1.5rem 2.5rem;
  }

  .reviews-arrow {
    width: 36px;
    height: 36px;
  }
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: var(--space-md);
}

.review-card {
  flex: 0 0 calc(33.333% - (var(--space-md) * 2 / 3));
  background: var(--clr-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.review-card__stars {
  color: var(--clr-accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-card__text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-card__author {
  font-weight: 600;
  color: var(--clr-primary-dark);
  font-size: 0.9rem;
  text-align: right;
  border-top: 1px solid var(--clr-bg-alt);
  padding-top: 0.75rem;
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - (var(--space-md) / 2));
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }
}


.product-mini-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-mini-slider__track {
  display: flex !important;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100% !important;
  
}

.product-mini-slider .product-mini-slider__img {
  flex: 0 0 100%;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}

.product-mini-slider__dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 10px;
  z-index: 15 !important;
}

.product-mini-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.product-mini-slider__dot.active {
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.product-mini-slider .product-mini-slider__dot.active {
  background: white !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) !important;
  transform: scale(1.25) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  text-align: center;
  margin: 0;
}
.cookie-banner__text a {
  color: var(--clr-primary);
  text-decoration: underline;
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    padding: 1.5rem 3rem;
  }
  .cookie-banner__text {
    text-align: left;
    max-width: 800px;
  }
}