/* ============================================
   SPEAKING CLUBS — speaking.css
   Стилі специфічні для сторінки Speaking Clubs.
   Загальні стилі беруться зі style.css
   ============================================ */

/* ---------- HERO ---------- */
.spk-hero {
  padding: clamp(2.5rem, 1.5rem + 4vw, 5.5rem) 0 3rem;
}

.spk-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3rem);
  align-items: start;
}

/* --- Copy (ліва частина) --- */
.spk-hero__copy {
  display: flex;
  flex-direction: column;
}

.spk-hero__copy .h1 {
  margin-bottom: 1.5rem;
}

.spk-hero__copy .lead {
  margin-bottom: 2rem;
  max-width: 620px;
}

/* --- Perks row (іконка + текст) --- */
.spk-perks {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.spk-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--text);
}

.spk-perk__icon {
  flex: 0 0 auto;
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* --- CTA wrapper --- */
.spk-hero__cta {
  display: flex;
}

/* --- Visual (права частина — картки) --- */
.spk-hero__visual {
  position: relative;
  min-height: 500px;
}

.spk-hero__cards {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  /* М'яке сяйво під групою карток */
  filter: drop-shadow(0 8px 40px rgba(255, 255, 255, 0.6));
}

.spk-hero__card {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  backface-visibility: hidden;
  border-radius: 18px;
}

/* ---- Центральна картка (Zoom дівчинка) — найбільша, по центру ---- */
.spk-hero__card--center {
  width: 80%;
  left: 50%;
  top: 5%;
  transform: translateX(-42%);
  z-index: 1;
  border-radius: 20px;
}

/* ---- Ліва картка (Шрек) — зліва-внизу, НАД центральною, нахилена ---- */
.spk-hero__card--left {
  width: 50%;
  left: -6%;
  bottom: 4%;
  z-index: 3;
  transform: rotate(-4deg);
  border-radius: 16px;
}

/* ---- Права картка (Teamwork) — справа-внизу, НАД центральною ---- */
.spk-hero__card--right {
  width: 46%;
  right: -6%;
  bottom: 0;
  z-index: 3;
  transform: rotate(3deg);
  border-radius: 16px;
}

/* Float-анімація для карток */
@media (prefers-reduced-motion: no-preference) {
  .spk-hero__card--left {
    animation: spkFloatL 7.5s ease-in-out infinite;
  }
  .spk-hero__card--right {
    animation: spkFloatR 8.2s ease-in-out infinite;
  }
}

@keyframes spkFloatL {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-10px); }
}

@keyframes spkFloatR {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-12px); }
}

/* ---------- WHAT TO EXPECT ---------- */
.spk-expect {
  padding: clamp(2.5rem, 1.2rem + 4vw, 5.75rem) 0 clamp(3rem, 1.8rem + 4vw, 5.5rem);
}

.spk-expect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 0.8rem + 2.8vw, 3.5rem);
  align-items: center;
}

.spk-expect__copy {
  max-width: none;
}

.spk-expect__title {
  margin: 0 0 2rem;
  color: var(--text);
  font-size: clamp(2.55rem, 1.9rem + 2vw, 4.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.spk-expect__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.spk-expect__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  color: #31343B;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.125rem);
  font-weight: 400;
  line-height: 1.34;
}

.spk-expect__icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.spk-expect__cta {
  display: flex;
  margin-top: 2.5rem;
}

.spk-expect__btn {
  min-width: 188px;
  padding: 1.35rem 2.85rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #8C5CF2 0%, #4811BF 100%);
  box-shadow: 0 20px 40px rgba(72, 17, 191, 0.18);
  color: #fff;
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.spk-expect__btn:hover {
  background: linear-gradient(180deg, #9667F8 0%, #4E18C8 100%);
}

.spk-expect__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.spk-expect__image {
  display: block;
  width: min(100%, 60vw);
  max-width: 860px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 24px 48px rgba(22, 36, 41, 0.08));
}

/* ---------- WHAT IS SPEAKING CLUB ---------- */
.spk-club {
  padding: clamp(2.25rem, 1.2rem + 3.2vw, 4.5rem) 0 clamp(3rem, 1.7rem + 4vw, 5.5rem);
}

.spk-club__head {
  max-width: 980px;
  margin: 0 auto clamp(1.5rem, 1rem + 1.4vw, 2.25rem);
  text-align: center;
}

.spk-club__title {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(2rem, 1.35rem + 1.9vw, 3.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spk-club__intro {
  max-width: 910px;
  margin: 0 auto;
  color: #3A3E46;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 400;
  line-height: 1.45;
}

.spk-club__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.spk-club-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.82rem;
  border: 1px solid rgba(22, 36, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(22, 36, 41, 0.08);
  align-items: stretch;
}

.spk-club-card__image {
  width: 120px;
  height: 164px;
  border-radius: 12px;
  object-fit: cover;
}

.spk-club-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.spk-club-card__title {
  margin: 0;
  color: #2B2F35;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.375rem);
  font-weight: 600;
  line-height: 1.22;
}

.spk-club-card__text {
  margin: 0;
  color: rgba(22, 36, 41, 0.68);
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-club-card__quote {
  margin: auto 0 0;
  padding: 0.9rem 0.95rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #6426F4 0%, #4D19CD 100%);
  color: #fff;
  font-size: clamp(0.92rem, 0.88rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.24;
}

.spk-club__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
}

.spk-club__btn {
  min-width: 256px;
  padding: 1.25rem 2.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #8C5CF2 0%, #4811BF 100%);
  box-shadow: 0 20px 40px rgba(72, 17, 191, 0.18);
  color: #fff;
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.spk-club__btn:hover {
  background: linear-gradient(180deg, #9667F8 0%, #4E18C8 100%);
}

/* ---------- HOW SPEAKING CLUB WORKS ---------- */
.spk-flow {
  padding: clamp(2.5rem, 1.4rem + 3vw, 4.5rem) 0 clamp(2.5rem, 1.4rem + 3vw, 4rem);
}

.spk-flow__head {
  margin-bottom: clamp(1.4rem, 1rem + 1vw, 2rem);
}

.spk-flow__title {
  margin: 0 0 0.95rem;
  color: var(--text);
  font-size: clamp(2rem, 1.35rem + 1.9vw, 3.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spk-flow__intro {
  margin: 0;
  color: #3B4048;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.spk-flow-card {
  min-height: 154px;
  padding: 0.88rem 0.88rem 0.78rem;
  border: 1px solid rgba(22, 36, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(22, 36, 41, 0.08);
}

.spk-flow-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 0.95rem;
}

.spk-flow-card__title {
  margin: 0 0 0.6rem;
  color: #2B2F35;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 600;
  line-height: 1.28;
}

.spk-flow-card__text {
  margin: 0;
  color: rgba(22, 36, 41, 0.7);
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.42;
}

/* ---------- RESULTS ---------- */
.spk-results {
  padding: clamp(2.5rem, 1.6rem + 3vw, 5rem) 0 clamp(3rem, 1.7rem + 4vw, 5.5rem);
}

.spk-results__head {
  max-width: 760px;
  margin: 0 auto clamp(1.5rem, 1rem + 1.3vw, 2.15rem);
  text-align: center;
}

.spk-results__title {
  margin: 0 0 0.95rem;
  color: var(--text);
  font-size: clamp(2.05rem, 1.38rem + 1.9vw, 3.35rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spk-results__intro {
  margin: 0;
  color: #3B4048;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.spk-results-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22, 36, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(22, 36, 41, 0.08);
  overflow: hidden;
}

.spk-results-card__content {
  padding: 0.95rem 0.95rem 0.7rem;
}

.spk-results-card__from {
  margin: 0 0 0.7rem;
  color: rgba(22, 36, 41, 0.72);
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.24;
  text-decoration-line: line-through;
  text-decoration-thickness: 1px;
}

.spk-results-card__title {
  margin: 0;
  color: #2B2F35;
  font-size: clamp(1rem, 0.95rem + 0.22vw, 1.125rem);
  font-weight: 600;
  line-height: 1.24;
}

.spk-results-card__image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
}

.spk-results__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.65rem, 1.1rem + 1.4vw, 2.4rem);
}

/* ---------- WHY FREE ---------- */
.spk-free {
  padding: clamp(2.75rem, 1.6rem + 3.6vw, 5.5rem) 0 clamp(2.75rem, 1.8rem + 3vw, 4.5rem);
}

.spk-free__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.75rem, 1rem + 2.8vw, 4rem);
  align-items: center;
}

.spk-free__copy {
  max-width: 820px;
}

.spk-free__title {
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: clamp(2rem, 1.38rem + 1.95vw, 3.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spk-free__text {
  margin: 0 0 1rem;
  color: #2F343C;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-free__text:last-of-type {
  margin-bottom: 1.45rem;
}

.spk-free__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.spk-free__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  color: #31343B;
  font-size: clamp(1rem, 0.94rem + 0.16vw, 1.125rem);
  font-weight: 400;
  line-height: 1.34;
}

.spk-free__icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.spk-free__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.spk-free__image {
  display: block;
  width: min(100%, 620px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 20px 42px rgba(22, 36, 41, 0.08));
}

/* ---------- FREE SPACE ---------- */
.spk-space {
  position: relative;
  padding: clamp(3rem, 1.8rem + 4vw, 5rem) 0 clamp(3.25rem, 2rem + 4vw, 5.5rem);
  background:
    radial-gradient(58% 72% at 52% 56%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 34%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #5418f0 0%, #4811CE 100%);
  overflow: hidden;
}

.spk-space::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: 54px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 40px);
  opacity: 0.42;
  pointer-events: none;
}

.spk-space::after {
  content: "";
  position: absolute;
  inset: auto auto -160px 26%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 36%, rgba(255, 255, 255, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
}

.spk-space .container {
  position: relative;
  z-index: 1;
}

.spk-space__head {
  max-width: 980px;
  margin: 0 auto clamp(1.8rem, 1.1rem + 2vw, 2.6rem);
  text-align: center;
}

.spk-space__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 1.48rem + 2.15vw, 3.45rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.spk-space__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.spk-space-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 0.9rem 0.9rem 0.75rem;
  border: 1px solid rgba(22, 36, 41, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.spk-space-card__content {
  display: flex;
  flex-direction: column;
}

.spk-space-card__title {
  margin: 0 0 0.7rem;
  color: #2A2F35;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 600;
  line-height: 1.25;
}

.spk-space-card__text {
  margin: 0 0 0.85rem;
  color: rgba(22, 36, 41, 0.7);
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-space-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.spk-space-card__item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  color: rgba(22, 36, 41, 0.72);
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.34;
}

.spk-space-card__star {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 0.05rem;
}

.spk-space-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  padding-top: 0.8rem;
  min-height: 104px;
}

.spk-space-card__image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.spk-space__foot {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  margin-top: clamp(1.6rem, 1rem + 1.8vw, 2.35rem);
}

.spk-space__heart {
  display: block;
  width: 36px;
  height: 36px;
}

.spk-space__note {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 1.1rem + 0.7vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* ---------- TRUST ---------- */
.spk-proof {
  padding: clamp(3rem, 1.8rem + 4vw, 5.25rem) 0 clamp(3rem, 1.9rem + 3.4vw, 4.75rem);
}

.spk-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(440px, 0.86fr);
  gap: clamp(1.8rem, 1rem + 2.8vw, 4rem);
  align-items: center;
}

.spk-proof__copy {
  max-width: 780px;
}

.spk-proof__title {
  margin: 0 0 1.4rem;
  color: var(--text);
  font-size: clamp(2rem, 1.38rem + 1.95vw, 3.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spk-proof__intro {
  margin: 0 0 1.5rem;
  color: #2F343C;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-proof__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.spk-proof__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  color: #31343B;
  font-size: clamp(1rem, 0.94rem + 0.16vw, 1.125rem);
  font-weight: 400;
  line-height: 1.34;
}

.spk-proof__item strong {
  color: #2B2F35;
  font-weight: 600;
}

.spk-proof__icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-top: 0.05rem;
}

.spk-proof__actions {
  display: flex;
  margin-top: 1.8rem;
}

.spk-proof__visual {
  display: flex;
  justify-content: flex-end;
}

.spk-proof__panel {
  width: min(100%, 530px);
  padding: 0.95rem;
  border: 1px solid rgba(22, 36, 41, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(22, 36, 41, 0.08);
}

.spk-proof-award {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 114px;
  gap: 1rem;
  align-items: center;
  padding: 0.92rem 0.95rem;
  border: 1px solid rgba(22, 36, 41, 0.08);
  border-radius: 18px;
  background: #fff;
}

.spk-proof-award + .spk-proof-award {
  margin-top: 0.85rem;
}

.spk-proof-award__title {
  margin: 0 0 0.55rem;
  color: #2A2F35;
  font-size: clamp(1.2rem, 1.02rem + 0.45vw, 1.625rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.spk-proof-award__text {
  margin: 0;
  color: rgba(22, 36, 41, 0.68);
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
}

.spk-proof-award__image {
  display: block;
  width: 114px;
  height: 114px;
  object-fit: contain;
  justify-self: end;
}

.spk-proof__stage {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.spk-proof__stageImage {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

/* ---------- STEPS ---------- */
.spk-steps {
  padding: clamp(3rem, 1.9rem + 3.8vw, 5rem) 0 clamp(2.5rem, 1.6rem + 3vw, 4rem);
}

.spk-steps__head {
  max-width: 1040px;
  margin: 0 auto clamp(1.6rem, 1rem + 1.8vw, 2.4rem);
  text-align: center;
}

.spk-steps__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 1.4rem + 1.95vw, 3.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spk-steps__flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
}

.spk-step-card {
  min-height: 180px;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(22, 36, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 32px rgba(22, 36, 41, 0.08);
}

.spk-step-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  background: rgba(92, 63, 242, 0.12);
  color: #5D3FF2;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.spk-step-card__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.spk-step-card__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.spk-step-card__title {
  margin: 0;
  color: #2B2F35;
  font-size: clamp(1.2rem, 1.04rem + 0.35vw, 1.55rem);
  font-weight: 600;
  line-height: 1.18;
}

.spk-step-card__text {
  margin: 0.8rem 0 0;
  color: rgba(22, 36, 41, 0.68);
  font-size: clamp(1rem, 0.94rem + 0.16vw, 1.125rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-steps__connector {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spk-steps__arrow {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(22, 36, 41, 0.08);
  box-shadow: 0 8px 20px rgba(22, 36, 41, 0.06);
  color: #fff;
}

.spk-steps__arrow i {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #8C5CF2 0%, #4811BF 100%);
  font-size: 0.9rem;
}

.spk-steps__note {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.spk-steps__noteIcon {
  display: block;
  width: 36px;
  height: 36px;
}

.spk-steps__noteText {
  margin: 0;
  color: #05A300;
  font-size: clamp(1.35rem, 1.12rem + 0.65vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* ---------- JOIN FORM ---------- */
.spk-join {
  padding: clamp(2.5rem, 1.4rem + 3.4vw, 4.5rem) 0 clamp(3rem, 1.8rem + 4vw, 5rem);
  scroll-margin-top: 7rem;
}

.spk-join__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(1.8rem, 1rem + 2.8vw, 4rem);
  align-items: start;
}

.spk-join__copy {
  max-width: 640px;
  padding-top: 1.1rem;
}

.spk-join__title {
  margin: 0 0 1.3rem;
  color: var(--text);
  font-size: clamp(2rem, 1.4rem + 1.95vw, 3.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spk-join__intro,
.spk-join__outro {
  margin: 0;
  color: #2F343C;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
  font-weight: 400;
  line-height: 1.42;
}

.spk-join__intro {
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.spk-join__list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.spk-join__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  color: #31343B;
  font-size: clamp(1rem, 0.94rem + 0.16vw, 1.125rem);
  font-weight: 400;
  line-height: 1.34;
}

.spk-join__icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.spk-join__formWrap {
  display: flex;
  justify-content: flex-end;
}

.spk-join-form {
  display: grid;
  gap: 1rem;
  width: min(100%, 610px);
  padding: 1.45rem 1.45rem 1.35rem;
  border: 1px solid rgba(140, 92, 242, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(140, 92, 242, 0.12) 0%, rgba(140, 92, 242, 0) 48%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(22, 36, 41, 0.08);
}

.spk-join-form__title {
  margin: 0;
  color: #2B2F35;
  font-size: clamp(1.4rem, 1.22rem + 0.45vw, 2rem);
  font-weight: 700;
  line-height: 1.14;
}

.spk-join-form__group[hidden] {
  display: none;
}

.spk-join-form__field {
  width: 100%;
  height: 56px;
  margin-bottom: 0;
  padding: 0 1.15rem;
  border: 1px solid rgba(140, 92, 242, 0.28);
  border-radius: 18px;
  background: #fff;
  color: #2B2F35;
  font-size: 1rem;
  font-weight: 400;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.spk-join-form__field::placeholder {
  color: rgba(22, 36, 41, 0.62);
}

.spk-join-form__field:focus {
  outline: none;
  border-color: rgba(140, 92, 242, 0.55);
  box-shadow: 0 0 0 4px rgba(140, 92, 242, 0.12);
}

.spk-join-form__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(22, 36, 41, 0.7) 50%),
    linear-gradient(135deg, rgba(22, 36, 41, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 24px,
    calc(100% - 18px) 24px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  color: rgba(22, 36, 41, 0.72);
}

.spk-join-form__btn {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(180deg, #8C5CF2 0%, #4811BF 100%);
  box-shadow: 0 20px 40px rgba(72, 17, 191, 0.18);
  color: #fff;
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.spk-join-form__btn:hover {
  background: linear-gradient(180deg, #9667F8 0%, #4E18C8 100%);
}

.spk-join-form__btn:disabled {
  cursor: wait;
  opacity: 0.78;
  box-shadow: none;
}

.spk-form-status {
  margin: 0.1rem 0 0;
  display: grid;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: #1f8b2d;
}

.spk-form-status.is-error {
  color: #c4303d;
}

.spk-form-status.is-pending {
  color: rgba(22, 36, 41, 0.72);
}

/* --- Footer active link --- */
.footer__link--active {
  color: var(--p1);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 980px) {
  .spk-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .spk-expect__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .spk-expect__copy {
    max-width: 100%;
  }

  .spk-expect__visual {
    justify-content: center;
  }

  .spk-expect__image {
    width: min(100%, 680px);
  }

  .spk-club__grid {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin: 0 auto;
  }

  .spk-flow__grid,
  .spk-results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spk-space__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spk-proof__grid {
    grid-template-columns: 1fr;
  }

  .spk-steps__flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .spk-steps__connector {
    display: none;
  }

  .spk-join__grid {
    grid-template-columns: 1fr;
  }

  .spk-join__copy {
    max-width: 100%;
    padding-top: 0;
  }

  .spk-join__formWrap {
    justify-content: center;
  }

  .spk-proof__copy {
    max-width: 100%;
  }

  .spk-proof__visual {
    justify-content: center;
  }

  .spk-proof__panel {
    width: min(100%, 620px);
  }

  .spk-free__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .spk-free__copy {
    max-width: 100%;
  }

  .spk-free__visual {
    justify-content: center;
  }

  .spk-free__image {
    width: min(100%, 640px);
  }

  .spk-hero__visual {
    min-height: 380px;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .spk-hero__cards {
    min-height: 380px;
  }

  .spk-hero__card--center {
    width: 78%;
  }

  .spk-hero__card--left {
    left: 0;
    width: 48%;
  }

  .spk-hero__card--right {
    right: 0;
    width: 44%;
  }

  .spk-hero__cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .spk-hero {
    padding: clamp(1.5rem, 1rem + 2vw, 3rem) 0 2rem;
  }

  .spk-expect {
    padding: 2rem 0 2.75rem;
  }

  .spk-expect__title {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 1.35rem + 2vw, 2.5rem);
  }

  .spk-expect__list {
    gap: 0.85rem;
  }

  .spk-expect__item {
    gap: 0.85rem;
    font-size: var(--fs-16);
  }

  .spk-expect__cta {
    margin-top: 2rem;
  }

  .spk-expect__btn {
    width: 100%;
    padding-inline: 1.5rem;
    text-align: center;
  }

  .spk-club {
    padding: 2rem 0 3rem;
  }

  .spk-club__head {
    margin-bottom: 1.35rem;
  }

  .spk-club__title {
    font-size: clamp(2rem, 1.4rem + 1.9vw, 2.5rem);
  }

  .spk-flow,
  .spk-results {
    padding-top: 2rem;
  }

  .spk-free {
    padding: 2rem 0 3rem;
  }

  .spk-space {
    padding: 2.25rem 0 3rem;
  }

  .spk-proof {
    padding: 2rem 0 3rem;
  }

  .spk-steps,
  .spk-join {
    padding: 2rem 0 3rem;
  }

  .spk-space::before {
    left: -170px;
    bottom: 24px;
    width: 360px;
    height: 360px;
  }

  .spk-space::after {
    left: 10%;
    bottom: -180px;
    width: 420px;
    height: 420px;
  }

  .spk-flow__head,
  .spk-results__head {
    margin-bottom: 1.35rem;
  }

  .spk-free__title {
    margin-bottom: 1.15rem;
    font-size: clamp(2rem, 1.4rem + 1.9vw, 2.5rem);
  }

  .spk-proof__title {
    margin-bottom: 1.15rem;
    font-size: clamp(2rem, 1.4rem + 1.9vw, 2.5rem);
  }

  .spk-steps__title,
  .spk-join__title {
    font-size: clamp(2rem, 1.4rem + 1.9vw, 2.5rem);
  }

  .spk-steps__head {
    margin-bottom: 1.35rem;
  }

  .spk-step-card {
    min-height: 0;
    padding: 0.9rem;
    border-radius: 20px;
  }

  .spk-step-card__row {
    margin-top: 0.85rem;
  }

  .spk-step-card__title {
    font-size: 1.05rem;
  }

  .spk-step-card__text {
    font-size: var(--fs-16);
  }

  .spk-steps__note {
    margin-top: 1.5rem;
  }

  .spk-steps__noteText {
    font-size: 1.2rem;
  }

  .spk-join__intro {
    margin-bottom: 1.25rem;
  }

  .spk-join__list {
    gap: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .spk-join__item {
    gap: 0.7rem;
    font-size: var(--fs-16);
  }

  .spk-join-form {
    width: 100%;
    padding: 1.1rem;
    border-radius: 22px;
  }

  .spk-join-form__title {
    font-size: 1.2rem;
  }

  .spk-join-form__field {
    height: 52px;
    margin-bottom: 0;
    border-radius: 16px;
  }

  .spk-proof__intro {
    margin-bottom: 1.25rem;
  }

  .spk-proof__list {
    gap: 0.85rem;
  }

  .spk-proof__item {
    gap: 0.7rem;
    font-size: var(--fs-16);
  }

  .spk-proof__actions {
    margin-top: 1.5rem;
  }

  .spk-proof__panel {
    padding: 0.8rem;
    border-radius: 22px;
  }

  .spk-proof-award {
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 0.75rem;
    padding: 0.8rem;
    border-radius: 16px;
  }

  .spk-proof-award__title {
    font-size: 1.05rem;
  }

  .spk-proof-award__text {
    font-size: 0.875rem;
  }

  .spk-proof-award__image {
    width: 88px;
    height: 88px;
  }

  .spk-free__text:last-of-type {
    margin-bottom: 1.25rem;
  }

  .spk-free__list {
    gap: 0.9rem;
  }

  .spk-free__item {
    gap: 0.7rem;
    font-size: var(--fs-16);
  }

  .spk-flow__grid,
  .spk-club__grid {
    gap: 1rem;
  }

  .spk-space__head {
    margin-bottom: 1.35rem;
  }

  .spk-space__title {
    font-size: clamp(2rem, 1.4rem + 1.9vw, 2.5rem);
  }

  .spk-space__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .spk-space-card {
    min-height: 0;
    padding: 0.8rem 0.8rem 0.7rem;
    border-radius: 18px;
  }

  .spk-space-card__text,
  .spk-space-card__item {
    font-size: 0.875rem;
  }

  .spk-space__note {
    font-size: 1.25rem;
  }

  .spk-results__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .spk-flow__grid {
    grid-template-columns: 1fr;
  }

  .spk-flow-card {
    min-height: 0;
    padding: 0.8rem;
    border-radius: 20px;
  }

  .spk-flow-card__icon {
    margin-bottom: 0.8rem;
  }

  .spk-club-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.72rem;
    border-radius: 20px;
  }

  .spk-club-card__image {
    width: 96px;
    height: 132px;
    border-radius: 10px;
  }

  .spk-club-card__title {
    font-size: 1rem;
  }

  .spk-club-card__text,
  .spk-club-card__quote {
    font-size: 0.875rem;
  }

  .spk-results-card {
    border-radius: 20px;
  }

  .spk-results-card__content {
    padding: 0.85rem 0.85rem 0.6rem;
  }

  .spk-results-card__from,
  .spk-results-card__title {
    font-size: 0.9375rem;
  }

  .spk-club__btn {
    width: 100%;
    min-width: 0;
    padding-inline: 1.5rem;
    text-align: center;
  }

  .spk-perks {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .spk-hero__visual {
    max-width: 100%;
    min-height: 300px;
  }

  .spk-hero__cards {
    min-height: 300px;
  }

  .spk-hero__card--center {
    width: 75%;
  }

  .spk-hero__card--left {
    width: 52%;
    left: 0;
  }

  .spk-hero__card--right {
    width: 46%;
    right: 0;
  }
}

/* ---------- NORMALIZATION ---------- */
:root {
  --spk-section-padding: clamp(2.5rem, 1.4rem + 3.4vw, 4.5rem) 0 clamp(3rem, 1.8rem + 4vw, 5rem);
  --spk-h1-size: clamp(2.45rem, 1.72rem + 2.7vw, 4.65rem);
  --spk-h2-size: clamp(2rem, 1.35rem + 1.9vw, 3.25rem);
  --spk-body-size: clamp(1rem, 0.94rem + 0.18vw, 1.125rem);
}

.spk-hero,
.spk-expect,
.spk-club,
.spk-flow,
.spk-results,
.spk-free,
.spk-space,
.spk-proof,
.spk-steps,
.spk-join {
  padding: var(--spk-section-padding);
}

.spk-hero__copy .h1 {
  font-size: var(--spk-h1-size);
  line-height: 0.96;
}

.spk-expect__title,
.spk-club__title,
.spk-flow__title,
.spk-results__title,
.spk-free__title,
.spk-proof__title,
.spk-steps__title,
.spk-join__title {
  font-size: var(--spk-h2-size);
}

.spk-space__title {
  font-size: var(--spk-h2-size);
  line-height: 0.98;
}

.spk-hero__copy .lead,
.spk-perk,
.spk-expect__item,
.spk-club__intro,
.spk-club-card__text,
.spk-club-card__quote,
.spk-flow__intro,
.spk-flow-card__text,
.spk-results__intro,
.spk-results-card__from,
.spk-free__text,
.spk-free__item,
.spk-space-card__text,
.spk-space-card__item,
.spk-proof__intro,
.spk-proof__item,
.spk-proof-award__text,
.spk-step-card__text,
.spk-join__intro,
.spk-join__outro,
.spk-join__item,
.spk-join-form__field,
.spk-join-form__select {
  font-size: var(--spk-body-size);
}

.spk-hero__copy .lead,
.spk-expect__item,
.spk-club__intro,
.spk-club-card__text,
.spk-club-card__quote,
.spk-flow__intro,
.spk-flow-card__text,
.spk-results__intro,
.spk-free__text,
.spk-free__item,
.spk-space-card__text,
.spk-space-card__item,
.spk-proof__intro,
.spk-proof__item,
.spk-proof-award__text,
.spk-step-card__text,
.spk-join__intro,
.spk-join__outro,
.spk-join__item {
  line-height: 1.42;
}

/* ---------- MOBILE REFINEMENTS ---------- */
@media (max-width: 560px) {
  .spk-hero__grid,
  .spk-expect__grid,
  .spk-club__grid,
  .spk-flow__grid,
  .spk-results__grid,
  .spk-free__grid,
  .spk-space__grid,
  .spk-proof__grid,
  .spk-steps__flow,
  .spk-join__grid {
    grid-template-columns: 1fr;
  }

  .spk-hero__copy,
  .spk-expect__copy,
  .spk-club__head,
  .spk-free__copy,
  .spk-proof__copy,
  .spk-join__copy {
    max-width: 100%;
  }

  .spk-hero__copy .h1 {
    max-width: 320px;
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 1.68rem + 2vw, 2.85rem);
  }

  .spk-hero__copy .lead {
    margin-bottom: 1.35rem;
  }

  .spk-perks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 0.9rem;
    margin-bottom: 1.5rem;
  }

  .spk-perk {
    width: calc(50% - 0.45rem);
    font-size: 0.95rem;
  }

  .spk-perk:last-child {
    width: 100%;
  }

  .spk-hero__cta,
  .spk-expect__cta,
  .spk-proof__actions {
    justify-content: flex-start;
  }

  .spk-club__actions,
  .spk-results__actions {
    justify-content: center;
  }

  .spk-hero__cta .btn,
  .spk-expect__btn,
  .spk-club__btn {
    width: auto;
    min-width: 240px;
    padding-inline: 1.35rem;
  }

  .spk-hero__visual {
    max-width: 320px;
    min-height: 270px;
    margin-top: 0.4rem;
  }

  .spk-hero__cards {
    min-height: 270px;
  }

  .spk-hero__card--center {
    width: 76%;
    top: 30%;
    left: 54%;
    transform: translateX(-50%);
  }

  .spk-hero__card--left {
    width: 36%;
    top: 8%;
    left: 2%;
    bottom: auto;
  }

  .spk-hero__card--right {
    width: 34%;
    right: -1%;
    bottom: 5%;
  }

  .spk-expect__grid {
    gap: 1.45rem;
  }

  .spk-expect__title {
    max-width: 320px;
    margin-bottom: 1.2rem;
    line-height: 0.96;
  }

  .spk-expect__list {
    gap: 0.75rem;
  }

  .spk-expect__item {
    align-items: start;
    gap: 0.7rem;
  }

  .spk-expect__visual {
    justify-content: center;
  }

  .spk-expect__image {
    width: 100%;
    max-width: 100%;
  }

  .spk-club__head {
    margin-bottom: 1rem;
  }

  .spk-club-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.7rem;
  }

  .spk-club-card__image {
    /* Mobile keeps the original portrait crop instead of stretching tiny 120x164 assets full-width. */
    width: min(100%, 140px);
    height: auto;
    aspect-ratio: auto;
    justify-self: center;
    align-self: start;
    margin-inline: auto;
    border-radius: 14px;
  }

  .spk-club-card__body {
    gap: 0.5rem;
  }

  .spk-club-card__quote {
    margin-top: 0.15rem;
  }

  .spk-flow__head,
  .spk-results__head,
  .spk-proof__head {
    text-align: left;
  }

  .spk-flow__intro,
  .spk-results__intro {
    text-align: left;
  }

  .spk-flow-card {
    padding: 0.9rem;
  }

  .spk-results__head {
    max-width: 100%;
  }

  .spk-results__title,
  .spk-results__intro {
    text-align: center;
  }

  .spk-results-card__image {
    width: 100%;
  }

  .spk-free__grid {
    gap: 1.45rem;
  }

  .spk-free__text:last-of-type {
    margin-bottom: 1rem;
  }

  .spk-free__image {
    width: 100%;
    max-width: 100%;
  }

  .spk-space {
    padding-inline: 0;
  }

  .spk-space .container {
    width: min(94%, 90vw);
  }

  .spk-space__title {
    max-width: 310px;
    margin-inline: auto;
    text-align: center;
  }

  .spk-space-card {
    min-height: 0;
    padding: 0.9rem 0.85rem 0.8rem;
  }

  .spk-space-card__media {
    min-height: 90px;
    padding-top: 0.4rem;
  }

  .spk-proof__grid {
    gap: 1.5rem;
  }

  .spk-proof__panel {
    width: 100%;
    padding: 0.75rem;
  }

  .spk-proof__stage {
    margin-top: 0.8rem;
  }

  .spk-proof__stageImage {
    width: min(100%, 310px);
  }

  .spk-steps__flow {
    gap: 0.9rem;
  }

  .spk-steps__connector {
    display: flex;
  }

  .spk-steps__arrow {
    width: 46px;
    height: 46px;
  }

  .spk-steps__arrow i {
    transform: rotate(90deg);
  }

  .spk-step-card {
    padding: 0.95rem;
  }

  .spk-step-card__title {
    max-width: 220px;
  }

  .spk-join__grid {
    gap: 1.4rem;
  }

  .spk-join__title {
    max-width: 310px;
  }

  .spk-join__intro {
    max-width: 100%;
  }

  .spk-join-form {
    width: 100%;
  }

  .spk-hero__grid,
  .spk-expect__grid,
  .spk-free__grid,
  .spk-proof__grid,
  .spk-join__grid {
    gap: 1.5rem;
  }

  .spk-hero__cta .btn {
    min-width: 252px;
  }

  .spk-hero__visual {
    max-width: 340px;
    min-height: 320px;
    margin-inline: auto;
  }

  .spk-hero__cards {
    min-height: 320px;
  }

  .spk-hero__card--center {
    width: 79%;
    top: 35%;
    left: 53%;
  }

  .spk-hero__card--left {
    width: 39%;
    top: 6%;
    left: 1%;
  }

  .spk-hero__card--right {
    width: 35%;
    right: 0;
    bottom: 3%;
  }

  .spk-expect__btn,
  .spk-club__btn {
    min-width: 196px;
  }

  .spk-expect__image {
    width: min(100%, 330px);
    margin-inline: auto;
  }

  .spk-club__grid,
  .spk-flow__grid,
  .spk-results__grid,
  .spk-space__grid {
    gap: 1.1rem;
  }

  .spk-club-card {
    padding: 0.72rem;
    border-radius: 22px;
  }

  .spk-club-card__image {
    width: min(100%, 140px);
    aspect-ratio: auto;
    border-radius: 16px;
  }

  .spk-club__actions,
  .spk-results__actions {
    margin-top: 1.35rem;
  }

  .spk-free__visual,
  .spk-proof__visual {
    justify-content: center;
  }

  .spk-proof__panel {
    max-width: 100%;
  }

  .spk-proof__stageImage {
    width: 100%;
    max-width: 100%;
  }

  .spk-steps__connector {
    justify-content: center;
    padding: 0.15rem 0;
  }

  .spk-step-card {
    border-radius: 22px;
  }

  .spk-join__formWrap {
    justify-content: stretch;
  }

  .spk-join-form {
    max-width: 100%;
  }
}
