/* ========================================
   CSS VARIABLES / DESIGN TOKENS
======================================== */
:root {
  --color-main-green: #1E5336;
  --color-bg-yellow: #FFFCF1;
  --color-bg-orange: #FFF7E8;
  --color-stroke: #DBD1D1;
  --color-white: #FFFFFF;
  --color-black: #111111;
  --color-text-secondary: #4A4A4A;

  --font-family: 'Poppins', sans-serif;
  --h1-size: 48px;
  --h2-size: 40px;
  --h3-size: 24px;
  --p-size: 14px;

  --border-radius-lg: 16px;
  --border-radius-pill: 999px;

  /* Shared layout tokens — single source of truth */
  --layout-max-width: 1440px;
  --layout-padding: 0 clamp(20px, 5vw, 80px);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--p-size);
  color: var(--color-black);
  background-color: var(--color-bg-yellow);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

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

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  background-color: var(--color-main-green);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  overflow: hidden;
}

.top-bar__icon {
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.9;
}

/* ========================================
   HEADER / NAV
======================================== */
.header {
  background-color: transparent;
  border-bottom: 1px solid var(--color-stroke);
  overflow: hidden;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 80px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  background-color: transparent;
  padding: 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 600px;
  align-items: center;
  gap: 48px;
  max-width: var(--layout-max-width);
  min-height: 603px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ---- Left Column ---- */
.hero__content {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}

.hero__title {
  font-size: clamp(32px, 4vw, var(--h1-size));
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-main-green);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__description {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
}

/* Buttons */
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-main-green);
  color: var(--color-white);
  border-color: var(--color-main-green);
}

.btn--primary:hover {
  background-color: #164428;
  border-color: #164428;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 83, 54, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-stroke);
}

.btn--secondary:hover {
  border-color: var(--color-main-green);
  color: var(--color-main-green);
  transform: translateY(-1px);
}

/* Trust Signal */
.hero__usps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__usp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.4;
}

.hero__usp-item img {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* ---- Right Column / Video ---- */
.hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__video-wrapper {
  position: relative;
  width: 600px;
  height: 487px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.10);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   BENEFIT BAR
======================================== */
.benefit-bar {
  background-color: var(--color-main-green);
  padding: 20px 0;
  overflow: hidden;
}

.benefit-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.benefit-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.benefit-bar__item img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ========================================
   HOW IT WORKS / STEPS
======================================== */
.steps {
  background-color: var(--color-bg-orange);
  padding: 72px 0 64px;
  overflow: hidden;
}

.steps__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.steps__header {
  text-align: center;
  margin-bottom: 48px;
}

.steps__title {
  font-size: clamp(28px, 3.5vw, var(--h2-size));
  font-weight: 700;
  color: var(--color-main-green);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.steps__subtitle {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Cards Grid */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.step-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: 20px;
  padding: 24px 24px 32px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.step-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.step-card__media img,
.step-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-card__title {
  font-size: clamp(18px, 1.5vw, var(--h3-size));
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}

.step-card__desc {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Steps Footer */
.steps__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.steps__disclaimer {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

/* ========================================
   HOW IT WORKS (JAK TO DZIAŁA?)
======================================== */
.how-it-works {
  background-color: var(--color-bg-yellow);
  padding: 72px 0 80px;
  overflow: hidden;
}

.how-it-works__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 48px;
}

.how-it-works__title {
  font-size: clamp(28px, 3.5vw, var(--h2-size));
  font-weight: 700;
  color: var(--color-main-green);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.how-it-works__subtitle {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Cards Grid */
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.how-card__badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: #FFF0C2;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 20px;
}

.how-card__title {
  font-size: clamp(18px, 1.5vw, var(--h3-size));
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}

.how-card__desc {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.how-card__media {
  border-radius: 16px;
  overflow: hidden;
}

.how-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   GALLERY / PRZYKŁADY
======================================== */
.gallery {
  background-color: var(--color-bg-orange);
  padding: 72px 0 80px;
  overflow: hidden;
}

.gallery__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.gallery__header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery__title {
  font-size: clamp(28px, 3.5vw, var(--h2-size));
  font-weight: 700;
  color: var(--color-main-green);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.gallery__subtitle {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.gallery__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery__tag {
  display: inline-flex;
  align-items: center;
  background-color: #FFF0C2;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--border-radius-pill);
}

/* Grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.gallery-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: 24px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* Visual: thumb + arrow + video */
.gallery-card__visual {
  position: relative;
  width: 100%;
  max-width: 368px;
  height: 277px;
  margin: 0 auto 20px auto;
}

.gallery-card__thumb {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 158px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gallery-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-card__arrow {
  position: absolute;
  z-index: 3;
  display: block;
  width: 40px;
  height: auto;
  top: 108px;
  left: 20px;
}

.gallery-card__video-wrap {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 288px;
  height: 157px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-card__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.gallery-card__body {
  flex-grow: 1;
  margin-bottom: 16px;
}

.gallery-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.gallery-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* Footer */
.gallery-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding-top: 16px;
  border-top: 1px solid #F0EDED;
}

.gallery-card__footer img {
  flex-shrink: 0;
}

/* Gallery Footer / CTA */
.gallery__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-top: 64px;
}

.gallery__disclaimer {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ========================================
   EMOCJE
======================================== */
.emotions {
  background-color: var(--color-bg-yellow);
  padding: 72px 0 80px;
  overflow: hidden;
}

.emotions__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.emotions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Card */
.emotion-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Visual with decorative ellipse */
.emotion-card__visual {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin-bottom: 32px;
}

.emotion-card__visual::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 140%;
  height: 140%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.5;
}

.emotion-card__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Ellipse colors per card */
.emotion-card:nth-child(1) .emotion-card__visual::before {
  background-color: #89D3C5;
}

.emotion-card:nth-child(2) .emotion-card__visual::before {
  background-color: #AAC9A6;
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

.emotion-card:nth-child(3) .emotion-card__visual::before {
  background-color: #C9D8B6;
  border-radius: 30% 70% 50% 50% / 60% 40% 50% 50%;
}

.emotion-card__title {
  font-size: clamp(18px, 1.5vw, var(--h3-size));
  font-weight: 700;
  color: var(--color-main-green);
  margin-bottom: 12px;
}

.emotion-card__desc {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 340px;
}

/* ========================================
   SOCIAL PROOF / STATS
======================================== */
.social-proof {
  background-color: var(--color-bg-orange);
  padding: 72px 0 80px;
  overflow: hidden;
}

.social-proof__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.social-proof__header {
  text-align: center;
  margin-bottom: 56px;
}

.social-proof__title {
  font-size: clamp(28px, 3.5vw, var(--h2-size));
  font-weight: 700;
  color: var(--color-main-green);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.social-proof__subtitle {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Stats row */
.social-proof__row {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Single stat */
.stat-item {
  flex: 1;
  max-width: 380px;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 48px);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.stat-item.visible {
  animation: statReveal 0.6s ease forwards;
}
.stat-item:nth-child(2).visible { animation-delay: 0.1s; }
.stat-item:nth-child(3).visible { animation-delay: 0.2s; }

@keyframes statReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Vertical separator */
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--color-stroke);
}

.stat-item__number {
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 800;
  color: var(--color-main-green);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 8px;
}

.stat-item__desc {
  font-size: 12.5px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* Mobile: stats stack vertically */
@media (max-width: 768px) {
  .social-proof {
    padding: 56px 0 64px;
  }
  .social-proof__header {
    margin-bottom: 40px;
  }
  .social-proof__row {
    flex-direction: column;
    align-items: center;
  }
  .stat-item {
    max-width: 320px;
    width: 100%;
    padding: 28px 20px;
  }
  .stat-item + .stat-item::before {
    top: 0;
    bottom: auto;
    left: 20%;
    right: 20%;
    width: auto;
    height: 1px;
  }
  .stat-item__number {
    font-size: 52px;
  }
}

/* ========================================
   FAQ
======================================== */
.faq {
  background-color: var(--color-bg-yellow);
  padding: 72px 0 80px;
  overflow: hidden;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.faq__title {
  font-size: clamp(28px, 3.5vw, var(--h2-size));
  font-weight: 700;
  color: var(--color-main-green);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* Accordion container */
.faq__accordion {
  background-color: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: 24px;
  overflow: hidden;
}

/* Single item */
.faq__item {
  border-bottom: 1px solid var(--color-stroke);
}

.faq__item:last-child {
  border-bottom: none;
}

/* Question button */
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  text-align: left;
  gap: 16px;
  transition: background-color 0.2s ease;
}

.faq__question:hover {
  background-color: rgba(30, 83, 54, 0.03);
}

/* Icon (plus/minus via CSS) */
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-main-green);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

/* Active state — rotate "plus" into "minus" */
.faq__item.active .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__answer p {
  padding: 0 28px 24px;
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.faq__item.active .faq__answer {
  max-height: 600px;
}

/* Contact footer */
.faq__contact {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 32px;
  line-height: 1.6;
}

.faq__contact a {
  color: var(--color-main-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.faq__contact a:hover {
  opacity: 0.75;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background-color: var(--color-main-green);
  color: var(--color-white);
  padding: 64px 0 32px;
  overflow: hidden;
}

.footer__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* Top: Logo + Mission */
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 28px;
}

.footer__logo img {
  width: 130px;
  height: auto;
  display: block;
}

.footer__mission {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--color-white);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content {
  animation: fadeInUp 0.7s ease-out both;
}

.hero__media {
  animation: fadeInUp 0.7s 0.15s ease-out both;
}

/* ========================================
   POLICY PAGE  (dodaj na końcu style.css, przed sekcją RESPONSIVE)
======================================== */
.policy {
  background-color: var(--color-bg-yellow);
  padding: 64px 0 80px;
}

.policy__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* Main title */
.policy__title {
  font-family: var(--font-family);
  font-size: clamp(28px, 3.5vw, var(--h2-size));
  font-weight: 700;
  color: var(--color-main-green);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

/* Meta info (app name, date) */
.policy__meta {
  font-size: var(--p-size);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-stroke);
}

/* Section headings (H2) */
.policy__inner h2 {
  font-family: var(--font-family);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--color-main-green);
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* Sub-headings (H3) */
.policy__inner h3 {
  font-family: var(--font-family);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--color-main-green);
  margin-top: 28px;
  margin-bottom: 12px;
}

/* Paragraphs */
.policy__inner p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Links */
.policy__inner a {
  color: var(--color-main-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.policy__inner a:hover {
  opacity: 0.75;
}

/* Unordered & Ordered lists */
.policy__inner ul,
.policy__inner ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.policy__inner ul {
  list-style-type: disc;
}

.policy__inner ol {
  list-style-type: decimal;
}

.policy__inner li {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 4px;
}

.policy__inner li strong {
  color: var(--color-black);
}

/* Strong inside paragraphs */
.policy__inner p strong {
  color: var(--color-black);
  font-weight: 600;
}

/* ---- RESPONSIVE (policy) ---- */
@media (max-width: 900px) {
  .policy {
    padding: 48px 0 64px;
  }
}

@media (max-width: 480px) {
  .policy {
    padding: 32px 0 48px;
  }

  .policy__inner h2 {
    margin-top: 32px;
  }
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact {
  background-color: var(--color-bg-orange);
  padding: 72px 0 96px;
  overflow: hidden;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 64px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ---- Left column: info ---- */
.contact__info {
  padding-top: 8px;
}

.contact__title {
  font-size: clamp(30px, 3.5vw, var(--h1-size));
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-main-green);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact__desc {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
}

/* Contact details list */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__detail-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.contact__detail-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-main-green);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

a.contact__detail-value {
  color: var(--color-main-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

a.contact__detail-value:hover {
  opacity: 0.75;
}

/* ---- Right column: form card ---- */
.contact__form-wrap {
  background-color: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* Form layout */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Form group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
}

/* Input & Textarea */
.form-input {
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--color-black);
  background-color: var(--color-bg-yellow);
  border: 1.5px solid var(--color-stroke);
  border-radius: var(--border-radius-lg);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.5;
}

.form-input::placeholder {
  color: #B5AAAA;
  font-weight: 400;
}

.form-input:focus {
  border-color: var(--color-main-green);
  box-shadow: 0 0 0 3px rgba(30, 83, 54, 0.12);
}

/* Textarea specific */
.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Checkbox group */
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-stroke);
  border-radius: 6px;
  background-color: var(--color-bg-yellow);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: 1px;
  position: relative;
}

.form-checkbox:focus {
  border-color: var(--color-main-green);
  box-shadow: 0 0 0 3px rgba(30, 83, 54, 0.12);
}

.form-checkbox:checked {
  background-color: var(--color-main-green);
  border-color: var(--color-main-green);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--color-main-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.form-checkbox-label a:hover {
  opacity: 0.75;
}

/* Submit button */
.contact__submit {
  align-self: flex-start;
  padding: 16px 40px;
  font-size: 15px;
  margin-top: 4px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero__video-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 487;
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__grid .step-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works__grid .how-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emotions__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .contact__inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .header__inner,
  .hero__inner {
    padding: 18px 20px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .hero__content {
    align-items: center;
    padding: 20px 0 0;
  }

  .hero__title {
    margin-bottom: 16px;
  }

  .hero__usps {
    align-items: flex-start;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__usps {
    align-items: center;
  }

  .hero__media {
    justify-content: center;
    padding-bottom: 40px;
  }

  .hero__video-wrapper {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 600 / 487;
    margin: 0 auto;
  }

  /* Benefit Bar */
  .benefit-bar__inner {
    flex-direction: column;
    gap: 14px;
  }

  /* Steps */
  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* How It Works */
  .how-it-works__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .how-it-works__grid .how-card:last-child {
    max-width: 100%;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-card__visual {
    height: auto;
    aspect-ratio: 368 / 277;
  }

  .gallery-card__video-wrap {
    width: 78%;
    height: auto;
    aspect-ratio: 288 / 157;
  }

  .gallery-card__thumb {
    width: 45%;
  }

  /* Emotions */
  .emotions__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 48px;
  }

  /* Footer */
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Contact */
  .contact {
    padding: 48px 0 72px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 560px;
  }

  .contact__info {
    text-align: center;
  }

  .contact__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .contact__details {
    align-items: center;
  }

  .contact__detail {
    justify-content: flex-start;
    text-align: left;
    max-width: 280px;
    width: 100%;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

  .contact__submit {
    align-self: stretch;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 36px;
  }

  .hero__buttons,
  .steps__footer {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn,
  .steps__footer .btn {
    width: 100%;
    padding: 14px 24px;
  }

  .steps__grid .step-card:last-child,
  .how-it-works__grid .how-card:last-child {
    max-width: 100%;
  }

  .gallery-card__visual {
    height: auto;
    aspect-ratio: 368 / 277;
  }

  .gallery-card__thumb {
    width: 40%;
  }

  .gallery-card__arrow {
    top: 34%;
    left: 10px;
    width: 35px;
  }

  .faq__question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq__answer p {
    padding: 0 20px 20px;
  }

  .contact {
    padding: 32px 0 56px;
  }

  .contact__form-wrap {
    padding: 28px 20px;
    border-radius: 20px;
  }
}

/* ========================================
   COOKIE CONSENT BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-stroke);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease,
              visibility 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 80px);
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  flex: 1;
}

.cookie-banner__link {
  color: var(--color-main-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.cookie-banner__link:hover {
  opacity: 0.75;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn--cookie-accept {
  padding: 12px 28px;
  font-size: 14px;
}

.btn--cookie-reject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  background: transparent;
  color: var(--color-text-secondary);
  border: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.btn--cookie-reject:hover {
  color: var(--color-black);
}

/* Mobile: stack layout */
@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }

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

  .btn--cookie-accept {
    flex: 1;
  }
}

/* ========================================
   TOUCH DEVICES — Disable hover effects
======================================== */
@media (hover: none), (max-width: 900px) {
  .step-card:hover,
  .how-card:hover,
  .gallery-card:hover {
    transform: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05) !important;
  }
}
