/* ===== BOOK CONSULTATION PAGE ===== */

/* Hero */
.bk-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #111114;
}

.bk-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Floating particles */
.bk-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.5);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.3);
  animation: bkFloat var(--dur) var(--del) ease-in-out infinite alternate;
}

@keyframes bkFloat {
  0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { opacity: 1; }
  100% { transform: translate(30px, -40px) scale(1.4); opacity: 0.3; }
}

/* Grid lines */
.bk-line { position: absolute; }
.bk-lh {
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.bk-lh::after {
  content: '';
  position: absolute; top: -1px; left: -180px;
  width: 180px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.5), transparent);
  animation: bkSweepH 7s ease-in-out infinite;
}
.bk-lh:nth-child(9)::after { animation-delay: 0s; }
.bk-lh:nth-child(10)::after { animation-delay: 2.5s; }
.bk-lh:nth-child(11)::after { animation-delay: 5s; }

.bk-lv {
  top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.05), transparent);
}
.bk-lv::after {
  content: '';
  position: absolute; left: -1px; top: -100px;
  width: 3px; height: 100px; border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(230,57,70,0.4), transparent);
  animation: bkSweepV 8s ease-in-out infinite;
}
.bk-lv:nth-child(12)::after { animation-delay: 0.5s; }
.bk-lv:nth-child(13)::after { animation-delay: 3.5s; }
.bk-lv:nth-child(14)::after { animation-delay: 1.5s; }

@keyframes bkSweepH { 0% { left: -180px; } 100% { left: calc(100% + 180px); } }
@keyframes bkSweepV { 0% { top: -100px; } 100% { top: calc(100% + 100px); } }

/* Background orbs */
.bk-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12; }
.bk-orb-1 { width: 500px; height: 500px; background: #e63946; top: -10%; right: -10%; animation: bkOrbMove 15s ease-in-out infinite alternate; }
.bk-orb-2 { width: 400px; height: 400px; background: #42a5f5; bottom: -10%; left: -5%; animation: bkOrbMove 12s ease-in-out 3s infinite alternate; }
@keyframes bkOrbMove { 0% { transform: translate(0,0); } 100% { transform: translate(30px,-20px); } }

.bk-hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

/* Hero content */
.bk-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.bk-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 26px;
  border-radius: 50px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: #e63946;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  animation: bkFadeUp 0.8s ease-out;
}

.bk-badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
  animation: bkPulse 2s ease-in-out infinite;
}

@keyframes bkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.bk-hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 5.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
  animation: bkFadeUp 0.8s ease-out 0.15s both;
}

.bk-highlight {
  color: #e63946;
  font-weight: 700;
}

.bk-hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 44px;
  animation: bkFadeUp 0.8s ease-out 0.3s both;
}

.bk-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e63946, #c12a35);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.35);
  animation: bkFadeUp 0.8s ease-out 0.45s both;
}

.bk-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.bk-hero-cta svg { stroke: #fff; }

.bk-cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.bk-cta-arrow svg { fill: #fff; }
.bk-hero-cta:hover .bk-cta-arrow { transform: translateX(4px); }

@keyframes bkFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION SHARED ===== */
.bk-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.2);
  color: #e63946;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bk-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.bk-section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.bk-section-header p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== WHY BOOK SECTION ===== */
.bk-why {
  padding: 100px 0;
  background: var(--bg-primary);
}

.bk-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bk-feature-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.bk-feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bk-feature-card:nth-child(2).revealed { transition-delay: 0.1s; }
.bk-feature-card:nth-child(3).revealed { transition-delay: 0.2s; }
.bk-feature-card:nth-child(4).revealed { transition-delay: 0.3s; }

.bk-feature-card:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.bk-feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  margin-bottom: 20px;
}

.bk-feat-icon svg {
  width: 24px; height: 24px;
  stroke: #e63946;
}

.bk-feat-icon-blue {
  background: rgba(66, 165, 245, 0.1);
  border-color: rgba(66, 165, 245, 0.2);
}
.bk-feat-icon-blue svg { stroke: #42a5f5; }

.bk-feat-icon-green {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.2);
}
.bk-feat-icon-green svg { stroke: #4caf50; }

.bk-feat-icon-purple {
  background: rgba(171, 71, 188, 0.1);
  border-color: rgba(171, 71, 188, 0.2);
}
.bk-feat-icon-purple svg { stroke: #ab47bc; }

.bk-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.bk-feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.bk-feat-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.06);
  filter: blur(50px);
  top: -60px; right: -60px;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.bk-feature-card:hover .bk-feat-glow { opacity: 1; }
.bk-glow-blue { background: rgba(66, 165, 245, 0.06); }
.bk-glow-green { background: rgba(76, 175, 80, 0.06); }
.bk-glow-purple { background: rgba(171, 71, 188, 0.06); }

/* ===== CALENDLY SECTION ===== */
.bk-calendly {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.bk-calendly-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.bk-calendly-card {
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.bk-calendly-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bk-calendly-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.05);
  filter: blur(80px);
  top: -100px; left: -100px;
  pointer-events: none;
}

/* Meeting info sidebar */
.bk-calendly-info {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}

.bk-meeting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  color: #e63946;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  width: fit-content;
}

.bk-meeting-badge svg { stroke: #e63946; }

.bk-calendly-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.bk-calendly-info > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 28px;
}

.bk-meeting-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: auto;
  padding-bottom: 28px;
}

.bk-meeting-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.bk-meeting-detail svg { stroke: rgba(255,255,255,0.35); flex-shrink: 0; }

/* Consultant avatar */
.bk-consultant {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bk-consultant-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(230, 57, 70, 0.05));
  border: 1px solid rgba(230, 57, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-consultant-avatar svg { stroke: #e63946; }

.bk-consultant-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bk-consultant-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.bk-consultant-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* Calendly embed area */
.bk-calendly-embed {
  padding: 0;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}

/* Placeholder (remove when Calendly is embedded) */
.bk-embed-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.01) 20px,
    rgba(255,255,255,0.01) 40px
  );
}

.bk-placeholder-icon {
  width: 90px; height: 90px;
  border-radius: 20px;
  background: rgba(230, 57, 70, 0.06);
  border: 1px dashed rgba(230, 57, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bk-placeholder-icon svg { stroke: rgba(230, 57, 70, 0.5); }

.bk-embed-placeholder h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.bk-embed-placeholder > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 32px;
}

.bk-placeholder-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 300px;
}

.bk-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: left;
}

.bk-step strong { color: rgba(255,255,255,0.75); }

.bk-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63946, #c12a35);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Make Calendly inline widget full height when embedded */
.bk-calendly-embed .calendly-inline-widget {
  width: 100%;
  min-height: 560px;
}

/* ===== PROCESS SECTION ===== */
.bk-process {
  padding: 100px 0;
  background: var(--bg-primary);
}

.bk-steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bk-steps-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(230,57,70,0.3), rgba(66,165,245,0.3), rgba(76,175,80,0.3));
}

.bk-process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.bk-process-step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bk-process-step:nth-child(3).revealed { transition-delay: 0.15s; }
.bk-process-step:nth-child(4).revealed { transition-delay: 0.3s; }

.bk-step-number {
  width: 80px;
  flex-shrink: 0;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e63946, rgba(230,57,70,0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  padding-top: 4px;
}

.bk-process-step:nth-child(3) .bk-step-number {
  background: linear-gradient(135deg, #42a5f5, rgba(66,165,245,0.3));
  -webkit-background-clip: text;
  background-clip: text;
}

.bk-process-step:nth-child(4) .bk-step-number {
  background: linear-gradient(135deg, #4caf50, rgba(76,175,80,0.3));
  -webkit-background-clip: text;
  background-clip: text;
}

.bk-step-content {
  flex: 1;
}

.bk-step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.bk-step-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.bk-step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  flex-shrink: 0;
}

.bk-step-icon svg {
  width: 22px; height: 22px;
  stroke: #e63946;
}

.bk-step-icon-blue {
  background: rgba(66, 165, 245, 0.08);
  border-color: rgba(66, 165, 245, 0.15);
}
.bk-step-icon-blue svg { stroke: #42a5f5; }

.bk-step-icon-green {
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.15);
}
.bk-step-icon-green svg { stroke: #4caf50; }

/* ===== FAQ SECTION ===== */
.bk-faq {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.bk-faq-grid {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bk-faq-item {
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
}

.bk-faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bk-faq-item:nth-child(2).revealed { transition-delay: 0.05s; }
.bk-faq-item:nth-child(3).revealed { transition-delay: 0.1s; }
.bk-faq-item:nth-child(4).revealed { transition-delay: 0.15s; }
.bk-faq-item:nth-child(5).revealed { transition-delay: 0.2s; }

.bk-faq-item:hover {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.bk-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
}

.bk-faq-q span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.bk-faq-arrow {
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.35);
  transition: transform 0.3s ease;
}

.bk-faq-item.open .bk-faq-arrow {
  transform: rotate(180deg);
  stroke: #e63946;
}

.bk-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.bk-faq-item.open .bk-faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.bk-faq-a p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.bk-cta {
  padding: 100px 0;
  background: var(--bg-primary);
}

.bk-cta-card {
  position: relative;
  text-align: center;
  padding: 72px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(230,57,70,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(230,57,70,0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.bk-cta-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bk-cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.06);
  filter: blur(100px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.bk-cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.bk-cta-card > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.bk-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.bk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e63946, #c12a35);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.25);
}

.bk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.bk-btn-primary svg { stroke: #fff; }

.bk-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bk-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.bk-btn-secondary svg { stroke: currentColor; }

.bk-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.bk-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.bk-trust-badge svg { stroke: #4caf50; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bk-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .bk-calendly-card {
    grid-template-columns: 1fr;
  }

  .bk-calendly-info {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 768px) {
  .bk-hero { min-height: 60vh; padding-top: 80px; }
  
  .bk-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bk-why,
  .bk-calendly,
  .bk-process,
  .bk-faq,
  .bk-cta { padding: 70px 0; }

  .bk-section-header { margin-bottom: 40px; }

  .bk-calendly-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .bk-calendly-info { padding: 28px 24px; }

  .bk-embed-placeholder { padding: 36px 20px; }

  .bk-process-step {
    gap: 16px;
  }

  .bk-step-number {
    width: 50px;
    font-size: 1.6rem;
  }

  .bk-steps-line { left: 24px; }

  .bk-step-icon { display: none; }

  .bk-cta-card { padding: 48px 24px; }

  .bk-cta-actions { flex-direction: column; }
  .bk-btn-primary,
  .bk-btn-secondary { width: 100%; justify-content: center; }

  .bk-trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .bk-faq-q { padding: 16px 20px; }
  .bk-faq-q span { font-size: 0.92rem; }
  .bk-faq-item.open .bk-faq-a { padding: 0 20px 16px; }
}

@media (max-width: 480px) {
  .bk-hero h1 { font-size: 2rem; }
  .bk-hero-sub { font-size: 0.92rem; }
  .bk-badge { font-size: 0.78rem; padding: 6px 16px; }
}
