/* ==========================================================================
   Eden Rusak — Design System
   Apple-style structure (full-bleed tiles, quiet UI, photography-first)
   RTL Hebrew · Google Sans + Heebo · dual accent (#232dce / #fe9cb1)
   ========================================================================== */

:root {
  /* Surface */
  --canvas: #ffffff;
  --parchment: #f5f5f7;
  --pearl: #fafafc;
  --tile-1: #272729;
  --tile-2: #2a2a2c;
  --tile-3: #1c1c1e;
  --black: #000000;

  /* Accent — dual brand */
  --primary: #232dce;
  --primary-press: #1a22a8;
  --pink: #fe9cb1;
  --pink-soft: #ffe2e8;
  --pink-deep: #e87f96;

  /* Ink / text */
  --ink: #1d1d1f;
  --ink-80: #333333;
  --ink-48: #7a7a7a;
  --on-dark: #ffffff;
  --muted-dark: #c7c7cc;

  /* Lines */
  --hairline: #e3e3e6;
  --divider-soft: rgba(0, 0, 0, 0.06);

  /* Radius */
  --r-sm: 8px;
  --r-md: 11px;
  --r-lg: 18px;
  --r-pill: 9999px;

  /* Shadow (the single product shadow) */
  --shadow-product: rgba(0, 0, 0, 0.22) 0 5px 30px 0;
  --shadow-soft: rgba(0, 0, 0, 0.08) 0 8px 30px 0;

  /* Spacing */
  --s-xs: 8px;
  --s-sm: 12px;
  --s-md: 17px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-2xl: 48px;
  --section: 96px;

  --maxw: 1180px;
  --maxw-text: 820px;
  --nav-h: 48px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Google Sans", "Heebo", system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Type scale ---------- */
.eyebrow {
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--primary); text-transform: none; margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--pink); }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
.display { font-size: clamp(38px, 6vw, 64px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.h3 { font-size: clamp(21px, 2.4vw, 27px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.lead { font-size: clamp(19px, 2.2vw, 25px); font-weight: 400; line-height: 1.45; color: var(--ink-80); }
.lead.on-dark { color: var(--muted-dark); }
p { font-size: 17px; line-height: 1.6; }
.fine { font-size: 13px; color: var(--ink-48); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.wrap-text { max-width: var(--maxw-text); }
.section { padding-block: var(--section); }
.section-sm { padding-block: 64px; }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s-md); }
.tile { width: 100%; }

/* Surface tiles */
.tile-light { background: var(--canvas); color: var(--ink); }
.tile-parchment { background: var(--parchment); color: var(--ink); }
.tile-dark { background: var(--tile-1); color: var(--on-dark); }
.tile-dark-2 { background: var(--tile-2); color: var(--on-dark); }
.tile-pink { background: var(--pink-soft); color: var(--ink); }
.tile-blue { background: var(--primary); color: var(--on-dark); }
.tile-pink-solid { background: var(--pink); color: #fff; }
.tile-pink-solid .display, .tile-pink-solid .h2 { color: var(--primary); }
.tile-pink-solid .eyebrow { color: #fff; }
.tile-pink-solid .lead { color: #fff; }
/* Academy portrait: just the image, no card/shadow square */
.tile-pink-solid .split-media img {
  box-shadow: none; border-radius: 0; aspect-ratio: auto;
  object-fit: contain; background: transparent;
}
/* Ghost button on pink turns white on hover */
.tile-pink-solid .btn-ghost:hover { background: #fff; color: var(--primary); border-color: #fff; }
/* Hot-topic: big headline beside text */
.hot-topic {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hot-topic-title {
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.04; font-weight: 700;
  margin: 0;
}
.hot-topic-title span { display: block; white-space: nowrap; }
.hot-topic-body .lead { margin: 0; }
@media (max-width: 820px) {
  .hot-topic { grid-template-columns: 1fr; gap: 24px; }
}
.tile-dark .lead, .tile-dark-2 .lead { color: var(--muted-dark); }
.tile-dark a:not(.btn), .tile-dark-2 a:not(.btn) { color: var(--pink); }
.tile-blue .eyebrow { color: var(--pink); }
.tile-blue .lead { color: rgba(255,255,255,.9); }
/* White checklist on blue/dark tiles */
.tile-blue .check-list li, .tile-dark-2 .check-list li { color: #fff; }
.tile-blue .check-list li::before {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23232dce' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Academy pillars ---------- */
.pillar-sub {
  font-size: clamp(19px, 3vw, 34px); line-height: 1.3;
  max-width: 760px; margin: 14px auto 0; font-weight: 400;
}
.pillar-sub-pink { color: var(--pink-deep); font-weight: 700; }
.pillar-sub-blue { color: var(--primary); font-weight: 400; }
.cards-centered {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(18px, 2vw, 26px); margin-top: 48px;
  max-width: 1010px; margin-inline: auto;
}
.cards-centered .card { flex: 0 1 300px; }
.cards-centered .card .card-num { font-size: clamp(40px, 4.5vw, 58px); line-height: 1; }
/* Twinkling sparkle — pink four-point star with a small blue companion */
.pillar-orb {
  position: relative; display: block;
  width: clamp(64px, 8vw, 92px); height: clamp(64px, 8vw, 92px);
  margin: 0 auto 24px;
}
.pillar-orb::before {
  content: ""; position: absolute; inset: 0;
  background: var(--pink);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  animation: spark-twinkle 3.2s ease-in-out infinite;
}
.pillar-orb::after {
  content: ""; position: absolute; top: -14%; inset-inline-end: -24%;
  width: 42%; height: 42%;
  background: var(--primary);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  animation: spark-twinkle-sm 3.2s ease-in-out infinite;
  animation-delay: .5s;
}
@keyframes spark-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.18) rotate(22deg); }
}
@keyframes spark-twinkle-sm {
  0%, 100% { transform: scale(.7) rotate(0deg); opacity: .85; }
  50% { transform: scale(1.15) rotate(-30deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .pillar-orb::before, .pillar-orb::after { animation: none; } }

/* ---------- Flagship ---------- */
.flagship { max-width: 720px; margin-inline: auto; text-align: center; }
.flagship .check-list { display: inline-block; text-align: start; }
.flagship .btn-row, .flagship .course-meta { justify-content: center; }

/* ---------- Course tags ---------- */
.tag-flagship { background: #d6e0ff; color: var(--primary); }
.tag-guide { background: var(--pink-soft); color: #4f7cf2; }
.tag-free { background: #d6f5e0; color: #1faa59; }

/* ---------- Academy lead form ---------- */
.lead-form { max-width: 460px; margin-inline: auto; text-align: start; }
.lead-form .optional { color: var(--ink-48); font-weight: 400; }
.lead-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: center;
}
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; }

/* ---------- Centered feature cards (workshops) ---------- */
.cards-feature .card {
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cards-feature .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-product); }
.cards-feature .card-icon {
  margin-inline: auto; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), #fff);
}

/* ---------- Workshop card meta ---------- */
.workshop-cap { color: var(--primary); font-weight: 300; font-size: 18px; margin-top: 6px; }
.workshop-status { color: var(--pink-deep); font-weight: 500; font-size: 14px; margin-top: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 17px; font-weight: 500; line-height: 1;
  padding: 13px 26px; border-radius: var(--r-pill);
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-press); }
.btn-pink { background: var(--pink); color: var(--ink); }
.btn-pink:hover { background: var(--pink-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-ghost.on-dark { color: var(--pink); border-color: var(--pink); }
.btn-ghost.on-dark:hover { background: var(--pink); color: var(--ink); }
.btn-white { background: #fff; color: var(--pink-deep); }
.btn-white:hover { background: var(--pink-soft); color: var(--pink-deep); }
.btn-lg { font-size: 18px; padding: 16px 34px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

.textlink { color: var(--primary); font-weight: 500; }
.textlink::after { content: " ‹"; }
.textlink:hover { text-decoration: underline; }

/* ==========================================================================
   Global nav
   ========================================================================== */
.global-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.62);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: var(--nav-h);
}
.global-nav .nav-inner {
  max-width: var(--maxw); margin-inline: auto; height: 100%;
  display: flex; align-items: center; gap: 28px;
  padding-inline: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  height: 17px; width: auto;
  filter: brightness(0); opacity: .82;
  transition: filter .3s ease, opacity .3s ease;
}
/* Over dark sections: white logo + dark glass nav + white links */
.global-nav.nav-on-dark {
  background: rgba(20,20,22,0.5);
  border-bottom-color: rgba(255,255,255,0.12);
}
.nav-on-dark .nav-logo img { filter: brightness(0) invert(1); opacity: 1; }
.nav-on-dark .nav-links a { color: #fff; }
.nav-on-dark .nav-toggle span { background: #fff; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-inline-start: auto; }
.nav-links a {
  color: var(--ink); font-size: 14px; font-weight: 400; letter-spacing: -0.01em;
  opacity: .72; transition: opacity .2s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  background: var(--primary); color: #fff !important; opacity: 1 !important;
  padding: 7px 16px; border-radius: var(--r-pill); font-weight: 500;
}
.nav-cta:hover { background: var(--primary-press); }
.nav-toggle { display: none; margin-inline-start: auto; width: 30px; height: 30px; position: relative; }
.nav-toggle span { position: absolute; right: 4px; left: 4px; height: 1.5px; background: var(--ink); transition: .25s; }
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-open .nav-toggle span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { top: 14px; transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: center;
  background: var(--tile-1); color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,22,.85) 0%, rgba(20,20,22,.35) 55%, rgba(20,20,22,.1) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero .display { color: #fff; }
.hero .lead { color: rgba(255,255,255,.86); margin-top: 20px; }
.hero .btn-row { margin-top: 36px; }

/* Centered tile hero (subpages) */
.page-hero { text-align: center; padding-block: clamp(80px, 12vw, 150px); }
.page-hero .display { margin-bottom: 18px; }
.page-hero .lead { max-width: 680px; margin-inline: auto; }

/* Portrait-led homepage hero (image start in pink circle, text continues) */
.hero-intro {
  text-align: start; background: var(--canvas); color: var(--ink);
  padding-block: clamp(48px, 7vw, 96px) clamp(48px, 6vw, 80px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 70px); align-items: center;
}
.hero-copy .eyebrow {
  font-size: clamp(16px, 2vw, 21px); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 16px;
}
.hero-copy .display { margin-bottom: 20px; font-weight: 300; }
.hero-copy .display .pop { font-weight: 700; color: var(--primary); }
.hero-copy .lead { max-width: 600px; }
.hero-copy .lead .pop { font-weight: 700; color: var(--primary); }
.hero-copy .btn-row { margin-top: 34px; flex-wrap: wrap; }
.hero-portrait {
  position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 360px;
  perspective: 1000px;
}
.hero-portrait::before {
  content: ""; position: absolute; inset-inline: 0; bottom: 4%; margin-inline: auto;
  width: min(430px, 92%); aspect-ratio: 1/1;
  background: #fae3e8;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  transform-style: preserve-3d;
  animation: blob-morph 14s ease-in-out infinite;
  z-index: 0;
}
.hero-portrait img {
  position: relative; z-index: 1; width: min(400px, 92%); height: auto; display: block;
  animation: avatar-float 6s ease-in-out infinite;
}
/* soft white fade over the bottom 10% so the portrait doesn't look cut off */
.hero-portrait::after {
  content: ""; position: absolute; z-index: 2; bottom: 0; inset-inline: 0;
  margin-inline: auto; width: min(400px, 92%); height: 10%;
  background: linear-gradient(to top, var(--canvas), transparent);
  pointer-events: none;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: rotate3d(1, 1, 0, 0deg) scale(1); }
  25% { border-radius: 60% 40% 38% 62% / 56% 38% 62% 44%; transform: rotate3d(1, 1, 0, 10deg) scale(1.03); }
  50% { border-radius: 35% 65% 55% 45% / 52% 62% 38% 48%; transform: rotate3d(0, 1, 0, 16deg) scale(1); }
  75% { border-radius: 52% 48% 44% 56% / 38% 54% 46% 62%; transform: rotate3d(1, 0, 0, -10deg) scale(1.03); }
}
@keyframes avatar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .hero-portrait img { animation: none; } }
@media (max-width: 860px) {
  .hero-intro { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { order: 2; }
  .hero-portrait { order: 1; min-height: 0; margin-bottom: 8px; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-copy .btn-row { justify-content: center; }
}

/* UGC workshop — closing-soon alert near top */
.ugc-alert-wrap { background: var(--canvas); padding-block: 12px clamp(28px, 4vw, 44px); }
.ugc-alert {
  position: relative; display: flex; align-items: center; gap: clamp(16px, 2.5vw, 28px);
  background: linear-gradient(120deg, var(--primary) 0%, #3a44e0 100%);
  color: #fff; border-radius: var(--r-lg); padding: 24px clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-product);
}
/* closing-soon badge — clean pill riding the top edge of the box, centered */
.ugc-alert-ribbon {
  position: absolute; top: -14px; inset-inline: 0; margin-inline: auto;
  width: fit-content; z-index: 4;
  background: #9b1c31; color: #fff;
  font-weight: 800; font-size: 13px; letter-spacing: .01em; white-space: nowrap;
  padding: 7px 18px; border-radius: var(--r-pill);
  border: 2px solid #fff;
  animation: ribbon-pulse 1.8s ease-in-out infinite;
}
@keyframes ribbon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.ugc-alert-body { display: flex; flex-direction: column; gap: 4px; flex: 1 1 auto; }
.ugc-alert-body strong { font-size: clamp(17px, 2.2vw, 21px); font-weight: 700; }
.ugc-alert-body span { font-size: 15px; color: rgba(255,255,255,.85); }
.ugc-alert-cta {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--pink); color: #fff; font-weight: 800; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r-pill); text-decoration: none;
  transition: transform .2s ease;
}
.ugc-alert-cta:hover { transform: translateY(-2px); }
.ugc-alert-cta span { font-size: 20px; line-height: 1; transition: transform .2s ease; }
.ugc-alert-cta:hover span { transform: translateX(-4px); }
@media (max-width: 760px) {
  .ugc-alert { flex-direction: column; align-items: flex-start; text-align: start; gap: 16px; }
  .ugc-alert-cta { width: 100%; justify-content: center; }
}

/* ==========================================================================
   About / split
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split.reverse { direction: ltr; }
.split.reverse > * { direction: rtl; }
.split-media img {
  width: 100%; border-radius: var(--r-lg); object-fit: cover;
  box-shadow: var(--shadow-product); aspect-ratio: 4/5;
}
.split-media.tall img { aspect-ratio: 3/4; }

/* ==========================================================================
   Brand logos strip
   ========================================================================== */
.logos-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px; align-items: center; margin-top: 44px;
}
.logo-cell {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-lg);
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  padding: 20px; transition: transform .2s ease;
}
.logo-cell:hover { transform: translateY(-3px); }
.logo-cell img { max-height: 56px; max-width: 80%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .2s; }
.logo-cell:hover img { filter: grayscale(0); opacity: 1; }

/* ==========================================================================
   Feature cards grid
   ========================================================================== */
.cards {
  display: grid; gap: 22px; margin-top: 48px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 30px; height: 100%;
}
.tile-dark .card, .tile-dark-2 .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: #fff; }
.tile-parchment .card { background: #fff; }
.card .card-num { font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 14px; }
.card .h3 { margin-bottom: 10px; }
.card p { color: var(--ink-80); font-size: 16px; }
.tile-dark .card p { color: var(--muted-dark); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--pink-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}

/* ==========================================================================
   Services (centered, box-less pink icons on blue tile)
   ========================================================================== */
.services-grid {
  display: grid; gap: 32px; margin-top: 56px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.service-feat { text-align: center; display: flex; flex-direction: column; align-items: center; }
.service-feat .s-icon {
  font-size: 42px; line-height: 1; color: var(--pink); margin-bottom: 18px;
}
.service-feat .h3 { margin-bottom: 10px; color: #fff; }
.service-feat p { color: rgba(255,255,255,.82); font-size: 16px; max-width: 280px; }

/* ==========================================================================
   Reels (hover-play video grid)
   ========================================================================== */
.reels-grid {
  display: grid; gap: 16px; margin-top: 44px;
  grid-template-columns: repeat(4, 1fr);
}
.reel-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 9/16; background: var(--parchment); cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.reel-item video, .reel-item img.reel-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel-item video { opacity: 0; transition: opacity .3s ease; }
.reel-item.playing video { opacity: 1; }
.reel-item .reel-play {
  position: absolute; inset-block-end: 12px; inset-inline-start: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.45); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; transition: opacity .3s ease; z-index: 2;
}
.reel-item.playing .reel-play { opacity: 0; }

/* ==========================================================================
   Brand logos marquee (auto-scroll, uniform gray)
   ========================================================================== */
.marquee {
  margin-top: 48px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; width: max-content;
  animation: marquee-scroll 45s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  width: 132px; height: 60px; max-width: none; flex: none; object-fit: contain;
  margin-inline: 28px;
  filter: grayscale(1) opacity(.55); transition: filter .25s ease, transform .25s ease;
}
.marquee-track img:hover { filter: grayscale(1) opacity(1); transform: scale(1.08); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ==========================================================================
   Work masonry (homepage portfolio peek + portfolio grid)
   ========================================================================== */
.work-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
}
.work-grid .work-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 9/16; background: var(--parchment);
}
.work-grid .work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-grid .work-item:hover img { transform: scale(1.05); }

/* Category gallery */
.cat-block { margin-top: 64px; }
.cat-block .h3 { margin-bottom: 22px; }

/* ==========================================================================
   Course / pricing card
   ========================================================================== */
.course-card {
  background: #fff; border-radius: var(--r-lg); border: 1px solid var(--hairline);
  overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.course-card .course-media { aspect-ratio: 16/10; overflow: hidden; }
.course-card .course-media img { width: 100%; height: 100%; object-fit: cover; }
.course-card .course-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.course-card .h3 { margin-bottom: 8px; }
.course-card p { color: var(--ink-80); font-size: 16px; flex: 1; }
.course-meta { display: flex; align-items: baseline; gap: 10px; margin: 18px 0; }
.course-price { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.course-price .old { font-size: 18px; font-weight: 400; color: var(--ink-48); text-decoration: line-through; margin-inline-start: 8px; }
.course-price .price-now {
  display: inline-block; font-size: 40px; font-weight: 800; line-height: 1;
  color: var(--primary); background: var(--pink-soft, #fae3e8);
  padding: 6px 16px; border-radius: 14px;
}
.tag {
  display: inline-block; background: var(--pink-soft); color: var(--pink-deep);
  font-size: 13px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill);
  margin-bottom: 14px; align-self: flex-start;
}

/* List with checks */
.check-list { margin-top: 8px; }
.check-list li { position: relative; padding-inline-start: 30px; margin-bottom: 14px; font-size: 17px; color: var(--ink-80); }
.check-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.tile-dark .check-list li { color: var(--muted-dark); }

/* ==========================================================================
   Recommendations product grid
   ========================================================================== */
.product-grid {
  display: grid; gap: 22px; margin-top: 44px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 18px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product-card .product-media {
  aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden; background: var(--parchment); margin-bottom: 16px;
}
.product-card .product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card .product-cat { font-size: 13px; color: var(--pink-deep); font-weight: 600; margin-bottom: 4px; }
.product-card .h3 { font-size: 19px; margin-bottom: 6px; }
.product-card p { font-size: 15px; color: var(--ink-80); flex: 1; margin-bottom: 14px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--ink-80); }
.form-field input, .form-field textarea {
  width: 100%; font-family: inherit; font-size: 17px; color: var(--ink);
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 14px 16px; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(35,45,206,.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-48); margin-bottom: 20px; }
.consent input { margin-top: 3px; }
.contact-detail { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.contact-detail .ico {
  width: 46px; height: 46px; border-radius: var(--r-md); flex: none;
  background: var(--pink-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-detail .ico-wa { background: #25d366; color: #fff; }
.contact-detail .d-label { font-size: 13px; color: var(--ink-48); }
.contact-detail .d-value { font-size: 18px; font-weight: 500; color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--parchment); color: var(--ink-80); padding-block: 64px 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 22px; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; color: var(--ink-48); max-width: 320px; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--ink); }
.footer-col a { display: block; color: var(--ink-80); font-size: 15px; margin-bottom: 12px; }
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 18px; margin-top: 18px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  opacity: .55; transition: opacity .2s ease;
}
.footer-social a:hover { opacity: 1; }
.footer-social img { width: 24px; height: 24px; filter: brightness(0); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--ink-48);
}
.footer-bottom a { color: var(--ink-48); }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie-banner {
  position: fixed; inset-inline: 16px; bottom: 16px; z-index: 200;
  max-width: 480px; margin-inline: auto; background: rgba(28,28,30,.92);
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: #fff; border-radius: var(--r-lg); padding: 22px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transform: translateY(150%); transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.cookie-banner p { font-size: 14px; line-height: 1.5; color: var(--muted-dark); margin-bottom: 18px; }
.cookie-banner p a { color: var(--pink); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { font-size: 15px; padding: 10px 20px; flex: 1; min-width: 120px; }
.btn-cookie-reject { background: rgba(255,255,255,.14); color: #fff; }
.btn-cookie-reject:hover { background: rgba(255,255,255,.24); }

/* ==========================================================================
   Legal / terms page
   ========================================================================== */
.legal { padding-block: 64px 96px; }
.legal h2 { font-size: 24px; margin: 40px 0 14px; }
.legal h3 { font-size: 19px; margin: 26px 0 10px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--ink-80); margin-bottom: 14px; }
.legal ul { list-style: disc; padding-inline-start: 22px; }
.legal .updated { color: var(--ink-48); font-size: 14px; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Staggered children reveal */
.reveal.in > * { animation: rise-in .7s cubic-bezier(.16,1,.3,1) both; }
.reveal.in > *:nth-child(1) { animation-delay: .04s; }
.reveal.in > *:nth-child(2) { animation-delay: .12s; }
.reveal.in > *:nth-child(3) { animation-delay: .20s; }
.reveal.in > *:nth-child(4) { animation-delay: .28s; }
.reveal.in > *:nth-child(5) { animation-delay: .36s; }
.reveal.in > *:nth-child(6) { animation-delay: .44s; }
.reveal.in > *:nth-child(7) { animation-delay: .52s; }
.reveal.in > *:nth-child(8) { animation-delay: .60s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Hero entrance */
.hero-copy > * { animation: hero-in .9s cubic-bezier(.16,1,.3,1) both; }
.hero-copy .eyebrow { animation-delay: .10s; }
.hero-copy .display { animation-delay: .18s; }
.hero-copy .lead { animation-delay: .28s; }
.hero-copy .btn-row { animation-delay: .38s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }

/* Playful hover lifts */
.service-feat { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.service-feat:hover { transform: translateY(-8px); }
.service-feat .s-icon { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.service-feat:hover .s-icon { transform: translateY(-4px) scale(1.18) rotate(-4deg); }
.reel-item { transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.reel-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-product); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.in > *, .hero-copy > *, .hero-portrait img,
  .hero-portrait::before, .pf-cat-emblem, .ugc-alert-ribbon { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 833px) {
  :root { --section: 72px; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 12px 24px 24px; transform: translateY(-120%);
    transition: transform .3s ease; max-height: calc(100vh - var(--nav-h)); overflow:auto;
  }
  .nav-open .nav-links { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 16px 0; font-size: 19px; border-bottom: 1px solid rgba(0,0,0,.07); }
  .nav-links .nav-cta { width: 100%; text-align: center; margin-top: 16px; padding: 14px; border-bottom: none; }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: rtl; }
  .split-media { max-width: 460px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding-inline: 20px; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { inset-inline: 12px; bottom: 12px; }
}

/* ==========================================================================
   Accessibility widget
   ========================================================================== */
.a11y-launcher {
  position: fixed; inset-inline-start: 20px; bottom: 20px; z-index: 1200;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(35,45,206,.34); transition: transform .2s ease, box-shadow .2s ease;
}
.a11y-launcher:hover { transform: scale(1.06); box-shadow: 0 10px 30px rgba(35,45,206,.42); }
.a11y-launcher:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.a11y-panel {
  position: fixed; inset-inline-start: 20px; bottom: 84px; z-index: 1200;
  width: 268px; max-width: calc(100vw - 40px);
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-md);
  box-shadow: 0 18px 50px rgba(0,0,0,.18); padding: 16px;
}
.a11y-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.a11y-head h4 { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink); }
.a11y-close { border: none; background: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--ink-48); }
.a11y-close:hover { color: var(--ink); }
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; font-size: 15px; color: var(--ink-80); }
.a11y-stepper { display: flex; align-items: center; gap: 8px; }
.a11y-stepper button { width: 36px; height: 32px; border: 1px solid var(--hairline); background: var(--parchment); border-radius: 8px; cursor: pointer; font-weight: 600; color: var(--ink); }
.a11y-stepper button:hover { background: #ececef; }
.a11y-val { min-width: 22px; text-align: center; font-weight: 600; color: var(--ink); }
.a11y-opt {
  display: block; width: 100%; text-align: start; margin-bottom: 8px;
  padding: 11px 14px; border: 1px solid var(--hairline); border-radius: 10px;
  background: #fff; cursor: pointer; font-size: 15px; color: var(--ink); transition: background .15s, border-color .15s;
}
.a11y-opt:hover { background: var(--parchment); }
.a11y-opt[aria-pressed="true"] { background: var(--primary); border-color: var(--primary); color: #fff; }
.a11y-reset {
  display: block; width: 100%; margin-top: 6px; padding: 10px; border: none; border-radius: 10px;
  background: var(--pink-soft); color: var(--pink-deep); font-weight: 600; font-size: 14px; cursor: pointer;
}
.a11y-reset:hover { background: #ffd3dc; }

/* Effects applied to <html> */
html.a11y-font body { zoom: var(--a11y-font-scale, 1); }
html.a11y-readable, html.a11y-readable body,
html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3,
html.a11y-readable h4, html.a11y-readable p, html.a11y-readable a,
html.a11y-readable span, html.a11y-readable li, html.a11y-readable button,
html.a11y-readable label, html.a11y-readable input, html.a11y-readable textarea {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  letter-spacing: .01em;
}
html.a11y-links a:not(.btn) { text-decoration: underline !important; text-underline-offset: 3px; font-weight: 600 !important; }
html.a11y-gray { filter: grayscale(1); }
html.a11y-stop *, html.a11y-stop *::before, html.a11y-stop *::after {
  animation-duration: 0s !important; animation-iteration-count: 1 !important;
  transition-duration: 0s !important; scroll-behavior: auto !important;
}
html.a11y-contrast { background: #000; }
html.a11y-contrast body { background: #000; }
html.a11y-contrast .tile-light, html.a11y-contrast .tile-parchment,
html.a11y-contrast .tile-pink, html.a11y-contrast .tile-pink-solid,
html.a11y-contrast .tile-dark, html.a11y-contrast .tile-dark-2,
html.a11y-contrast .tile-blue, html.a11y-contrast .hero,
html.a11y-contrast .footer, html.a11y-contrast section {
  background: #000 !important;
}
html.a11y-contrast h1, html.a11y-contrast h2, html.a11y-contrast h3, html.a11y-contrast h4,
html.a11y-contrast p, html.a11y-contrast span, html.a11y-contrast li,
html.a11y-contrast .lead, html.a11y-contrast .eyebrow, html.a11y-contrast label,
html.a11y-contrast .d-label, html.a11y-contrast .d-value {
  color: #fff !important;
}
html.a11y-contrast a:not(.btn) { color: #ffe500 !important; }
html.a11y-contrast .btn-primary, html.a11y-contrast .btn-pink,
html.a11y-contrast .btn-whatsapp { background: #ffe500 !important; color: #000 !important; }
html.a11y-contrast .a11y-panel { background: #000 !important; border-color: #fff; }
html.a11y-contrast .a11y-opt { background: #000 !important; color: #fff; border-color: #fff; }

/* ==========================================================================
   Recommendations store
   ========================================================================== */
.shop-cat { padding-block: clamp(28px, 4vw, 44px); }
.shop-cat-head { margin-bottom: 18px; }
.shop-cat-note { margin: 6px 0 0; color: var(--ink-48); font-size: 16px; }
.shop-row { position: relative; }
.shop-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 16px; scrollbar-width: none; -ms-overflow-style: none;
}
.shop-track::-webkit-scrollbar { display: none; }
.shop-card {
  flex: 0 0 auto; width: 268px; scroll-snap-align: start;
  display: flex; flex-direction: column; text-decoration: none;
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-md);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.shop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-product); }
.shop-card-media { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--parchment); }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.shop-card:hover .shop-card-media img { transform: scale(1.05); }
.shop-card-body { display: flex; flex-direction: column; gap: 7px; padding: 16px 18px 18px; }
.shop-card-cat { font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--pink-deep); }
.shop-card-title { font-size: 18px; font-weight: 600; color: var(--ink); }
.shop-card-text { font-size: 14px; line-height: 1.55; color: var(--ink-80); }
.shop-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; gap: 8px; }
.shop-card-coupon { font-size: 12px; font-weight: 600; color: var(--primary); background: #e7e9ff; padding: 3px 9px; border-radius: 999px; }
.shop-card-link { margin-inline-start: auto; font-size: 14px; font-weight: 600; color: var(--primary); }
.shop-arrow {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hairline);
  background: rgba(255,255,255,.94); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center;
}
.shop-arrow:hover { background: #fff; color: var(--primary); }
.shop-arrow-prev { inset-inline-start: -6px; }
.shop-arrow-next { inset-inline-end: -6px; }
@media (max-width: 720px) { .shop-arrow { display: none; } .shop-card { width: 230px; } }

/* Product detail page */
.pd-breadcrumb { font-size: 14px; color: var(--ink-48); margin-bottom: 22px; }
.pd-breadcrumb a { color: var(--ink-80); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.pd-main {
  border-radius: var(--r-lg); overflow: hidden; background: var(--parchment);
  box-shadow: var(--shadow-product); aspect-ratio: 1/1;
}
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-cat { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--pink-deep); }
.pd-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.08; margin: 8px 0 16px; color: var(--ink); }
.pd-desc { font-size: 17px; line-height: 1.7; color: var(--ink-80); margin-bottom: 24px; }
.pd-coupon { border: 1px dashed var(--primary); background: #f3f4ff; border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 22px; }
.pd-coupon-empty { border-color: var(--hairline); background: var(--parchment); }
.pd-coupon-label { font-size: 13px; font-weight: 600; color: var(--ink-48); }
.pd-coupon-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.pd-coupon-row code { font-size: 22px; font-weight: 700; letter-spacing: .08em; color: var(--primary); font-family: "Google Sans", monospace; }
.pd-copy { border: none; background: var(--primary); color: #fff; font-weight: 600; font-size: 14px; padding: 8px 16px; border-radius: var(--r-pill); cursor: pointer; }
.pd-copy:hover { filter: brightness(1.08); }
.pd-coupon-note { margin: 8px 0 0; font-size: 13px; color: var(--ink-48); }
.pd-buy { display: inline-flex; }
.pd-affiliate { margin-top: 16px; }
@media (max-width: 760px) { .pd-grid { grid-template-columns: 1fr; } .pd-main { max-width: 460px; margin-inline: auto; } }

/* Instagram feed */
.ig-feed .ig-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 8px;
}
.ig-tile { position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden; background: #fff; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ig-tile:hover img { transform: scale(1.06); }
.ig-play {
  position: absolute; inset-inline-end: 8px; top: 8px; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: #fff;
  background: rgba(0,0,0,.4); border-radius: 50%; padding-inline-start: 2px;
}
@media (max-width: 900px) { .ig-feed .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ig-feed .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Landing pages
   ========================================================================== */
/* unified white page — every landing section sits on the same light canvas */
.landing-sec { background: var(--canvas); padding-block: clamp(48px, 7vw, 96px); }
.lp-h2 { font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -.01em; }
.landing-badge {
  display: inline-block; margin-bottom: 18px; padding: 8px 20px; border-radius: var(--r-pill);
  background: var(--pink-soft, #fae3e8); color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: .03em;
}
.landing-price { margin-top: 22px; font-size: 32px; font-weight: 700; color: var(--ink); }
.landing-price .old { font-size: 20px; font-weight: 500; color: var(--ink-48); text-decoration: line-through; margin-inline-start: 8px; }
.landing-date { margin-top: 14px; font-size: 16px; font-weight: 600; color: var(--pink-deep); }
.landing-faq { max-width: 760px; margin: 28px auto 0; }
.faq-item { border-bottom: 1px solid var(--hairline); padding: 4px 0; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 4px; font-size: 18px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--primary); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 4px 18px; font-size: 16px; line-height: 1.7; color: var(--ink-80); }

/* ---- Hero: centered editorial type, large image below, sparkle accents ---- */
.landing-hero {
  position: relative; overflow: hidden; text-align: center;
  background: var(--canvas);
  padding-block: clamp(110px, 14vw, 170px) clamp(40px, 6vw, 70px);
}
.landing-hero-inner { max-width: 940px; margin-inline: auto; }
.landing-display {
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: clamp(40px, 7.2vw, 86px); line-height: 1.04; letter-spacing: -.02em;
  font-weight: 600; margin-bottom: 22px; color: var(--ink);
}
.landing-hero .lead { font-size: clamp(18px, 2.3vw, 23px); max-width: 660px; margin-inline: auto; }
.landing-hero-cta { justify-content: center; margin-top: 30px; }
.landing-hero-media { margin-top: clamp(48px, 7vw, 78px); }
.landing-hero-media img {
  width: 100%; max-width: 980px; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-product); margin-inline: auto; display: block;
}
@media (max-width: 720px) {
  .landing-hero-media img { aspect-ratio: 4/5; max-width: 420px; }
}
/* decorative twinkling sparkles in the brand pink/blue */
.lp-spark {
  position: absolute; background: var(--pink); pointer-events: none;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  animation: spark-twinkle 3.4s ease-in-out infinite;
}
.lp-spark-blue { background: var(--primary); }
@media (max-width: 720px) { .lp-spark { display: none; } }

/* ---- Feature rows (what you get) ---- */
.lp-feature-grid {
  margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 38px 36px; text-align: start;
}
.lp-feature { display: flex; align-items: flex-start; gap: 14px; }
.lp-feature-ico {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--pink-soft, #fae3e8); color: var(--primary);
}
.lp-feature p { margin: 4px 0 0; font-size: 17px; line-height: 1.6; color: var(--ink-80); }
@media (max-width: 960px) { .lp-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lp-feature-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---- Mid CTA strip: soft pink rounded card on the white page ---- */
.lp-cta-strip {
  text-align: center; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(254,156,177,.12), rgba(254,156,177,.22));
  padding: clamp(40px, 6vw, 66px) clamp(24px, 5vw, 64px);
}
.lp-cta-strip .landing-price { margin-inline: auto; }

/* ---- For-who: centered checklist ---- */
.lp-forwho { max-width: 660px; margin: 36px auto 0; }
.lp-forwho .check-list li { font-size: clamp(17px, 2vw, 20px); }

/* ---- UGC / focused-workshop extras ---- */
.landing-subtitle {
  margin: -8px auto 16px; font-size: clamp(19px, 2.6vw, 26px); font-weight: 800;
  color: var(--pink-deep, var(--pink)); max-width: 640px;
}
.lp-summary-line {
  margin: 40px auto 0; max-width: 720px; text-align: center;
  font-size: clamp(18px, 2.4vw, 23px); font-weight: 800; color: var(--primary);
  background: var(--pink-soft, #fae3e8); border-radius: var(--r-md);
  padding: 20px clamp(20px, 4vw, 34px); line-height: 1.5;
}
.cards-plain .card-num { display: none; }
/* ✦ markers instead of the default check icon */
.check-list-spark li::before {
  content: "✦"; background: none; color: var(--pink);
  width: auto; height: auto; inset-inline-start: 0; top: 2px;
  font-size: 18px; line-height: 1; display: inline;
}
.check-list-spark li { padding-inline-start: 32px; }
/* technical details + urgency */
.lp-details {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 680px; margin: 34px auto 0;
}
.lp-detail {
  background: var(--parchment); border-radius: var(--r-md);
  padding: 22px 24px; text-align: center;
}
.lp-detail-k { display: block; font-size: 15px; font-weight: 700; letter-spacing: .04em; color: var(--pink-deep, var(--pink)); margin-bottom: 8px; }
.lp-detail-v { display: block; font-size: clamp(22px, 3.6vw, 30px); font-weight: 800; color: var(--ink); line-height: 1.4; }
.lp-detail-note { display: block; margin-top: 6px; font-size: 0.5em; font-weight: 500; color: var(--ink-48); line-height: 1.4; }
.lp-urgency {
  max-width: 680px; margin: 24px auto 0; text-align: center;
  background: #fff4e5; border: 1px solid #f5c98a; border-radius: var(--r-md);
  padding: 18px 22px; font-size: 16px; font-weight: 600; color: #8a5a12; line-height: 1.6;
}
@media (max-width: 560px) { .lp-details { grid-template-columns: 1fr; } }

/* enlarged hero badge on the de-cluttered (no-header) landing page */
.lp-no-header .landing-badge {
  font-size: clamp(30px, 6vw, 50px); font-weight: 800; letter-spacing: .01em;
  padding: 12px 30px; margin-bottom: 22px; line-height: 1.15;
}
/* features: 2 boxes per row, block centred on the page (UGC) */
.lp-no-header .lp-feature-grid {
  grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-inline: auto;
}
.lp-feature p strong, .check-list strong, .lp-forwho strong { color: var(--ink); font-weight: 700; }
@media (max-width: 640px) { .lp-no-header .lp-feature-grid { grid-template-columns: 1fr; } }
/* decorative sparkles scattered down the page */
.lp-spark-host { position: relative; overflow: hidden; }

/* ---- Lively, on-brand page wash (UGC) — soft pink/blue gradient behind
       transparent sections so the page feels warm rather than flat white ---- */
body.lp-no-header {
  background:
    radial-gradient(120% 60% at 85% 0%, rgba(254,156,177,.16), transparent 60%),
    radial-gradient(120% 60% at 10% 30%, rgba(35,45,206,.07), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fff3f6 28%, #eef0ff 58%, #fff4f7 100%);
  background-repeat: no-repeat;
}
.lp-no-header .landing-hero,
.lp-no-header .landing-sec,
.lp-no-header .lp-enroll { background: transparent; }
/* pink panel behind the FAQ block */
.lp-no-header .lp-faq-sec {
  background: var(--pink-soft);
  border-radius: var(--r-lg); margin: 0 clamp(0px, 3vw, 40px);
}

/* ---- Mobile: centre every CTA, punchier sales layout ---- */
@media (max-width: 640px) {
  .lp-no-header .btn-row { justify-content: center; }
  .lp-no-header .btn-row .btn,
  .lp-no-header .lead-actions .btn { width: 100%; max-width: 360px; }
  .lp-no-header .lp-feature { text-align: start; }
  .lp-no-header .landing-hero { padding-block: 40px 24px; }
  .lp-no-header .landing-sec { padding-block: 38px; }
  .lp-no-header .lp-summary-line { font-size: 18px; padding: 18px 18px; }
  .lp-no-header .lp-faq-sec { margin-inline: 0; border-radius: 0; }
  /* significantly smaller footer on the landing page */
  .lp-no-header .footer { padding-block: 30px 18px; }
  .lp-no-header .footer-top { gap: 20px; }
  .lp-no-header .footer-brand p { font-size: 13px; }
  .lp-no-header .footer-col h4 { margin-bottom: 8px; font-size: 13px; }
  .lp-no-header .footer-col a,
  .lp-no-header .footer-col span { font-size: 13px; margin-bottom: 7px; }
  .lp-no-header .footer-bottom { font-size: 12px; padding-top: 16px; margin-top: 20px; }
}

/* ---- Stats: quiet trust strip on white ---- */
.lp-stats-sec { padding-block: 0; }
.lp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center;
  padding-block: clamp(36px, 5vw, 56px); border-block: 1px solid var(--hairline);
}
.lp-stat { display: flex; flex-direction: column; gap: 8px; }
.lp-stat-num { font-family: "Google Sans", sans-serif; font-size: clamp(32px, 4.4vw, 54px); font-weight: 700; color: var(--primary); line-height: 1; }
.lp-stat-label { font-size: 15px; color: var(--ink-48); }
@media (max-width: 720px) { .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; } }

/* ---- Steps ---- */
.steps-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  position: relative; background: var(--parchment); border-radius: var(--r-md);
  padding: 34px 28px 30px; text-align: start;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 20px; margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: 16px; line-height: 1.6; color: var(--ink-80); margin: 0; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---- Testimonials ---- */
.testimonial-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  margin: 0; background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 30px 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: var(--pink-deep); font-size: 18px; letter-spacing: 2px; }
.testimonial blockquote { margin: 0; font-size: 17px; line-height: 1.7; color: var(--ink-80); }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-avatar {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--pink-soft); color: var(--primary); font-weight: 700; font-size: 18px;
}
.t-meta { display: flex; flex-direction: column; line-height: 1.3; }
.t-meta strong { font-size: 16px; color: var(--ink); }
.t-meta span { font-size: 14px; color: var(--ink-48); }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---- Final lead-form section (white, hairline separation) ---- */
.lp-enroll { background: var(--canvas); border-top: 1px solid var(--hairline); }

/* ---- Contact portrait (transparent PNG, no box, soft pink circle) ---- */
.contact-portrait {
  position: relative; margin-bottom: 28px; display: flex; justify-content: center; align-items: flex-end;
}
.contact-portrait::before {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; margin-inline: auto;
  width: min(320px, 88%); aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--pink-soft) 0%, var(--pink-soft) 55%, transparent 72%);
  z-index: 0;
}
.contact-portrait img {
  position: relative; z-index: 1; width: min(340px, 92%); height: auto; display: block;
}

/* ==========================================================================
   Portfolio / Media-kit page
   ========================================================================== */
.pf-profiles { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.tile-blue .pf-profiles .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.tile-blue .pf-profiles .btn-ghost:hover { background: rgba(255,255,255,.14); }

/* placeholder tag */
.pf-ph-tag {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--pink-deep); background: var(--pink-soft); padding: 6px 14px; border-radius: var(--r-pill);
}
.tile-dark .pf-ph-tag { color: var(--pink); background: rgba(255,255,255,.10); }

/* quick facts */
.pf-facts { list-style: none; margin: 24px 0 0; padding: 0; border-top: 1px solid var(--hairline); }
.pf-facts li {
  display: flex; justify-content: space-between; gap: 16px; padding: 13px 2px;
  border-bottom: 1px solid var(--hairline); font-size: 16px;
}
.pf-fact-k { color: var(--ink-48); }
.pf-fact-v { color: var(--ink); font-weight: 600; text-align: start; }

/* audience analysis */
.aud-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.aud-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--shadow-soft); }
.aud-card h3 { margin-bottom: 18px; }
.aud-bar { display: grid; grid-template-columns: 70px 1fr 44px; align-items: center; gap: 10px; margin-bottom: 12px; }
.aud-bar-label { font-size: 14px; color: var(--ink-80); }
.aud-bar-track { height: 10px; border-radius: 999px; background: var(--pink-soft); overflow: hidden; }
.aud-bar-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary), #4b54e8); }
.aud-bar-val { font-size: 14px; font-weight: 700; color: var(--primary); text-align: start; }
@media (max-width: 860px) { .aud-grid { grid-template-columns: 1fr; } }

/* KPI cards */
.kpi-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.kpi-card {
  background: var(--parchment); border-radius: var(--r-md); padding: 28px 22px; text-align: center;
  display: flex; flex-direction: column; gap: 8px;
}
.kpi-num { font-family: "Google Sans", sans-serif; font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: var(--primary); line-height: 1; }
.kpi-label { font-size: 14px; color: var(--ink-80); }
@media (max-width: 720px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }

/* portfolio carousels */
.pf-cat { padding-block: clamp(26px, 4vw, 40px); }
.pf-cat-head { margin-bottom: 26px; text-align: center; perspective: 700px; }
.pf-cat-note { margin: 6px 0 0; color: var(--ink-48); font-size: 16px; }
.pf-cat-emblem {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; margin: 0 auto 16px; line-height: 1; color: var(--primary);
  border-radius: 24px;
  background: linear-gradient(150deg, #ffffff 0%, #fae3e8 100%);
  box-shadow: 0 14px 30px rgba(35,45,206,.16), inset 0 1px 0 rgba(255,255,255,.9);
  transform-style: preserve-3d;
  animation: emblem-3d 5s ease-in-out infinite;
}
@keyframes emblem-3d {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); box-shadow: 0 14px 30px rgba(35,45,206,.16), inset 0 1px 0 rgba(255,255,255,.9); }
  25% { transform: translateY(-9px) rotateX(8deg) rotateY(20deg); }
  50% { transform: translateY(0) rotateX(0deg) rotateY(0deg); box-shadow: 0 8px 18px rgba(35,45,206,.12), inset 0 1px 0 rgba(255,255,255,.9); }
  75% { transform: translateY(-9px) rotateX(-8deg) rotateY(-20deg); }
}
.pf-row { position: relative; }
.pf-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 14px; scrollbar-width: none; -ms-overflow-style: none;
}
.pf-track::-webkit-scrollbar { display: none; }
.pf-card {
  flex: 0 0 auto; width: 220px; scroll-snap-align: start;
  border-radius: var(--r-md); overflow: hidden; background: var(--parchment);
  box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease;
}
.pf-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-product); }
.pf-card-media { position: relative; display: block; aspect-ratio: 9/16; overflow: hidden; }
.pf-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pf-card:hover .pf-card-media img { transform: scale(1.06); }
.pf-card-play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff;
  background: rgba(0,0,0,.42); backdrop-filter: blur(2px); pointer-events: none;
}
@media (max-width: 720px) { .pf-card { width: 180px; } }

/* upload placeholders */
.upload-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.upload-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  min-height: 180px; padding: 28px; text-align: center;
  border: 2px dashed var(--hairline); border-radius: var(--r-md); background: var(--parchment);
  color: var(--ink-80); font-weight: 600;
}
.upload-ph-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--pink-soft); color: var(--primary); font-size: 26px; line-height: 1;
}
.upload-ph-note { font-size: 13px; font-weight: 500; color: var(--ink-48); }
@media (max-width: 720px) { .upload-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   "החנות" — digital products store
   ========================================================================== */
.store-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: clamp(30px, 4vw, 44px);
}
.store-chip {
  border: 1px solid var(--hairline); background: #fff; color: var(--ink-80);
  font-size: 15px; font-weight: 600; padding: 10px 22px; border-radius: var(--r-pill);
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.store-chip:hover { border-color: var(--primary); color: var(--primary); }
.store-chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.store-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px; margin-top: 10px;
}
.store-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.store-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-product); }
.store-card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--parchment); }
.store-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.store-card-body { display: flex; flex-direction: column; gap: 6px; padding: 18px 18px 20px; flex: 1 1 auto; }
.store-card-cat { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--pink-deep); }
.store-card-title { font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.store-card-text { font-size: 15px; line-height: 1.55; color: var(--ink-80); }
.store-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: auto; padding-top: 14px;
}
.store-price { font-size: 20px; font-weight: 700; color: var(--primary); }
.store-price .old { font-size: 15px; font-weight: 500; color: var(--ink-48); text-decoration: line-through; margin-inline-start: 6px; }
.store-card-coupon {
  font-size: 12.5px; font-weight: 700; color: var(--primary);
  background: #f3f4ff; border: 1px dashed var(--primary); border-radius: var(--r-pill); padding: 4px 12px;
}
.store-badge {
  position: absolute; top: 12px; inset-inline-start: 12px; z-index: 2;
  font-size: 13px; font-weight: 800; padding: 6px 14px; border-radius: var(--r-pill);
}
.store-badge-sale { background: var(--pink); color: var(--primary); }
.store-badge-free { background: var(--primary); color: #fff; }
.store-badge-out { background: var(--ink); color: #fff; opacity: .82; }

/* product page additions (on top of the shared pd-* styles) */
.pd-main { position: relative; }
.pd-price-row { margin-bottom: 14px; }
.pd-price-row .store-price { font-size: clamp(26px, 3.4vw, 34px); }
.pd-price-row .store-price .old { font-size: 18px; }
.pd-stock { font-size: 15px; font-weight: 700; color: var(--pink-deep); margin: 0 0 14px; }
.pd-stock-out { color: var(--ink-48); }
.pd-includes { margin: 6px 0 22px; }
.pd-includes h3 { margin-bottom: 10px; font-size: 18px; }
.pd-buy-disabled { opacity: .45; pointer-events: none; }
