@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

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

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

/* CSS Variables - tylko globalne */
:root {
  /* Brand colors */
  --color-primary-500: #25a85a;
  --color-primary-700: #2e7d52;
  --color-primary-900: #1a5c38;
  --color-primary-50: #f5fbf7;
  --color-secondary-500: #82948b;
  --color-secondary-700: #4a5e54;
  --color-secondary-50: #fffef8;
  --color-tertiary-700: #a84425;
  --color-tertiary-200: #f2d3b6;
  --color-neutral-100: #e7e7e7;
  --color-text-primary: #3d3d3d;
  --color-text-secondary: #1a5c38;
  --color-text-muted: #82948b;
  --color-bg-page: #fffef8;
  --color-bg-header: #ffffff;
  --color-bg-surface: #ffffff;
  --color-bg-surface-alt: #eef6f2;
  --color-bg-surface-brand: #1a5c38;
  --color-bg-footer: #262626;
  --color-border-primary: #25a85a;
  --color-border-secondary: #e7e7e7;
  /* Fonts */
  --font-brand: "Lora", serif;
  --font-primary: "Open Sans", sans-serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
  line-height: 1.5;
}

/* Topbar */
.topbar {
  background-color: var(--color-bg-surface-brand);
  border-bottom: 1px solid var(--color-border-primary);
  display: none;
}
@media (min-width: 769px) {
  .topbar {
    display: block;
    padding: 8px 32px;
  }
}

.topbar__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar__link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-secondary-50);
  text-decoration: none;
}
.topbar__link:hover {
  text-decoration: underline;
}

.topbar__date {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-primary-50);
}

/* Navbar */
.navbar {
  background-color: var(--color-bg-header);
  border-bottom: 1px solid var(--color-border-primary);
  padding: 16px;
  box-shadow: 0px 4px 4px 0px rgba(37, 168, 90, 0.1);
}
@media (min-width: 769px) {
  .navbar {
    padding: 24px 32px;
  }
}

.navbar__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1000px) {
  .navbar__container {
    justify-content: space-between;
  }
}

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

.navbar__logo-icon {
  width: 41px;
  height: 41px;
  min-width: 41px;
  min-height: 41px;
}
.navbar__logo-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-primary {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: var(--color-primary-900);
}

.navbar__logo-secondary {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--color-primary-900);
}

.navbar__menu {
  display: none;
}
@media (min-width: 1000px) {
  .navbar__menu {
    display: flex;
    gap: 16px;
    align-items: center;
  }
}

.navbar__menu-link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: transparent;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  will-change: background-color, color;
}
.navbar__menu-link:hover {
  background-color: #eef6f2;
  color: #2e7d52;
}

/* Breadcrumb */
.breadcrumb {
  border-bottom: 1px solid var(--color-neutral-100);
  padding: 16px;
  background-color: var(--color-bg-header);
  box-shadow: inset 0px 4px 4px 0px rgba(37, 168, 90, 0.1);
}
@media (min-width: 769px) {
  .breadcrumb {
    padding: 16px 32px;
  }
}

.breadcrumb__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  align-items: center;
  overflow: hidden;
}

.breadcrumb__item {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-secondary-700);
  white-space: nowrap;
}
.breadcrumb__item--current {
  color: var(--color-secondary-500);
}

a.breadcrumb__item {
  text-decoration: none;
}
a.breadcrumb__item:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-secondary-500);
  flex-shrink: 0;
}

/* Main */
.main {
  padding: 24px 16px;
}
@media (min-width: 769px) {
  .main {
    padding: 32px;
  }
}

.main__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 769px) {
  .main__container {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Article */
.article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .article {
    gap: 24px;
    flex: 1;
  }
}

.article__head {
  display: flex;
  flex-direction: column;
}

.article__category {
  display: flex;
}

.article__category-badge {
  background-color: var(--color-tertiary-200);
  color: var(--color-tertiary-700);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 100vmax;
}
@media (min-width: 769px) {
  .article__category-badge {
    padding: 8px 32px;
  }
}

.article__title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(27px, 6.25vw, 42px);
  line-height: 1.2;
  color: black;
  padding: 8px 0;
}
@media (min-width: 769px) {
  .article__title {
    font-size: 42px;
  }
}

.article__author {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-secondary);
}
@media (min-width: 769px) {
  .article__author {
    gap: 16px;
  }
}

.article__author-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-primary-900);
  overflow: hidden;
  flex-shrink: 0;
}
.article__author-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.article__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.article__author-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__author-date {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__hero-img {
  background-color: var(--color-bg-surface-alt);
  border-radius: 16px;
  overflow: hidden;
  height: 493px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article__hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 600px) {
  .article__hero-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.article__lead p {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(22px, 2.9947916667vw, 24px);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__body-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__img {
  background-color: var(--color-bg-surface-alt);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.article__quote {
  border-left: 4px solid var(--color-primary-900);
  padding: 16px 0px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .article__quote {
    padding: 16px 0px 16px 32px;
    gap: 24px;
  }
}
.article__quote p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0;
}
.article__quote p strong {
  font-weight: 700;
}

.article__quote p.article__quote-highlight {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .article__quote p.article__quote-highlight {
    font-size: 22px;
    line-height: 1.25;
  }
}

.article__expert {
  background-color: var(--color-bg-surface);
  border: 0.25px solid var(--color-border-primary);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0px 3px 6px 0px rgba(30, 107, 65, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .article__expert {
    padding: 32px;
    gap: 24px;
  }
}

.article__expert-header {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (min-width: 769px) {
  .article__expert-header {
    gap: 16px;
  }
}

.article__expert-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--color-primary-900);
  overflow: hidden;
  flex-shrink: 0;
}
.article__expert-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__expert-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.article__expert-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(20px, 2.734375vw, 22px);
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0;
}

.article__expert-badge {
  background-color: var(--color-tertiary-200);
  color: #a84425;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 100vmax;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}

.article__expert-content {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .article__expert-content {
    gap: 24px;
  }
}
.article__expert-content p {
  margin: 0;
}
.article__expert-content p strong {
  font-weight: 700;
}
.article__expert-content .article__img {
  margin: 0;
  height: auto;
}
@media (min-width: 769px) {
  .article__expert-content .article__img {
    height: 520px;
  }
}
.article__expert-content .article__img img {
  -o-object-position: bottom center;
     object-position: bottom center;
}

/* Benefits Box */
.benefits {
  background: linear-gradient(106.84deg, #1e6b41 0.44%, var(--color-primary-700) 99.56%);
  border: 0.25px solid var(--color-border-primary);
  border-radius: 16px;
  box-shadow: 0px 3px 6px 0px rgba(30, 107, 65, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1200px) {
  .benefits {
    min-height: 372px;
    padding-right: 440px;
    justify-content: center;
  }
}

.benefits__content {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1200px) {
  .benefits__content {
    padding: 32px 0px 32px 32px;
    gap: 24px;
  }
}

.benefits__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: white;
  margin: 0;
}

.benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: white;
}

.benefits__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits__image {
  width: 100%;
  height: auto;
}
.benefits__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.benefits__image img.desktop-img {
  display: none;
}
@media (min-width: 1200px) {
  .benefits__image img.desktop-img {
    display: block;
    position: absolute;
    width: 448px;
    height: 100%;
    top: 0;
    right: 0;
  }
}
.benefits__image img.mobile-img {
  display: block;
}
@media (min-width: 1200px) {
  .benefits__image img.mobile-img {
    display: none;
  }
}

.article__header--testimonials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__header--testimonials p {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.article__heading {
  color: var(--color-text-primary);
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

/* Testimonials */
.article__testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial {
  background-color: var(--color-bg-surface);
  border: 0.25px solid var(--color-border-primary);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0px 3px 3px 0px rgba(30, 107, 65, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 769px) {
  .testimonial {
    padding: 32px;
    gap: 24px;
    display: grid;
    grid-template-columns: 1fr 160px;
    align-items: center;
  }
}

.testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 769px) {
  .testimonial__header {
    gap: 16px;
  }
}
.testimonial__header img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.testimonial__header__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial__header__content h3 {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.testimonial__header__content .testimonial__verified {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.testimonial__header__content .testimonial__rating {
  color: #fff3af;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.testimonial__text {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.testimonial__button {
  padding: 8px 16px;
  border-radius: 100vmax;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--color-border-secondary);
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  transform-origin: center;
  transform: scale(1);
  will-change: transform, border-color, color;
}
@media (min-width: 769px) {
  .testimonial__button {
    padding: 8px 32px;
  }
}
.testimonial__button:hover {
  border-color: #1a5c38;
  color: #1e6b41;
}
.testimonial__button:active {
  transform: scale(0.98);
}

.testimonial__image {
  width: 160px;
  height: auto;
  min-width: 160px;
}
.testimonial__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* CTA */
.cta {
  background-color: var(--color-bg-surface-alt);
  border: 0.25px solid var(--color-border-primary);
  border-radius: 16px;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  .cta {
    padding: 64px;
    gap: 24px;
  }
}
@media (min-width: 769px) {
  .cta .btn {
    font-size: 26px;
    padding: 24px 32px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.cta__title {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--color-text-secondary);
}

.cta__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0;
}
.cta__text strong {
  font-weight: 700;
  color: var(--color-primary-900);
}

/* Comments */
.comments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 0;
}
@media (min-width: 769px) {
  .comments {
    padding: 48px 0;
  }
}

.comments__header {
  border-top: 1px solid var(--color-primary-900);
  padding: 16px 0;
}
@media (min-width: 769px) {
  .comments__header {
    padding: 24px 0;
  }
}

.comments__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(20px, 2.8645833333vw, 22px);
  line-height: 1.5;
  color: black;
}

.disclaimer {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
}

.comment {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
}
@media (min-width: 769px) {
  .comment {
    gap: 16px;
  }
}

.comment__avatar {
  width: 55px;
  min-width: 55px;
  height: 55px;
  min-height: 55px;
  border-radius: 50%;
  border: 1px dashed var(--color-primary-900);
  background-color: var(--color-bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(20px, 2.8645833333vw, 22px);
  line-height: 1.5;
  color: var(--color-primary-900);
  flex-shrink: 0;
}

.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
@media (min-width: 769px) {
  .comment__content {
    gap: 16px;
  }
}

.comment__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.comment__author {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.comment__time {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.comment__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.comment__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.comment__like,
.comment__reply {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.comment__like:hover,
.comment__reply:hover {
  color: var(--color-text-primary);
}

/* Aside */
.aside {
  display: none;
}
@media (min-width: 1000px) {
  .aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 280px;
    flex-shrink: 0;
  }
}

.aside__card {
  background-color: var(--color-bg-surface);
  border: 0.25px solid var(--color-border-primary);
  border-radius: 8px;
  box-shadow: 0px 3px 6px 0px rgba(30, 107, 65, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.aside__card-header {
  background-color: var(--color-bg-surface-brand);
  padding: 8px 16px;
}
.aside__card-header p {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: white;
  margin: 0;
}

.aside__card-img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.aside__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.aside__card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.aside__card-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-primary);
  text-align: center;
  margin: 0;
}

@property --btn-gradient-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #25a85a;
}
@property --btn-gradient-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #2e7d52;
}
@property --btn-shadow {
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(30, 107, 65, 0.25);
}
.btn {
  --btn-gradient-1: var(--color-primary-700);
  --btn-gradient-2: var(--color-primary-500);
  --btn-shadow: rgba(30, 107, 65, 0.25);
  background: linear-gradient(123.36deg, var(--btn-gradient-1) 0.44%, var(--btn-gradient-2) 99.56%);
  color: white;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  padding: 16px 8px;
  border-radius: 100vmax;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  box-shadow: 0px 3px 3px var(--btn-shadow);
  transition: --btn-gradient-1 0.3s ease, --btn-gradient-2 0.3s ease, --btn-shadow 0.3s ease, transform 0.3s ease;
  transform-origin: center;
  transform: scale(1);
  will-change: transform, --btn-gradient-1, --btn-gradient-2, --btn-shadow;
}
.btn:hover {
  --btn-gradient-1: #2e7d52;
  --btn-gradient-2: #2e7d52;
  --btn-shadow: transparent;
}
.btn:active {
  transform: scale(0.98);
}

.aside__card--links .aside__card-body {
  padding: 16px;
  gap: 16px;
  align-items: stretch;
}

.aside__link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-primary);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 0.25px dashed var(--color-primary-900);
  display: flex;
  gap: 4px;
  transition: color 0.3s ease;
}
.aside__link::before {
  content: "›";
  color: var(--color-primary-500);
  flex-shrink: 0;
}
.aside__link:hover {
  color: #25a85a;
}
.aside__link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--color-bg-footer);
  padding: 64px 16px;
}
@media (min-width: 769px) {
  .footer {
    padding: 64px 32px;
  }
}

.footer__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 769px) {
  .footer__container {
    gap: 24px;
  }
}

.footer__logo {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px 0;
}
@media (min-width: 769px) {
  .footer__logo {
    padding: 24px 0;
  }
}

.footer__logo-icon {
  width: 41px;
  height: 41px;
  min-width: 41px;
  min-height: 41px;
}
.footer__logo-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
}

.footer__logo-primary {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: white;
}

.footer__logo-secondary {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: white;
}

.footer__copyright,
.footer__rights,
.footer__container > p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-primary-50);
  text-align: center;
  margin: 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
  align-items: center;
}
.footer__links a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-primary-50);
  text-decoration: none;
  text-align: center;
}
.footer__links a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.summary {
  padding: 48px 16px;
}
@media (min-width: 769px) {
  .summary {
    padding: 64px 32px;
  }
}

.summary__container {
  max-width: 792px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 769px) {
  .summary__container {
    gap: 24px;
    padding: 32px;
  }
}

.summary__badge {
  padding: 8px 0;
}

.summary__badge-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 100vmax;
  border: 0.5px solid #e7e7e7;
  background: #fff3af;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 769px) {
  .summary__badge-wrapper {
    gap: 16px;
  }
}
.summary__badge-wrapper img {
  width: 27px;
  height: auto;
  min-width: 27px;
  flex-shrink: 0;
}
.summary__badge-wrapper p {
  color: #3d3d3d;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.summary__title {
  color: #3d3d3d;
  font-family: var(--font-brand);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .summary__title {
    font-size: 42px;
  }
}

.summary__divider {
  width: 131px;
  height: 4px;
  border-radius: 100vmax;
  background: #25a85a;
}

.summary__text {
  color: #3d3d3d;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.summary__cta {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 769px) {
  .summary__cta {
    padding: 24px 0;
    gap: 16px;
  }
}
.summary__cta .btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
  font-size: 26px;
}
@media (min-width: 769px) {
  .summary__cta .btn {
    padding: 24px 32px;
  }
}
.summary__cta .btn.hidden {
  display: none;
}

.summary__cta-title {
  color: #3d3d3d;
  text-align: center;
  font-family: var(--font-primary);
  font-size: clamp(20px, 2.8645833333vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}
.summary__cta-title span {
  color: #25a85a;
  font-weight: 700;
  text-transform: uppercase;
}

.btn--secondary {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  padding: 10px 16px;
  border-radius: 100vmax;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #1a5c38;
  background: #fffef8;
  box-shadow: 0 3px 6px 0 rgba(30, 107, 65, 0.25);
  width: -moz-fit-content;
  width: fit-content;
  color: #1e6b41;
  font-weight: 700;
  line-height: 1.1;
  transition: color 0.3s ease, transform 0.3s ease;
  transform-origin: center;
  transform: scale(1);
  will-change: transform, color;
}
@media (min-width: 769px) {
  .btn--secondary {
    padding: 5px 32px;
    font-size: 56px;
  }
}
.btn--secondary:hover {
  color: #1a5c38;
}
.btn--secondary:active {
  transform: scale(0.98);
}
.btn--secondary.hidden {
  display: none;
}

.summary__text--sm {
  color: #3d3d3d;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */