/* ============================================================
   FREE GUIDES — THE MIKE MANUAL
   ============================================================ */
.guides {
  position: relative;
  width: 100%;
  padding: 120px 48px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #050d1c 0%, #081222 50%, #050b18 100%);
  overflow: hidden;
  isolation: isolate;
}
.guides__divider {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(640px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 166, 35, 0.45) 50%, transparent 100%);
}
.guides__glow {
  position: absolute;
  top: 20%; right: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.10) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.guides__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.guides__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.guides__series {
  display: inline-block;
  margin-top: 22px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  padding: 8px 22px;
  border-top: 1px solid rgba(245, 166, 35, 0.20);
  border-bottom: 1px solid rgba(245, 166, 35, 0.20);
}

/* ============================================================
   VOLUME GRID
   ============================================================ */
.guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}

/* ============================================================
   VOLUME CARD
   ============================================================ */
.vol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease-out);
  cursor: default;
}
.vol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.5), rgba(245, 166, 35, 0) 50%, rgba(245, 166, 35, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.vol-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(245, 166, 35, 0.22);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.vol-card:hover::before { opacity: 1; }

/* Magazine background numeral */
.vol-card__numeral {
  position: absolute;
  top: 12px; right: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 160px;
  font-weight: 900;
  line-height: 0.85;
  color: rgba(245, 166, 35, 0.05);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.vol-card:hover .vol-card__numeral {
  color: rgba(245, 166, 35, 0.10);
  transform: translate(-4px, 4px);
}

.vol-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vol-card__stamp {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 11px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 3px;
}
.vol-card__free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 9px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4ade80;
}
.vol-card__free-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.vol-card__icon {
  position: relative;
  z-index: 2;
  width: 54px; height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.16) 0%, rgba(245, 166, 35, 0.04) 100%);
  border: 1px solid rgba(245, 166, 35, 0.30);
  color: var(--accent);
  box-shadow: 0 8px 22px rgba(245, 166, 35, 0.12);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease);
  margin-top: 4px;
}
.vol-card__icon svg { width: 26px; height: 26px; }
.vol-card:hover .vol-card__icon {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.22);
}

.vol-card__title {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.vol-card__hook {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  line-height: 1.4;
}
.vol-card__body {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* TOC preview */
.vol-toc {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  background: rgba(5, 13, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-top: 4px;
}
.vol-toc__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.vol-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.vol-toc li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.vol-toc li span {
  flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 11.5px;
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 1px;
  min-width: 16px;
}

/* Footer */
.vol-card__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.vol-card__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.vol-card__time svg { width: 14px; height: 14px; color: var(--accent); }

.vol-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--accent);
  color: var(--bg-base);
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(245, 166, 35, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.vol-card__cta svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.vol-card__cta:hover {
  background: var(--accent-hot);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.42);
}
.vol-card__cta:hover svg { transform: translateX(3px); }

/* ============================================================
   "HOW IT WORKS" + PHONE MOCKUP
   ============================================================ */
.guides__preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 56px;
  margin-bottom: 64px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.guides__preview::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.10) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.guides__preview-text {
  position: relative;
  z-index: 1;
}
.guides__preview-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.guides__preview-text h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 30px;
  line-height: 1.2;
}

.guides__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.guides__steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.guides__steps-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.10);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.guides__steps strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.guides__steps p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mute);
}

/* ===== Phone mockup ===== */
.phone-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 620;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 42px;
  padding: 8px;
  box-shadow:
    0 50px 80px rgba(0, 0, 0, 0.55),
    0 0 0 2px #2a2a2a,
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.phone-mock__notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #0a0a0a;
  border-radius: 100px;
  z-index: 3;
}
.phone-mock__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0e1a2f 0%, #050d1c 100%);
  display: flex;
  flex-direction: column;
}
.phone-mock__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  position: relative;
}
.phone-mock__time { font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.phone-mock__icons { display: inline-flex; gap: 6px; align-items: center; }
.phone-mock__icons svg { width: 14px; height: 10px; }
.phone-mock__icons svg:last-child { width: 22px; height: 11px; }

.phone-mock__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 6px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.phone-mock__back {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: default;
}
.phone-mock__back svg { width: 14px; height: 14px; }
.phone-mock__contact {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 1px;
  align-items: center;
}
.phone-mock__avatar {
  grid-row: 1 / 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: var(--bg-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.phone-mock__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.phone-mock__status {
  font-size: 10.5px;
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.phone-mock__status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.phone-mock__messages {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.bubble {
  position: relative;
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.45;
  border-radius: 18px;
  max-width: 86%;
  word-wrap: break-word;
}
.bubble strong { font-weight: 700; color: #fff; }
.bubble__time {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  opacity: 0.6;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.bubble--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.10);
  color: var(--ink);
  border-bottom-left-radius: 6px;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.5s var(--ease-out) forwards;
}
.bubble--in:nth-of-type(1) { animation-delay: 0.4s; }
.bubble--in:nth-of-type(2) { animation-delay: 1.4s; }

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

.bubble--typing {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.10);
  border-bottom-left-radius: 6px;
  padding: 12px 16px;
  display: inline-flex;
  gap: 4px;
  opacity: 0;
  animation: bubbleIn 0.5s var(--ease-out) 2.4s forwards;
}
.bubble--typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: dotBounce 1.2s ease-in-out infinite;
}
.bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  40%      { transform: translateY(-4px); opacity: 1; }
}

/* ============================================================
   BUNDLE CTA STRIP
   ============================================================ */
.guides__bundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 40px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.12) 0%, rgba(245, 166, 35, 0.02) 100%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(245, 166, 35, 0.25);
  position: relative;
  overflow: hidden;
}
.guides__bundle::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.16) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.guides__bundle-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.guides__bundle-tag {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.guides__bundle h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.guides__bundle p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 13, 28, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0s;
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 40px 36px 32px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #0f1f3a 0%, #0a1628 100%);
  border: 1px solid rgba(245, 166, 35, 0.20);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
.modal.is-open .modal__panel { transform: scale(1) translateY(0); }

.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover {
  background: var(--accent);
  color: var(--bg-base);
  transform: rotate(90deg);
}

.modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.06);
  border-radius: 100px;
  margin-bottom: 18px;
}
.modal__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.modal__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.modal__subtitle {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-bottom: 24px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal__field { display: flex; flex-direction: column; gap: 6px; }
.modal__field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.modal__optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--ink-faint);
}
.modal__field input {
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.modal__field input::placeholder { color: var(--ink-faint); }
.modal__field input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}

.modal__submit {
  margin-top: 6px;
  padding: 15px 22px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: var(--bg-base);
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.32);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.modal__submit svg { transition: transform 0.25s var(--ease); }
.modal__submit:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(245, 166, 35, 0.45); }
.modal__submit:hover svg { transform: translateX(4px); }
.modal__submit:disabled { opacity: 0.6; cursor: wait; transform: none; }

.modal__privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
  text-align: center;
  justify-content: center;
}
.modal__privacy svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.modal__privacy strong { color: var(--ink); font-weight: 700; }

/* Success state */
.modal__success-state {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}
.modal.is-success .modal__form-state { display: none; }
.modal.is-success .modal__success-state { display: block; }
.modal__success-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  animation: pop 0.5s var(--ease-out);
}
.modal__success-icon svg { width: 30px; height: 30px; }
@keyframes pop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.modal__success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.modal__success-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.modal__success-done {
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.modal__success-done:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .guides { padding: 100px 36px; }
  .guides__preview { padding: 50px 44px; gap: 40px; }
}

@media (max-width: 920px) {
  .guides { padding: 88px 28px; }
  .guides__grid { grid-template-columns: 1fr; gap: 18px; }
  .guides__preview {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 44px 30px;
    text-align: left;
  }
  .phone-mock { max-width: 280px; }
  .guides__bundle {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px;
  }
  .guides__bundle .cta { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .guides { padding: 72px 20px; }
  .vol-card { padding: 28px 24px 22px; }
  .vol-card__title { font-size: 20px; }
  .vol-card__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .vol-card__cta { justify-content: center; }
  .guides__preview { padding: 36px 22px; }
  .modal__panel { padding: 32px 24px 26px; }
  .modal__title { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .vol-card, .vol-card__cta, .vol-card__cta svg, .vol-card__icon,
  .vol-card__numeral, .modal__close, .modal__submit, .modal__submit svg,
  .bubble--in, .bubble--typing, .bubble--typing span, .modal__success-icon {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .bubble--in, .bubble--typing { opacity: 1; }
}
