/* =========================================================
   DAGAANG — Angielski dla dorosłych
   Premium personal brand: beż + pomarańcz + róż + subtle USA
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Warm grounds */
  --cream:        oklch(0.985 0.010 78);
  --cream-2:      oklch(0.965 0.016 76);
  --sand:         oklch(0.935 0.024 72);
  --sand-deep:    oklch(0.895 0.034 66);

  /* Ink */
  --espresso:     oklch(0.32 0.028 52);
  --espresso-2:   oklch(0.46 0.030 50);
  --muted:        oklch(0.58 0.024 55);

  /* Accents — shared chroma feel, varied hue */
  --orange:       oklch(0.705 0.150 52);
  --orange-deep:  oklch(0.640 0.155 48);
  --orange-soft:  oklch(0.885 0.060 62);
  --rose:         oklch(0.800 0.080 18);
  --rose-deep:    oklch(0.720 0.105 16);
  --rose-soft:    oklch(0.925 0.034 20);

  /* Utility */
  --white:        oklch(0.995 0.004 80);
  --line:         oklch(0.90 0.020 70);
  --glass:        oklch(0.99 0.01 80 / 0.62);

  --shadow-sm: 0 2px 10px -4px oklch(0.45 0.05 50 / 0.18);
  --shadow-md: 0 18px 40px -22px oklch(0.45 0.08 50 / 0.32);
  --shadow-lg: 0 40px 90px -40px oklch(0.45 0.09 48 / 0.40);
  --shadow-glow: 0 24px 60px -28px oklch(0.70 0.15 52 / 0.45);

  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 32px;
  --r-xl: 40px;

  --container: 1200px;
  --container-wide: 1320px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Background atmosphere ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 12% 8%, oklch(0.91 0.035 60 / 0.4), transparent 70%),
    radial-gradient(58% 48% at 92% 16%, oklch(0.90 0.045 18 / 0.42), transparent 70%),
    radial-gradient(55% 50% at 50% 108%, oklch(0.91 0.04 22 / 0.38), transparent 70%),
    var(--cream);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}
.section {
  padding-block: clamp(72px, 9vw, 132px);
  position: relative;
}
.center { text-align: center; }
.stack-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: oklch(0.97 0.03 60 / 0.8);
  border: 1px solid oklch(0.86 0.05 58 / 0.8);
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .star { color: var(--rose-deep); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--espresso);
  text-wrap: pretty;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 600; }

.section-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head .lead {
  margin-top: 22px;
  font-size: 1.18rem;
  color: var(--espresso-2);
  text-wrap: pretty;
}
.serif-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 30px 70px -26px oklch(0.70 0.15 52 / 0.6); }
.btn-ghost {
  background: oklch(0.99 0.01 80 / 0.7);
  color: var(--espresso);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange-deep); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid oklch(0.93 0.02 70 / 0.9);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: oklch(0.85 0.06 58 / 0.9);
}
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid oklch(1 0 0 / 0.6);
}

/* Icon chips */
.icon-chip {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--orange-soft), var(--rose-soft));
  color: var(--orange-deep);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.6);
  flex-shrink: 0;
}
.icon-chip svg { width: 26px; height: 26px; }

/* USA stripe motif */
.stripes {
  height: 6px;
  border-radius: 100px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0 22px,
    transparent 22px 30px,
    var(--rose) 30px 52px,
    transparent 52px 60px
  );
  opacity: 0.8;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding-block: 18px;
}
.nav.scrolled {
  background: oklch(0.99 0.01 80 / 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 oklch(0.88 0.03 70 / 0.7), 0 10px 34px -22px oklch(0.45 0.06 50 / 0.4);
  padding-block: 10px;
}
.nav-inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--espresso);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--rose-deep));
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 1.05rem;
  box-shadow: var(--shadow-glow);
}
.brand-logo img {
  height: 46px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
.nav.scrolled .brand-logo img { height: 38px; }
.footer-logo img { height: 44px; }
@media (max-width: 720px) {
  .brand-logo img { height: 34px; }
  .nav.scrolled .brand-logo img { height: 30px; }
  .nav-inner { padding-inline: 16px; gap: 10px; }
}
@media (max-width: 480px) {
  .brand-logo img { height: 28px; }
  .nav.scrolled .brand-logo img { height: 26px; }
  .nav-inner { padding-inline: 12px; gap: 8px; }
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  background: oklch(0.99 0.01 80 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.6);
  backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.nav-links a {
  color: var(--espresso-2);
  padding: 9px 17px;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange-deep); background: oklch(0.95 0.035 58 / 0.85); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn-primary { padding: 14px 26px; font-size: 0.96rem; }
.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 70px);
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin-top: 26px; }
.hero h1 .hl {
  color: var(--orange-deep);
  font-style: italic;
}
.hero .sub {
  margin-top: 26px;
  font-size: 1.22rem;
  color: var(--espresso-2);
  max-width: 540px;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--espresso-2);
  background: oklch(0.99 0.008 80 / 0.75);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.tag:nth-child(2n) .dot { background: var(--rose-deep); }

/* Hero portrait composition */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-stack {
  width: min(100%, 440px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stack .portrait-frame { width: 100%; }
.hero-logo {
  width: 94%;
  height: auto;
  margin-top: 22px;
  display: block;
  filter: drop-shadow(0 14px 26px oklch(0.45 0.06 40 / 0.18));
}
.portrait-frame {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px var(--r-xl) var(--r-xl);
  padding: 14px;
  background: linear-gradient(160deg, oklch(0.99 0.01 80 / 0.9), oklch(0.95 0.03 60 / 0.7));
  border: 1px solid oklch(1 0 0 / 0.7);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.portrait-frame image-slot {
  width: 100%;
  height: 100%;
  border-radius: 210px 210px 28px 28px;
  overflow: hidden;
}
.portrait-frame .portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 210px 210px 28px 28px;
}
/* Pulsująca otoczka w barwach flagi USA */
.portrait-frame { animation: usaHalo 3.2s ease-in-out infinite; }
@keyframes usaHalo {
  0%, 100% {
    box-shadow: var(--shadow-lg),
      0 0 0 2px rgba(255,255,255,0.35),
      0 0 16px 3px rgba(60,59,110,0.28),
      0 0 30px 9px rgba(178,34,52,0.22);
  }
  50% {
    box-shadow: var(--shadow-lg),
      0 0 0 5px rgba(255,255,255,0.7),
      0 0 30px 9px rgba(60,59,110,0.55),
      0 0 56px 18px rgba(178,34,52,0.45);
  }
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}
.hero-blob.b1 { width: 220px; height: 220px; background: oklch(0.86 0.08 60 / 0.55); top: -30px; right: -20px; }
.hero-blob.b2 { width: 180px; height: 180px; background: oklch(0.88 0.06 18 / 0.5); bottom: -10px; left: -30px; }

.float-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid oklch(1 0 0 / 0.7);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
}
.float-card .fc-icon {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
}
.float-card .fc-icon svg { width: 20px; height: 20px; }
.float-card.fc1 { top: 8%; left: -8%; animation: floaty 6s ease-in-out infinite; }
.float-card.fc2 { bottom: 12%; right: -10%; animation: floaty 7s ease-in-out infinite 0.6s; }
.float-card .fc-sub { font-weight: 500; color: var(--muted); font-size: 0.76rem; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* small star field */
.star-deco { position: absolute; color: var(--rose-deep); opacity: 0.5; pointer-events: none; }

/* =========================================================
   MARQUEE / value strip
   ========================================================= */
.value-strip {
  border-block: 1px solid var(--line);
  background: oklch(0.97 0.02 64 / 0.5);
  padding-block: 22px;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: scrollx 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--espresso-2);
  align-items: center;
}
.marquee .sep { color: var(--orange); font-style: normal; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =========================================================
   Generic grids
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Problem / audience tiles */
.tile {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.tile h3 { font-size: 1.22rem; }
.tile p { margin-top: 6px; color: var(--muted); font-size: 0.98rem; }

/* Problem section special layout */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.problem-list { display: grid; gap: 16px; }
.problem-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 1.02rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.problem-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.problem-item .q {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose-soft), var(--orange-soft));
  color: var(--orange-deep); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
}

/* =========================================================
   OFFER / packages
   ========================================================= */
.packages { align-items: stretch; }
.package {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.package .pkg-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--orange);
}
.package h3 { margin-top: 8px; }
.package p { margin-top: 14px; color: var(--espresso-2); }
.package ul { margin-top: 22px; display: grid; gap: 12px; }
.package li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 0.96rem; color: var(--espresso-2);
}
.package li svg { width: 19px; height: 19px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.pkg-price { margin-top: 24px; display: flex; justify-content: flex-end; }
.package .pkg-cta { margin-top: auto; padding-top: 22px; }
.package.featured {
  background: linear-gradient(165deg, var(--espresso), oklch(0.27 0.03 48));
  color: var(--cream);
  border-color: transparent;
  transform: scale(1.03);
}
.package.featured h3, .package.featured .pkg-no { color: var(--orange-soft); }
.package.featured p, .package.featured li { color: oklch(0.9 0.01 70); }
.package.featured li svg { color: var(--orange); }
.featured-badge {
  position: absolute; top: 22px; right: 22px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--orange); color: var(--white);
  padding: 6px 13px; border-radius: 100px;
}

/* =========================================================
   METHOD steps
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  text-align: left;
  position: relative;
  padding-top: 40px;
}
.step .num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--orange);
  opacity: 0.85;
}
.step h3 { margin-top: 10px; font-size: 1.25rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: 0.96rem; }
.step::after {
  content: "";
  position: absolute;
  top: 60px; right: -11px;
  width: 22px; height: 2px;
  background: var(--line);
}
.step:nth-child(3n)::after { display: none; }

/* =========================================================
   USA section
   ========================================================= */
.usa {
  background: linear-gradient(180deg, transparent, oklch(0.96 0.025 62 / 0.6) 40%, transparent);
}
.usa-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.usa-visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 520px;
}
.usa-disc {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(94%, 420px);
  height: 90%;
  border-radius: 220px 220px 40px 40px;
  background: linear-gradient(160deg, oklch(0.95 0.05 60), oklch(0.92 0.07 18));
  box-shadow: var(--shadow-lg);
  animation: usaDiscPulse 7s ease-in-out infinite;
}
.usa-disc::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(60% 40% at 30% 16%, oklch(1 0 0 / 0.45), transparent 70%),
    repeating-linear-gradient(90deg, oklch(1 0 0 / 0.10) 0 14px, transparent 14px 28px);
  mix-blend-mode: soft-light;
}
.usa-ring {
  position: absolute;
  left: 50%; bottom: 3%;
  transform: translateX(-50%);
  width: min(100%, 452px);
  height: 93%;
  border: 1.5px dashed oklch(0.74 0.10 30 / 0.5);
  border-radius: 230px 230px 48px 48px;
  pointer-events: none;
  animation: usaRingSpin 26s linear infinite;
  transform-origin: center 70%;
}
.usa-blob { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; z-index: 0; }
.usa-blob.ub1 { width: 200px; height: 200px; background: oklch(0.85 0.12 52 / 0.55); top: 4%; right: 2%; animation: floaty 8s ease-in-out infinite; }
.usa-blob.ub2 { width: 170px; height: 170px; background: oklch(0.84 0.10 18 / 0.5); bottom: 6%; left: 0; animation: floaty 9s ease-in-out infinite 0.8s; }
.usa-deco-star { position: absolute; color: var(--rose-deep); z-index: 3; }
.usa-deco-star.us1 { width: 26px; height: 26px; top: 6%; right: 10%; opacity: 0.65; animation: floaty 6s ease-in-out infinite; }
.usa-deco-star.us2 { width: 16px; height: 16px; bottom: 16%; left: 8%; opacity: 0.45; animation: floaty 7s ease-in-out infinite 0.5s; }
.usa-cutout {
  position: relative;
  z-index: 2;
  width: min(96%, 400px);
  height: auto;
  filter: drop-shadow(0 30px 42px oklch(0.4 0.06 40 / 0.34));
  animation: usaFloat 6.5s ease-in-out infinite;
}
.usa-float {
  position: absolute;
  bottom: 18%;
  right: -4%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite 0.4s;
}
.usa-float .uf-ic {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--rose-deep));
  color: var(--white);
}
.usa-float .uf-ic svg { width: 19px; height: 19px; }
.usa-float b { font-size: 0.9rem; color: var(--espresso); display: block; }
.usa-float .uf-sub { font-size: 0.76rem; color: var(--muted); }
@keyframes usaFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(-1deg); } }
@keyframes usaDiscPulse {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 6px oklch(0.85 0.10 30 / 0.18); }
}
@keyframes usaRingSpin { 0% { transform: translateX(-50%) rotate(-2deg); } 50% { transform: translateX(-50%) rotate(2deg); } 100% { transform: translateX(-50%) rotate(-2deg); } }
@media (prefers-reduced-motion: reduce) {
  .usa-cutout, .usa-disc, .usa-ring, .usa-blob, .usa-deco-star, .usa-float { animation: none; }
}
/* American English — what you'll learn */
.usa-learn { margin-top: 30px; }
.usa-learn-label {
  display: inline-block;
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 18px;
}
.usa-learn-list { display: grid; gap: 14px; }
.usa-learn-list li {
  display: flex; gap: 13px; align-items: flex-start;
  font-size: 1.04rem; font-weight: 600; color: var(--espresso);
  line-height: 1.45;
}
.usa-learn-list li svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  color: var(--orange-deep);
}

/* American English — prestige seal plaque */
.usa-seal-row {
  display: flex; align-items: center; gap: 26px;
  margin-top: 34px; flex-wrap: wrap;
  padding: 24px 30px;
  border-radius: var(--r-md);
  background:
    radial-gradient(130% 100% at 100% 0%, oklch(0.42 0.06 44 / 0.85), transparent 58%),
    linear-gradient(165deg, var(--espresso), oklch(0.255 0.03 44));
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.usa-seal-row::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 42%, oklch(1 0 0 / 0.06) 50%, transparent 58%);
  pointer-events: none;
}
.usa-seal { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.usa-seal-ring {
  width: 100%; height: 100%; color: var(--orange-soft);
  animation: sealSpin 26s linear infinite;
}
.usa-seal-ring text {
  fill: var(--orange-soft);
  font-family: var(--font-body); font-weight: 700;
  font-size: 8.4px; letter-spacing: 1.6px;
}
.usa-seal-core { position: absolute; inset: 0; display: grid; place-items: center; }
.usa-seal-core svg { width: 34px; height: 34px; color: var(--orange); }
@keyframes sealSpin { to { transform: rotate(360deg); } }
.usa-seal-quote { position: relative; flex: 1; min-width: 200px; }
.usa-seal-quote b {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-style: italic; font-weight: 600;
  color: var(--cream); line-height: 1.15;
}
.usa-seal-quote span {
  display: block; margin-top: 8px;
  font-size: 0.96rem; color: oklch(0.84 0.03 70); line-height: 1.45;
}
@media (prefers-reduced-motion: reduce) {
  .usa-seal-ring { animation: none; }
}

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid oklch(0.9 0.025 70 / 0.9);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  z-index: 0;
}
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(150deg, var(--orange), var(--rose-deep));
  transition: opacity 0.45s var(--ease);
}
.benefit:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit:hover::before { opacity: 1; }
.benefit .icon-chip { margin-bottom: 16px; transition: background 0.4s, color 0.4s; }
.benefit h3 { font-size: 1.18rem; transition: color 0.4s; }
.benefit p { margin-top: 8px; color: var(--muted); font-size: 0.96rem; transition: color 0.4s; }
.benefit:hover h3 { color: var(--white); }
.benefit:hover p { color: oklch(0.96 0.01 70); }
.benefit:hover .icon-chip { background: oklch(1 0 0 / 0.2); color: var(--white); }
.b-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sand-deep);
  transition: color 0.4s;
}
.benefit:hover .b-num { color: oklch(1 0 0 / 0.6); }

/* Dark feature benefit */
.b-feature {
  background:
    radial-gradient(120% 90% at 100% 0%, oklch(0.40 0.045 40 / 0.9), transparent 60%),
    linear-gradient(165deg, var(--espresso), oklch(0.255 0.03 44));
  border-color: transparent;
  color: var(--cream);
}
.b-feature::before { display: none; }
.b-feature h3 { color: var(--white); font-size: 1.4rem; }
.b-feature p { color: oklch(0.88 0.012 70); }
.b-feature .icon-chip { background: oklch(1 0 0 / 0.16); color: var(--orange-soft); }
.b-feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.bf-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: inherit; }
.bf-star { position: absolute; width: 160px; height: 160px; top: -34px; right: -30px; color: var(--orange); opacity: 0.1; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.about-visual {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
}
.about-visual .portrait-frame {
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
}
.about-visual .portrait-frame image-slot { border-radius: 28px; }

/* Floating transparent cutout in O MNIE */
.about-cutout-wrap {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 540px;
}
.about-disc {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(94%, 420px);
  height: 86%;
  border-radius: 220px 220px 40px 40px;
  background: linear-gradient(165deg, oklch(0.93 0.045 60), oklch(0.92 0.05 22));
  box-shadow: var(--shadow-lg);
}
.about-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(60% 40% at 30% 18%, oklch(1 0 0 / 0.45), transparent 70%),
    repeating-linear-gradient(90deg, oklch(1 0 0 / 0.10) 0 14px, transparent 14px 28px);
  mix-blend-mode: soft-light;
}
.about-ring {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: min(100%, 460px);
  height: 92%;
  border: 1.5px dashed oklch(0.78 0.08 50 / 0.5);
  border-radius: 230px 230px 48px 48px;
  pointer-events: none;
}
.about-cutout {
  position: relative;
  z-index: 2;
  width: min(96%, 430px);
  height: auto;
  filter: drop-shadow(0 30px 40px oklch(0.4 0.06 50 / 0.32));
}
.about-cutout-wrap .star-deco { z-index: 3; opacity: 0.7; }
.about-copy p { margin-top: 20px; color: var(--espresso-2); font-size: 1.1rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.about-stat {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: var(--r-sm);
  background: oklch(0.99 0.008 80 / 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-stat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--orange), var(--rose-deep));
}
.as-ic {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: oklch(0.93 0.05 60 / 0.55); color: var(--orange-deep);
  margin-bottom: 16px;
}
.as-ic svg { width: 22px; height: 22px; }
.about-stat .n {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 600;
  color: var(--orange-deep);
  line-height: 1;
}
.about-stat .l { font-size: 0.94rem; color: var(--espresso-2); margin-top: 8px; font-weight: 500; }
.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--espresso);
  margin-top: 28px;
}

/* =========================================================
   AUTORSKA METODA — animated cycle
   ========================================================= */
.method-cycle .section-head { margin-bottom: 8px; }

/* --- Desktop circle --- */
.cycle {
  position: relative;
  width: min(560px, 86vw);
  aspect-ratio: 1;
  margin: 56px auto 0;
}
.cycle-ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cycle-track { fill: none; stroke: var(--sand-deep); stroke-width: 2; opacity: 0.55; }
.cycle-flow {
  fill: none; stroke: url(#cycleGrad); stroke-width: 3;
  stroke-linecap: round; stroke-dasharray: 2 18;
  opacity: 0.6;
}
.cycle-comet {
  fill: none; stroke: url(#cycleGrad); stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 70 872;
  transform-origin: 200px 200px;
  animation: cycleSpin 7s linear infinite;
  filter: drop-shadow(0 0 6px oklch(0.70 0.15 52 / 0.5));
}
@keyframes cycleDrift { to { stroke-dashoffset: -942; } }
@keyframes cycleSpin { to { transform: rotate(360deg); } }

/* center hub */
.cycle-hub {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 43%; aspect-ratio: 1; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8% 9%;
  background:
    radial-gradient(120% 120% at 50% 0%, oklch(0.99 0.012 80 / 0.95), oklch(0.96 0.02 74 / 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md), inset 0 1px 0 oklch(1 0 0 / 0.7);
}
.cycle-hub-step {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.cycle-hub-step b { color: var(--orange-deep); }
.cycle-hub-title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 600;
  color: var(--espresso); line-height: 1.05; margin-top: 6px;
}
.cycle-hub-desc {
  margin-top: 10px; font-size: clamp(0.82rem, 1.5vw, 0.96rem);
  color: var(--espresso-2); line-height: 1.45; text-wrap: pretty;
}
.cycle-hub.swap .cycle-hub-title,
.cycle-hub.swap .cycle-hub-desc,
.cycle-hub.swap .cycle-hub-step { animation: hubFade 0.5s var(--ease); }
@keyframes hubFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* nodes */
.cycle-node {
  position: absolute; transform: translate(-50%, -50%);
  width: clamp(96px, 19%, 116px);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; color: var(--espresso);
  -webkit-tap-highlight-color: transparent;
}
.cycle-node.n1 { left: 50%; top: 12.5%; }
.cycle-node.n2 { left: 87.5%; top: 50%; }
.cycle-node.n3 { left: 50%; top: 87.5%; }
.cycle-node.n4 { left: 12.5%; top: 50%; }
.cn-ic {
  display: grid; place-items: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--line);
  color: var(--orange-deep); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cn-ic svg { width: 32px; height: 32px; }
.cn-title {
  font-weight: 700; font-size: 1.02rem;
  transition: color 0.4s var(--ease);
}
.cycle-node:hover .cn-ic { transform: scale(1.06); border-color: oklch(0.85 0.06 58 / 0.9); }
.cycle-node.active .cn-ic {
  background: linear-gradient(150deg, var(--orange), var(--rose-deep));
  color: var(--white); border-color: transparent;
  transform: scale(1.12);
  box-shadow: var(--shadow-glow);
}
.cycle-node.active .cn-title { color: var(--orange-deep); }

/* --- Shared caption below the circle (all sizes) --- */
.cycle-caption {
  max-width: 540px; margin: 30px auto 0; text-align: center;
  font-size: 1.06rem; color: var(--espresso-2); line-height: 1.5;
  text-wrap: pretty; min-height: 2.6em;
}
.cycle-caption.swap { animation: hubFade 0.5s var(--ease); }

/* --- Responsive circle (keep the wheel on mobile) --- */
@media (max-width: 600px) {
  .cycle { width: min(420px, 90vw); margin-top: 40px; }
  .cycle-node { width: clamp(78px, 24%, 102px); gap: 7px; }
  .cn-ic { width: 54px; height: 54px; }
  .cn-ic svg { width: 26px; height: 26px; }
  .cn-title { font-size: 0.82rem; }
  .cycle-node.active .cn-ic { transform: scale(1.1); }
  .cycle-hub { width: 41%; padding: 6% 5%; }
  .cycle-hub-step { font-size: 0.62rem; letter-spacing: 0.12em; }
  .cycle-hub-title { font-size: clamp(1.05rem, 5vw, 1.5rem); }
  .cycle-caption { font-size: 0.98rem; margin-top: 24px; }
}
@media (max-width: 380px) {
  .cn-ic { width: 48px; height: 48px; }
  .cn-ic svg { width: 23px; height: 23px; }
  .cn-title { font-size: 0.76rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cycle-flow, .cycle-comet { animation: none; }
  .cycle-comet { opacity: 0; }
  .cycle-hub.swap .cycle-hub-title,
  .cycle-hub.swap .cycle-hub-step,
  .cycle-caption.swap { animation: none; }
}

/* =========================================================
   WIDEO — mini-lekcje (reels)
   ========================================================= */
.reels { position: relative; overflow: hidden; }
.reels-blob {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: 0;
}
.reels-blob.rb1 { width: 380px; height: 380px; top: -80px; left: -120px;
  background: radial-gradient(circle, oklch(0.88 0.06 60 / 0.5), transparent 70%); }
.reels-blob.rb2 { width: 420px; height: 420px; bottom: -140px; right: -120px;
  background: radial-gradient(circle, oklch(0.90 0.05 22 / 0.45), transparent 70%); }
.reels .container { position: relative; z-index: 1; }
.reels-wrap {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 40px; margin-top: 52px;
}
.reel-card { width: min(320px, 84vw); }
.reel-frame {
  position: relative; aspect-ratio: 9 / 16;
  border-radius: 26px; overflow: hidden;
  background: var(--espresso);
  border: 1px solid oklch(1 0 0 / 0.5);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.reel-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.reel-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 1;
  transition: opacity 0.3s var(--ease);
}
.reel-frame.playing .reel-poster { opacity: 0; pointer-events: none; }
.reel-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--espresso);
  background: oklch(0.99 0.01 80 / 0.82); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: opacity 0.3s var(--ease);
}
.reel-badge .star { color: var(--orange-deep); font-size: 0.7rem; }
.reel-play {
  position: absolute; inset: 0; margin: auto;
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(0.99 0.01 80 / 0.86); backdrop-filter: blur(10px);
  border: 1px solid oklch(1 0 0 / 0.7);
  color: var(--orange-deep); cursor: pointer; z-index: 3;
  box-shadow: 0 12px 34px -12px oklch(0.45 0.08 50 / 0.5);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.reel-play svg { width: 30px; height: 30px; margin-left: 3px; }
.reel-frame:hover .reel-play { transform: scale(1.08); background: var(--white); }
.reel-frame::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, oklch(0.2 0.02 50 / 0.18), transparent 30%, transparent 72%, oklch(0.2 0.02 50 / 0.34));
  transition: opacity 0.3s var(--ease);
}
.reel-frame.playing .reel-play,
.reel-frame.playing .reel-badge { opacity: 0; pointer-events: none; }
.reel-frame.playing::after { opacity: 0; }
.reel-cap { margin-top: 20px; text-align: center; }
.reel-cap h3 { font-size: 1.22rem; }
.reel-cap p { margin-top: 8px; color: var(--espresso-2); font-size: 0.96rem; line-height: 1.5; text-wrap: pretty; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  text-align: left;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--orange-soft);
  height: 30px;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.45;
}
.testimonial .author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-body);
}
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-soft), var(--rose-soft));
  display: grid; place-items: center;
  font-weight: 700; color: var(--orange-deep);
  font-style: normal;
}
.testimonial .author .name { font-weight: 700; font-size: 0.96rem; }
.testimonial .author .role { font-size: 0.82rem; color: var(--muted); }
.stars-row { display: flex; gap: 3px; color: var(--orange); margin-bottom: 14px; }
.stars-row svg { width: 18px; height: 18px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: oklch(0.85 0.06 58 / 0.8); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  font-weight: 700;
  font-size: 1.12rem;
  cursor: pointer;
  list-style: none;
  text-align: left;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .plus {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid; place-items: center;
  position: relative;
  transition: transform 0.35s var(--ease), background 0.3s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute;
  background: var(--orange-deep);
  border-radius: 2px;
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; transition: transform 0.35s var(--ease); }
.faq-item[open] .faq-q .plus { transform: rotate(180deg); background: var(--orange); }
.faq-item[open] .faq-q .plus::before,
.faq-item[open] .faq-q .plus::after { background: var(--white); }
.faq-item[open] .faq-q .plus::after { transform: rotate(90deg); }
.faq-a {
  padding: 0 28px 26px;
  color: var(--espresso-2);
  font-size: 1.04rem;
  text-wrap: pretty;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  position: relative;
}
.contact-card {
  background: linear-gradient(165deg, oklch(0.985 0.012 76), oklch(0.95 0.03 60 / 0.9));
  border: 1px solid oklch(1 0 0 / 0.7);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 4vw, 60px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-info { text-align: left; }
.contact-info h2 { margin-top: 18px; }
.contact-info p { margin-top: 18px; color: var(--espresso-2); font-size: 1.1rem; }
.contact-points { margin-top: 28px; display: grid; gap: 16px; }
.contact-point { display: flex; align-items: center; gap: 14px; font-weight: 600; min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.contact-point .icon-chip { width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0; }
.contact-point .icon-chip svg { width: 22px; height: 22px; }

form { display: grid; gap: 16px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--espresso-2); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--espresso);
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px oklch(0.7 0.15 52 / 0.15);
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: oklch(0.92 0.07 145 / 0.5);
  border: 1px solid oklch(0.78 0.1 145 / 0.6);
  color: oklch(0.42 0.1 150);
  font-weight: 600;
}
.form-success.show { display: flex; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding-block: 64px 32px;
  border-top: 1px solid var(--line);
  background: oklch(0.97 0.018 66 / 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  text-align: left;
}
.footer-brand p { margin-top: 16px; color: var(--espresso-2); font-size: 0.96rem; max-width: 320px; }
.footer h3 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--espresso); font-weight: 800; margin-bottom: 18px;
}
.footer ul { display: grid; gap: 11px; }
.footer a { color: var(--espresso-2); font-size: 0.95rem; transition: color 0.25s; }
.footer a:hover { color: var(--orange-deep); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line);
  color: var(--espresso-2); transition: all 0.25s;
}
.socials a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: var(--espresso-2); font-size: 0.86rem;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   ANIMATED USA AMBIENT BACKGROUND
   ========================================================= */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.amb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.amb-blob-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, oklch(0.88 0.075 55 / 0.45), transparent 70%);
  top: -160px; left: -130px;
  animation: ambFloat1 26s ease-in-out infinite;
}
.amb-blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, oklch(0.88 0.065 16 / 0.42), transparent 70%);
  top: 26%; right: -180px;
  animation: ambFloat2 32s ease-in-out infinite;
}
.amb-blob-3 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, oklch(0.90 0.055 32 / 0.40), transparent 70%);
  bottom: -180px; left: 32%;
  animation: ambFloat3 30s ease-in-out infinite;
}
@keyframes ambFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,50px) scale(1.14); } }
@keyframes ambFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,70px) scale(1.1); } }
@keyframes ambFloat3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-60px) scale(1.16); } }

.amb-stars {
  position: absolute;
  inset: -80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' viewBox='0 0 230 230'%3E%3Cpath transform='translate(24 34)' fill='%23DF9460' d='M12 0l2.4 6.9H22l-6 4.4 2.3 7-6.3-4.5L5.7 18l2.3-7-6-4.4h7.6z'/%3E%3Cpath transform='translate(158 126) scale(0.8)' fill='%23E29BA8' d='M12 0l2.4 6.9H22l-6 4.4 2.3 7-6.3-4.5L5.7 18l2.3-7-6-4.4h7.6z'/%3E%3Cpath transform='translate(96 180) scale(0.6)' fill='%23E8B07E' d='M12 0l2.4 6.9H22l-6 4.4 2.3 7-6.3-4.5L5.7 18l2.3-7-6-4.4h7.6z'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.18;
}
.amb-stars-2 {
  background-size: 380px 380px;
  opacity: 0.11;
}
@keyframes starsDrift { from { background-position: 0 0; } to { background-position: 230px 230px; } }
@keyframes starsDrift2 { from { background-position: 0 0; } to { background-position: -360px 280px; } }

.amb-stripes {
  position: absolute;
  inset: -20% -10%;
  background: repeating-linear-gradient(
    118deg,
    transparent 0 100px,
    oklch(0.78 0.10 48 / 0.022) 100px 104px,
    transparent 104px 130px,
    oklch(0.74 0.10 18 / 0.022) 130px 134px,
    transparent 134px 210px
  );
}
@keyframes stripesDrift { from { background-position: 0 0; } to { background-position: 360px 0; } }

/* =========================================================
   METHOD — redesigned cards
   ========================================================= */
.method-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.method-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-md);
  text-align: left;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.method-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--rose-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.method-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: oklch(0.84 0.07 24 / 0.7); }
.method-card:hover::after { transform: scaleX(1); }
.method-badge {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--rose-deep);
  opacity: 0.85;
}
.method-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--orange-soft), var(--rose-soft));
  color: var(--orange-deep);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.6);
  margin-bottom: 18px;
}
.method-icon svg { width: 28px; height: 28px; }
.method-card h3 { font-size: 1.2rem; }
.method-card p { margin-top: 8px; color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   COURSES / SKLEP — premium bento
   ========================================================= */
.courses-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.course, .course-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
  background: var(--white);
  border: 1px solid oklch(0.88 0.035 70 / 0.85);
  border-radius: var(--r-lg);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.course::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--rose-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.course:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: oklch(0.82 0.08 50 / 0.55); }
.course:hover::before { transform: scaleX(1); }

.course-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--orange-soft), var(--rose-soft));
  color: var(--orange-deep);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.6);
  margin-bottom: 18px;
}
.course-icon svg { width: 26px; height: 26px; }
.course-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.course h3 { margin-top: 10px; font-size: 1.38rem; }
.course p { margin-top: 12px; color: var(--espresso-2); font-size: 0.98rem; }
.course-foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }

/* ---- Price tag shape (used in packages, courses, feature) ---- */
.price-tag {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  line-height: 1;
  padding: 9px 16px 9px 24px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  box-shadow: 0 12px 24px -12px oklch(0.6 0.12 16 / 0.7);
  flex-shrink: 0;
}
.price-tag::before {
  content: "";
  position: absolute;
  left: 7px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: oklch(0.45 0.10 16 / 0.55);
}
.price-tag .old { font-size: 0.7rem; font-weight: 600; text-decoration: line-through; opacity: 0.85; }
.price-tag .now { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.price-tag.tag-lg { padding: 12px 22px 12px 30px; }
.price-tag.tag-lg .old { font-size: 0.82rem; }
.price-tag.tag-lg .now { font-size: 1.8rem; }
.course-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--orange-deep);
  position: relative;
}
.course-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.course-link:hover::after { transform: scaleX(1); }
.course-link svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.course-link:hover svg { transform: translateX(5px); }

/* Flagship feature card */
.course-feature {
  grid-column: 1;
  grid-row: 1 / span 2;
  background:
    radial-gradient(120% 80% at 100% 0%, oklch(0.40 0.045 40 / 0.9), transparent 60%),
    linear-gradient(165deg, var(--espresso), oklch(0.255 0.03 44));
  border-color: transparent;
  color: var(--cream);
  padding: 40px 38px 36px;
  box-shadow: var(--shadow-lg);
}
.cf-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-soft);
  position: relative; z-index: 2;
}
.cf-level {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px; position: relative; z-index: 2;
  padding: 7px 15px 7px 12px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  color: oklch(0.92 0.012 70);
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(0.86 0.06 58 / 0.45);
}
.cf-level-dots { display: inline-flex; align-items: center; gap: 4px; }
.cf-level-dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
}
.cf-level-dots i:nth-child(2) { opacity: 0.7; }
.cf-level-dots i:nth-child(3) { opacity: 0.42; }
.course-feature h3 { margin-top: 12px; font-size: clamp(1.9rem, 2.6vw, 2.4rem); color: var(--white); position: relative; z-index: 2; }
.course-feature p { margin-top: 16px; color: oklch(0.88 0.012 70); font-size: 1.02rem; position: relative; z-index: 2; }
.cf-list { margin-top: 24px; display: grid; gap: 13px; position: relative; z-index: 2; }
.cf-list li { display: flex; gap: 11px; align-items: flex-start; color: oklch(0.9 0.012 70); font-size: 0.97rem; }
.cf-list svg { width: 19px; height: 19px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.cf-foot { margin-top: auto; padding-top: 28px; position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cf-ribbon {
  position: absolute;
  top: 22px; right: -46px;
  background: linear-gradient(135deg, var(--orange), var(--rose-deep));
  color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 54px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.cf-deco { position: absolute; inset: 0; pointer-events: none; }
.cf-star { position: absolute; }
.cf-star.s1 { width: 150px; height: 150px; top: -30px; right: -20px; color: var(--orange); opacity: 0.08; }
.cf-star.s2 { width: 34px; height: 34px; bottom: 120px; right: 30px; color: var(--rose-soft); opacity: 0.22; }
.cf-star.s3 { width: 18px; height: 18px; bottom: 168px; right: 78px; color: var(--orange-soft); opacity: 0.3; }

/* CTA banner — full width */
.course-cta-card {
  grid-column: 1 / -1;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% -10%, oklch(0.97 0.04 30 / 0.9), transparent 70%),
    linear-gradient(120deg, oklch(0.96 0.045 30), oklch(0.945 0.06 16));
  border-color: transparent;
  padding: 38px 30px;
}
.course-cta-card .course-icon { margin: 0 auto 16px; background: linear-gradient(145deg, var(--orange), var(--rose-deep)); color: var(--white); }
.course-cta-card .course-kicker { color: var(--orange-deep); }
.course-cta-card h3 { margin-top: 6px; }
.course-cta-card p { margin-top: 10px; margin-inline: auto; max-width: 560px; }
.course-cta-card .course-foot { margin-top: 18px; padding-top: 0; }
.course-cta-card .course-link.strong { font-size: 1.06rem; }

/* =========================================================
   SOCIAL / NEWSLETTER
   ========================================================= */
@property --sa-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.social-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 60px);
  background:
    radial-gradient(90% 120% at 8% 0%, oklch(0.975 0.03 60 / 0.9), transparent 55%),
    linear-gradient(150deg, oklch(0.965 0.04 28), oklch(0.935 0.06 14));
  border: 1px solid oklch(1 0 0 / 0.65);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}

/* Animowana różowa linia wokoło całego prostokąta */
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from var(--sa-angle),
    oklch(0.82 0.07 18 / 0.30) 0deg,
    oklch(0.82 0.07 18 / 0.30) 66deg,
    var(--rose) 84deg, var(--rose-deep) 104deg, var(--rose) 124deg,
    oklch(0.82 0.07 18 / 0.30) 146deg,
    oklch(0.82 0.07 18 / 0.30) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 6;
  animation: saBorder 5s linear infinite;
}
@keyframes saBorder { to { --sa-angle: 360deg; } }

/* Compact social band — heading + buttons only */
.social-card-compact {
  grid-template-columns: 1fr;
  text-align: center;
  padding-block: clamp(44px, 6vw, 72px);
}
.social-inner-compact { text-align: center; display: flex; flex-direction: column; align-items: center; }
.social-card-compact .social-actions { justify-content: center; margin-top: 30px; }
.social-card-compact .social-star.sa { left: auto; right: 8%; }

/* Photo with effects (left) */
.social-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: end center;
  min-height: 460px;
}
.sv-disc {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(96%, 400px);
  height: 92%;
  border-radius: 210px 210px 38px 38px;
  background: linear-gradient(160deg, oklch(0.95 0.05 60), oklch(0.92 0.07 18));
  box-shadow: var(--shadow-lg);
}
.sv-disc::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(60% 40% at 30% 16%, oklch(1 0 0 / 0.45), transparent 70%),
    repeating-linear-gradient(90deg, oklch(1 0 0 / 0.10) 0 14px, transparent 14px 28px);
  mix-blend-mode: soft-light;
}
.sv-ring {
  position: absolute;
  left: 50%; bottom: 4%;
  transform: translateX(-50%);
  width: min(100%, 430px);
  height: 94%;
  border: 1.5px dashed oklch(0.74 0.10 30 / 0.5);
  border-radius: 220px 220px 46px 46px;
  pointer-events: none;
}
.sv-star { position: absolute; top: 4%; right: 8%; width: 26px; height: 26px; color: var(--rose-deep); opacity: 0.6; z-index: 3; }
.social-photo {
  position: relative;
  z-index: 2;
  width: min(98%, 410px);
  height: auto;
  filter: drop-shadow(0 30px 42px oklch(0.4 0.06 40 / 0.34));
}
.sv-badge {
  position: absolute;
  bottom: 16%;
  left: -6%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.sv-badge-ic {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--rose-deep));
  color: var(--white);
}
.sv-badge-ic svg { width: 19px; height: 19px; }
.sv-badge b { font-size: 0.9rem; color: var(--espresso); display: block; }
.sv-badge-sub { font-size: 0.76rem; color: var(--muted); }
.social-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.social-glow.g1 { width: 280px; height: 280px; background: oklch(0.85 0.10 30 / 0.45); top: -90px; right: 18%; }
.social-glow.g2 { width: 240px; height: 240px; background: oklch(0.86 0.09 12 / 0.4); bottom: -80px; left: -40px; }
.social-star { position: absolute; color: var(--rose-deep); pointer-events: none; }
.social-star.sa { width: 22px; height: 22px; top: 36px; left: 46%; opacity: 0.4; }
.social-star.sb { width: 15px; height: 15px; bottom: 40px; left: 30%; opacity: 0.32; }
.social-inner { text-align: left; position: relative; z-index: 2; }
.social-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
}
.social-perks li { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.96rem; color: var(--espresso-2); }
.sp-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--rose-deep)); }
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

/* Buttons + hover profile popovers */
.social-btn { position: relative; display: inline-flex; }
.social-ig {
  background: linear-gradient(135deg, oklch(0.28 0.02 40), oklch(0.16 0.012 35));
  color: var(--white);
  border: 1px solid oklch(1 0 0 / 0.08);
  box-shadow: 0 18px 40px -22px oklch(0.2 0.02 30 / 0.85);
}
.social-ig:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -24px oklch(0.2 0.02 30 / 0.9); }
.social-fb {
  background: linear-gradient(135deg, oklch(0.28 0.02 40), oklch(0.16 0.012 35));
  color: var(--white);
  border: 1px solid oklch(1 0 0 / 0.08);
  box-shadow: 0 18px 40px -22px oklch(0.2 0.02 30 / 0.85);
}
.social-fb:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -24px oklch(0.2 0.02 30 / 0.9); }

.profile-pop {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  width: 268px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom left;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 20;
  text-align: left;
}
.profile-pop::after {
  content: "";
  position: absolute;
  top: 100%; left: 32px;
  border: 8px solid transparent;
  border-top-color: var(--white);
  filter: drop-shadow(0 2px 1px oklch(0.5 0.05 50 / 0.12));
}
.social-btn:hover .profile-pop,
.social-btn:focus-within .profile-pop { opacity: 1; visibility: visible; transform: none; }
.pop-head { display: flex; align-items: center; gap: 12px; }
.pop-avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
}
.pop-avatar svg { width: 24px; height: 24px; }
.pop-avatar.ig { background: linear-gradient(125deg, #F9A03F, #F75274 50%, #C72E9B); }
.pop-avatar.fb { background: #1877F2; }
.pop-id { display: flex; flex-direction: column; line-height: 1.3; }
.pop-id b { font-size: 0.98rem; color: var(--espresso); }
.pop-id span { font-size: 0.82rem; color: var(--muted); }
.pop-cta {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--orange-deep);
}

/* Instagram feed mock */
.ig-mock {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid oklch(0.92 0.02 70 / 0.9);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.ig-mock-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ig-mock-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(125deg, #F9A03F, #F75274 50%, #C72E9B);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ig-mock-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  padding: 5px;
  border: 2px solid var(--white);
}
.ig-mock-meta { display: flex; flex-direction: column; line-height: 1.35; margin-right: auto; }
.ig-mock-meta b { font-size: 0.98rem; color: var(--espresso); }
.ig-mock-meta span { font-size: 0.8rem; color: var(--muted); }
.ig-follow {
  font-size: 0.82rem; font-weight: 700;
  color: var(--white);
  background: #1877F2;
  padding: 8px 16px;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), filter 0.25s;
}
.ig-follow:hover { transform: translateY(-2px); filter: brightness(1.08); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.ig-grid image-slot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--orange-soft), var(--rose-soft));
}
.ig-grid-live { display: block; }
.ig-grid-live .lightwidget-widget { display: block; width: 100%; border: 0; }

/* Facebook page embed (auto feed) */
.fb-embed {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid oklch(0.92 0.02 70 / 0.9);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.fb-embed-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fb-embed-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: #1877F2;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fb-embed-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  padding: 5px;
  border: 2px solid var(--white);
}
.fb-embed-meta { display: flex; flex-direction: column; line-height: 1.35; margin-right: auto; }
.fb-embed-meta b { font-size: 0.98rem; color: var(--espresso); }
.fb-embed-meta span { font-size: 0.8rem; color: var(--muted); }
.fb-like {
  font-size: 0.82rem; font-weight: 700;
  color: var(--white);
  background: #1877F2;
  padding: 8px 16px;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), filter 0.25s;
}
.fb-like:hover { transform: translateY(-2px); filter: brightness(1.08); }
.fb-embed .fb-page { width: 100%; min-height: 720px; }
.fb-embed .fb-page > span,
.fb-embed .fb-page iframe { width: 100% !important; }
.fb-embed .fb-page-fallback {
  display: block;
  padding: 28px 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 640px; margin-inline: auto; }
  .hero .sub { margin-inline: auto; }
  .hero-actions, .hero-tags { justify-content: center; }
  .hero-visual { margin-top: 30px; }
  .problem-grid, .usa-grid, .about-grid, .contact-card { grid-template-columns: 1fr; }
  .grid-3, .steps, .method-track { grid-template-columns: repeat(2, 1fr); }
  .courses-bento { grid-template-columns: repeat(2, 1fr); }
  .course-feature { grid-column: 1 / -1; grid-row: auto; }
  .social-card { grid-template-columns: 1fr; }
  .ig-mock { max-width: 460px; margin-inline: auto; width: 100%; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .package.featured { transform: none; }
  .step::after { display: none; }
  .about-grid { text-align: center; }
  .about-copy { text-align: left; }
  .about-stats { justify-items: stretch; }
  .contact-info { text-align: center; }
  .contact-points { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 46px; height: 46px; border-radius: 13px;
    background: var(--white); border: 1px solid var(--line);
  }
  .nav-toggle span { width: 20px; height: 2px; background: var(--espresso); display: block; position: relative; }
  .nav-toggle span::before, .nav-toggle span::after {
    content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--espresso);
  }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  .nav-cta .btn { display: none; }
  .mobile-menu {
    display: none;
    position: absolute; top: 100%; left: 14px; right: 14px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 20px; margin-top: 8px;
    box-shadow: var(--shadow-lg); flex-direction: column; gap: 6px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 12px; border-radius: 12px; font-weight: 600; }
  .mobile-menu a:hover { background: var(--cream-2); }
  .grid-3, .steps, .method-track, .courses-bento, .benefits-grid, .testimonials-grid, .form-row { grid-template-columns: 1fr; }
  .course-feature { grid-column: 1; }
  .social-actions { flex-direction: column; align-items: stretch; }
  .social-btn { width: 100%; }
  .social-btn .btn { width: 100%; justify-content: center; }
  .profile-pop { left: 50%; transform: translateX(-50%) translateY(10px) scale(0.96); width: min(92vw, 280px); }
  .profile-pop::after { left: 50%; margin-left: -8px; }
  .social-btn:hover .profile-pop, .social-btn:focus-within .profile-pop { transform: translateX(-50%); }
  .eyebrow { font-size: 0.66rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 14px; }
  .float-card { display: none; }
  .hero-stack { width: min(100%, 360px); }
  .marquee { font-size: 1.2rem; gap: 40px; }
  .section { padding-block: 64px; }
  .contact-card { padding: 26px 20px; }
  .contact-info p { font-size: 1rem; }
  .contact-point { font-size: 0.94rem; gap: 12px; }
  .contact-point .icon-chip { width: 42px; height: 42px; }
}

.nav-toggle { display: none; }
@media (max-width: 720px) { .nav-toggle { display: grid; } }

/* =========================================================
   EFEKTY / WYKRESY
   ========================================================= */
.results { position: relative; }

/* --- Stat band --- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
.stat-cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.stat-cell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--rose-deep));
  opacity: 0.9;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1;
  color: var(--orange-deep);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--espresso-2);
  line-height: 1.35;
}

/* --- Bento grid --- */
.charts-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.chart-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.chart-line  { grid-column: 1 / -1; }
.chart-donut { grid-column: 1; }
.chart-gauge { grid-column: 2; }
.chart-weeks { grid-column: 1 / -1; }

.chart-head { margin-bottom: 18px; }
.chart-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 8px;
}
.chart-card h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.chart-sub { margin-top: 8px; color: var(--espresso-2); font-size: 0.98rem; }

/* --- Line chart --- */
.line-wrap { position: relative; margin-top: 10px; }
.line-plot { position: relative; height: 250px; }
.line-svg { width: 100%; height: 100%; display: block; overflow: visible; }
.line-grid line {
  stroke-dasharray: 3 6;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transform-box: fill-box;
  transition: opacity 0.5s ease, transform 0.85s var(--ease);
}
.line-grid line:nth-child(1) { transition-delay: 0.15s; }
.line-grid line:nth-child(2) { transition-delay: 0.25s; }
.line-grid line:nth-child(3) { transition-delay: 0.35s; }
.line-grid line:nth-child(4) { transition-delay: 0.45s; }
.results.drawn .line-grid line { opacity: 0.7; transform: scaleX(1); }
.line-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.2s var(--ease) 0.15s;
}
.line-area {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.2s var(--ease) 0.15s;
}
.results.drawn .line-path { stroke-dashoffset: 0; }
.results.drawn .line-area { clip-path: inset(0 0 0 0); }

/* Continuous light specks flowing along the curve (after draw) */
.line-flow {
  stroke-dasharray: 1.5 64;
  stroke-dashoffset: 0;
  opacity: 0;
}
.results.drawn .line-flow { opacity: 0.5; animation: lineFlow 3.4s linear 2.5s infinite; }
@keyframes lineFlow { to { stroke-dashoffset: -520; } }

/* Traveling comet head that "draws" the curve */
.line-comet, .line-comet-core {
  offset-path: path('M44,250 C 200,246 250,156 340,126 C 430,96 500,70 600,58');
  offset-rotate: 0deg;
  offset-distance: 0%;
  opacity: 0;
}
.line-comet { filter: blur(3px) drop-shadow(0 0 5px var(--orange)); }
.results.drawn .line-comet,
.results.drawn .line-comet-core { animation: cometRun 2.35s var(--ease) 0.15s forwards; }
@keyframes cometRun {
  0%   { offset-distance: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Round HTML markers — no SVG-stretch distortion */
.line-pt {
  position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--orange-deep);
  box-shadow: 0 3px 9px -3px oklch(0.55 0.12 50 / 0.55);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}
.line-pt.p1 { transition-delay: 0.95s; }
.line-pt.p2 { transition-delay: 1.55s; }
.line-pt-end { width: 22px; height: 22px; border-width: 4px; transition-delay: 2.15s; }
.results.drawn .line-pt { transform: translate(-50%, -50%) scale(1); }
.pt-ping {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--orange-deep); opacity: 0;
}
.results.drawn .line-pt-end .pt-ping { animation: ptPing 2.4s ease-out 2.5s infinite; }
@keyframes ptPing {
  0%   { transform: scale(0.8); opacity: 0.6; }
  70%  { transform: scale(2.5); opacity: 0; }
  100% { opacity: 0; }
}
.line-x {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.line-tag-low, .line-tag-high {
  position: absolute;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity 0.5s ease 1.1s, transform 0.5s var(--ease) 1.1s;
}
.line-tag-low {
  left: 0; bottom: 27%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  transform: translateY(8px);
}
.line-tag-high {
  right: 0; top: 0;
  background: linear-gradient(90deg, var(--orange), var(--rose-deep));
  color: var(--white);
  display: inline-flex; align-items: center; gap: 5px;
  transform: translateY(-8px);
}
.line-tag-high .star { color: var(--white); }
.results.drawn .line-tag-low, .results.drawn .line-tag-high { opacity: 1; transform: none; }

/* --- Donut --- */
.donut-wrap { position: relative; width: min(220px, 70%); margin: 4px auto 6px; }
.donut-svg { width: 100%; overflow: visible; }
.donut-seg {
  transform-origin: 100px 100px;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.seg-speak  { transform: rotate(-90deg); stroke-dasharray: 48 100; stroke-dashoffset: 48; }
.seg-listen { transform: rotate(90deg);  stroke-dasharray: 28 100; stroke-dashoffset: 28; }
.seg-read   { transform: rotate(198deg); stroke-dasharray: 18 100; stroke-dashoffset: 18; }
.results.drawn .seg-speak  { stroke-dashoffset: 0; transition-delay: 0.1s; }
.results.drawn .seg-listen { stroke-dashoffset: 0; transition-delay: 0.45s; }
.results.drawn .seg-read   { stroke-dashoffset: 0; transition-delay: 0.8s; }
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.donut-center-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--orange-deep);
  font-variant-numeric: tabular-nums;
}
.donut-center-label { font-size: 0.82rem; color: var(--espresso-2); margin-top: 3px; }
.donut-legend { display: flex; flex-direction: column; gap: 9px; max-width: 220px; margin: 4px auto 0; }
.donut-legend li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--espresso-2); }
.donut-legend b { margin-left: auto; color: var(--espresso); font-weight: 700; }
.lg-dot { width: 12px; height: 12px; border-radius: 4px; }
.d-speak { background: var(--orange); }
.d-listen { background: var(--rose); }
.d-read { background: var(--orange-soft); }

/* --- Gauge --- */
.gauge-wrap { width: min(280px, 92%); margin: 10px auto 0; }
.gauge-svg { width: 100%; overflow: visible; }
.gauge-fill {
  stroke-dasharray: 86 100;
  stroke-dashoffset: 86;
  transition: stroke-dashoffset 1.4s var(--ease) 0.2s;
}
.results.drawn .gauge-fill { stroke-dashoffset: 0; }
.gauge-needle {
  transform-origin: 120px 128px;
  transform: rotate(-90deg);
  transition: transform 1.4s var(--ease) 0.2s;
}
.results.drawn .gauge-needle { transform: rotate(65deg); }
.gauge-scale {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
}

/* --- Weeks timeline --- */
.weeks-track { position: relative; margin-top: 16px; padding-top: 2px; }
.weeks-line {
  position: absolute; left: 0; right: 0; top: 8px; height: 4px;
  background: var(--sand); border-radius: 4px; overflow: hidden;
}
.weeks-line-fill {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--rose-deep), var(--orange));
  transition: width 1.8s var(--ease) 0.2s;
}
.results.drawn .weeks-line-fill { width: 100%; }
.weeks-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.week-step { position: relative; padding-top: 36px; }
.week-dot {
  position: absolute; top: 0; left: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 4px solid var(--sand);
  box-shadow: 0 0 0 5px var(--cream);
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
  transition-delay: calc(0.3s + var(--i) * 0.3s);
}
.results.drawn .week-dot { border-color: var(--orange); transform: scale(1.12); }
.week-no {
  display: block; font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 7px;
}
.week-h {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.22rem; line-height: 1.1; color: var(--espresso); margin-bottom: 7px;
}
.week-step p { font-size: 0.93rem; color: var(--espresso-2); line-height: 1.46; }

.chart-disclaimer {
  margin-top: 26px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .line-path { stroke-dashoffset: 0; }
  .line-area, .line-tag-low, .line-tag-high { opacity: 1; transform: none; }
  .line-area { clip-path: none; }
  .line-grid line { opacity: 0.7; transform: none; }
  .line-pt { transform: translate(-50%, -50%) scale(1); }
  .line-comet, .line-comet-core, .line-flow { display: none; }
  .seg-speak { stroke-dashoffset: 0; }
  .seg-listen { stroke-dashoffset: 0; }
  .seg-read { stroke-dashoffset: 0; }
  .gauge-fill { stroke-dashoffset: 0; }
  .gauge-needle { transform: rotate(65deg); }
  .weeks-line-fill { width: 100%; }
  .week-dot { border-color: var(--orange); }
  .line-pulse { display: none; }
}

@media (max-width: 900px) {
  .charts-bento { grid-template-columns: 1fr; }
  .chart-line, .chart-donut, .chart-gauge, .chart-weeks {
    grid-column: 1; grid-row: auto;
  }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .weeks-steps { grid-template-columns: 1fr 1fr; gap: 18px 16px; }
  .weeks-line { display: none; }
  .chart-card { padding: 22px 18px; }
}
@media (max-width: 420px) {
  .stat-band { grid-template-columns: 1fr; }
}
