/* ===== TOKENS ===== */
:root {
  --c-bg: #FBF8F3;
  --c-bg-alt: #F2ECE0;
  --c-surface: #ffffff;
  --c-ink: #1F1A2E;
  --c-ink-soft: #4A4458;
  --c-muted: #7A7488;
  --c-line: rgba(31,26,46,0.10);
  --c-line-soft: rgba(31,26,46,0.06);
  --c-primary: #5B3FD9;
  --c-primary-deep: #3D2A99;
  --c-primary-soft: #EFEBFE;
  --c-accent: #E89B7E;
  --c-accent-soft: #FBE8DD;
  --c-star: #E0A33A;
  --c-dark-1: #1A1438;
  --c-dark-2: #251B52;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--c-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--c-muted);
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border: none;
}

.btn--primary:hover {
  background: var(--c-primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(91, 63, 217, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--large { padding: 18px 40px; font-size: 1.125rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.header--scrolled {
  background: rgba(251, 248, 243, 0.92);
  border-bottom-color: var(--c-line-soft);
  box-shadow: 0 1px 24px rgba(31, 26, 46, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--c-ink);
}

.header__logo span { color: var(--c-primary); }

.header__nav { display: flex; gap: 32px; align-items: center; }

.header__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: color 0.2s;
}

.header__link:hover { color: var(--c-primary); }

.header__cta {
  padding: 10px 24px;
  font-size: 0.875rem;
  background: var(--c-primary);
  color: #fff;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  transition: all 0.3s;
}

.header__cta:hover {
  background: var(--c-primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 63, 217, 0.28);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  width: 24px; height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(232, 155, 126, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 85%, rgba(91, 63, 217, 0.10) 0%, transparent 55%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--c-ink-soft);
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(31, 26, 46, 0.04);
}

.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232, 155, 126, 0.25);
  flex-shrink: 0;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-ink);
  padding: 14px 8px;
  transition: color 0.2s, transform 0.2s;
}

.hero__link:hover { color: var(--c-primary); transform: translateX(4px); }

.hero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.hero__title-outline {
  -webkit-text-stroke: 2px var(--c-ink);
  color: transparent;
}

.hero__title em {
  font-style: italic;
  font-weight: 900;
  color: var(--c-primary);
  position: relative;
  white-space: nowrap;
}

.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 10px;
  background: var(--c-accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--c-ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

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

.hero__proof-avatars { display: flex; }

.hero__proof-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  border: 2px solid var(--c-bg);
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero__proof-text { display: flex; flex-direction: column; }
.hero__proof-stars { color: var(--c-star); font-size: 0.875rem; letter-spacing: 1px; }
.hero__proof-label { font-size: 0.8125rem; font-weight: 600; color: var(--c-ink-soft); }

.hero__photo { position: relative; padding-top: 24px; }

.hero__photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--c-accent-soft), var(--c-primary-soft));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-muted);
  border: 1px solid var(--c-line-soft);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(31, 26, 46, 0.08);
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  padding: 32px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.proof-bar__inner {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.proof-bar__item { text-align: center; }

.proof-bar__number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}

.proof-bar__label { font-size: 0.875rem; color: var(--c-muted); margin-top: 4px; }

/* ===== PRODUCT SECTIONS (mobil fallback) ===== */
.product {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}

.product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product--reverse .product__inner { direction: rtl; }
.product--reverse .product__content,
.product--reverse .product__visual { direction: ltr; }

.product__label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-primary);
  margin-bottom: 12px;
}

.product__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--c-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.product__subtitle {
  font-size: 1rem;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.product__desc {
  font-size: 0.9375rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product__features {
  list-style: none;
  margin-bottom: 20px;
}

.product__features li {
  padding: 5px 0;
  font-size: 0.875rem;
  color: var(--c-ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.product__features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-primary-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6L5 8.5L9.5 4' stroke='%235B3FD9' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}

.product__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.product__price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}

.product__price-unit { font-size: 1rem; color: var(--c-muted); }

.product__visual { position: relative; }

.product__visual-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}

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

.reviews__card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.reviews__card:hover {
  border-color: rgba(91, 63, 217, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 26, 46, 0.06);
}

.reviews__stars { color: var(--c-star); margin-bottom: 16px; }
.reviews__text { font-size: 0.9375rem; color: var(--c-ink-soft); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.reviews__author { display: flex; align-items: center; gap: 12px; }

.reviews__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700;
}

.reviews__name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9375rem; color: var(--c-ink); }
.reviews__detail { font-size: 0.75rem; color: var(--c-muted); }

/* ===== ABOUT ===== */
.about { padding: 56px 0; min-height: 100vh; display: flex; align-items: center; border-bottom: 1px solid var(--c-line); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--c-accent-soft), var(--c-primary-soft));
  border-radius: 24px;
  border: 1px solid var(--c-line-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted);
  position: relative;
  box-shadow: 0 20px 50px rgba(31, 26, 46, 0.06);
}

.about__text { font-size: 1.0625rem; color: var(--c-ink-soft); line-height: 1.8; margin-bottom: 16px; }
.about__stats { display: flex; gap: 40px; margin: 32px 0; }

.about__stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}

.about__stat-label { font-size: 0.8125rem; color: var(--c-muted); }
.about__socials { display: flex; gap: 12px; margin-top: 24px; }

.about__social {
  padding: 10px 20px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  transition: all 0.2s;
}

.about__social:hover { border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-soft); }

/* ===== FAQ ===== */
.faq { padding: 56px 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--c-line); }
.faq__list { max-width: 960px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--c-line); }

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--c-ink);
  text-align: left;
}

.faq__question:hover { color: var(--c-primary); }

.faq__icon {
  font-size: 1.5rem;
  color: var(--c-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__icon { transform: rotate(45deg); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq__answer p {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.cta-final { padding: 72px 0; text-align: center; position: relative; overflow: hidden; }

.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 155, 126, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(91, 63, 217, 0.14) 0%, transparent 55%);
}

.cta-final__inner { position: relative; z-index: 1; }

.cta-final__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--c-ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-final__text {
  font-size: 1.125rem;
  color: var(--c-ink-soft);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer { padding: 48px 0; border-top: 1px solid var(--c-line); }

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__logo { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.125rem; color: var(--c-ink); }
.footer__logo span { color: var(--c-primary); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 0.875rem; color: var(--c-ink-soft); transition: color 0.2s; }
.footer__links a:hover { color: var(--c-primary); }
.footer__copy { font-size: 0.75rem; color: var(--c-muted); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 900;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(91, 63, 217, 0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--c-primary-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(91, 63, 217, 0.4); }

/* ===== SECTION ALT BACKGROUND ===== */
.section--alt { background: var(--c-bg-alt); }

/* ===== IG RECENZE GRID ===== */
.ig-reviews { padding: 56px 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--c-line); }

.ig-grid-wrapper {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.ig-grid-wrapper.expanded {
  max-height: 5000px;
}

.ig-grid-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-alt));
  pointer-events: none;
  transition: opacity 0.3s;
}

.ig-grid-wrapper.expanded .ig-grid-fade {
  opacity: 0;
}

.ig-show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.ig-show-more-wrap.hidden {
  display: none;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.ig-grid__col { display: flex; flex-direction: column; gap: 12px; }

.ig-thumb {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--c-line-soft);
  display: block;
}

.ig-thumb:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(31, 26, 46, 0.12); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }

.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1; padding: 8px;
}

.lightbox__prev, .lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer;
  padding: 12px 18px; border-radius: 8px;
  line-height: 1; transition: background 0.2s;
}

.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== PRODUCTS CAROUSEL ===== */
.products-section {
  padding: 40px 0 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 1px solid var(--c-line);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(232, 155, 126, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 100%, rgba(120, 90, 230, 0.20) 0%, transparent 55%),
    linear-gradient(165deg, var(--c-dark-1) 0%, var(--c-dark-2) 100%);
  overflow: hidden;
}

.products-section__heading {
  text-align: center;
  margin-bottom: 12px;
}

.products-section__heading .section-title { color: #fff; }
.products-section__heading .section-subtitle { color: rgba(255,255,255,0.55); }

/* Stage — fixed height, cards absolutely positioned inside */
.carousel-stage {
  position: relative;
  height: 620px;
  overflow: hidden;
}

/* Arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow--prev { left: 28px; }
.carousel-arrow--next { right: 28px; }

/* Cards — portrait format, absolutely positioned */
.carousel-card {
  position: absolute;
  width: 560px;
  top: 0;
  height: 530px;
  left: 50%;
  background: #fff;
  border-radius: 28px;
  border: 1.5px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1),
              opacity 0.55s ease,
              box-shadow 0.55s ease;
  will-change: transform;
  pointer-events: none;
}

.carousel-card[data-pos="center"] {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(232, 155, 126, 0.18);
  pointer-events: auto;
}

.carousel-card[data-pos="left"] {
  transform: translateX(calc(-50% - 250px)) scale(0.82);
  opacity: 0.55;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.carousel-card[data-pos="right"] {
  transform: translateX(calc(-50% + 250px)) scale(0.82);
  opacity: 0.55;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.carousel-card:not([data-pos="center"]) .btn {
  pointer-events: none;
  cursor: default;
}

/* Card body — text content */
.carousel-card__body {
  flex: 1;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.carousel-card__body .product__label { margin-bottom: 8px; }

.carousel-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--c-ink);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.carousel-card__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.carousel-card__desc {
  font-size: 0.875rem;
  color: var(--c-ink-soft);
  line-height: 1.45;
  margin-bottom: 16px;
}

/* Two-column layout: bullets left, image right */
.carousel-card__main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}

.carousel-card__main .product__features {
  margin: 0;
}

/* Card visual — image on the right column, stretches to fill grid row */
.carousel-card__visual {
  flex-direction: column;
  overflow: hidden;
  display: flex;
  min-height: 0;
}

.carousel-card__visual img {
  width: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

/* Price + button at card bottom, stacked and centered */
.carousel-card__footer {
  padding: 12px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-card__footer .product__price-row {
  margin: 0;
}

.carousel-card__footer .product__price { font-size: 1.9rem; }

.carousel-card__footer .btn {
  padding: 12px 36px;
  font-size: 0.9375rem;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 0 44px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.28s;
}

.carousel-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* Mobile product sections hidden on desktop */
.products-mobile { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title { font-size: 3.5rem; }
  .hero__inner { gap: 48px; }
  .product__inner { gap: 48px; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }

  /* Switch: hide carousel, show product sections */
  .products-section { display: none; }
  .products-mobile { display: block; }
}

@media (max-width: 768px) {
  .header__nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--c-bg); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--c-line); box-shadow: 0 12px 24px rgba(31,26,46,0.06); }
  .header__nav.active { display: flex; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }
  .header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .header__hamburger.active span:nth-child(2) { opacity: 0; }
  .header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__buttons { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__title { font-size: 2.5rem; }
  .hero__photo { max-width: 350px; margin: 0 auto; }

  .proof-bar__inner { flex-wrap: wrap; gap: 32px; }

  .product__inner { grid-template-columns: 1fr; gap: 40px; }
  .product--reverse .product__inner { direction: ltr; }

  .reviews__grid { grid-template-columns: 1fr; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { max-width: 300px; margin: 0 auto; }

  .section-title { font-size: 2rem; }
  .cta-final__title { font-size: 2rem; }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .proof-bar__inner { gap: 24px; }
  .proof-bar__number { font-size: 2rem; }
  .about__stats { gap: 24px; }
  .about__stat-number { font-size: 1.5rem; }
  .ig-grid { grid-template-columns: 1fr; }
}

/* fix pro 13"/14" notebooky */
@media (max-height: 800px) {
  .products-section { padding: 40px 0 48px; }
  .products-section__heading { margin-bottom: 16px; }
  .carousel-stage { height: 460px; }
  .about, .ig-reviews, .faq { padding: 40px 0; }
  .hero { padding: 64px 0 32px; }
  .section-title { font-size: 2rem; }
  .section-subtitle { margin-bottom: 32px; }
}
