/*
 * funnel.css — Growthify Studio Portal
 * Layout:  mirrors original 3-page HTML design exactly
 * Colors:  #F7F4EF bg · #E63329 accent · #1A1A1A text
 * Font:    Inter throughout
 * ============================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS — light brand version of original dark palette ── */
:root {
  --bg:          #F7F4EF;
  --surface:     #FFFFFF;
  --border:      #E4E0D9;
  --accent:      #E63329;
  --accent-dim:  #C8281F;
  --text:        #1A1A1A;
  --muted:       #7A736C;
  --error:       #E63329;
  --success:     #22C55E;
  --radius:      12px;
  --tr:          0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.funnel-page {
  background: var(--bg) !important;
  color: var(--text);
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Kill theme chrome */
body.funnel-page .site-header,
body.funnel-page #masthead,
body.funnel-page header.header,
body.funnel-page .main-navigation,
body.funnel-page .site-footer,
body.funnel-page #colophon,
body.funnel-page footer.footer,
body.funnel-page .elementor-location-header,
body.funnel-page .elementor-location-footer { display: none !important; }


/* ═══════════════════════════════════════════════════════════
   NAV — sticky, blurred, logo + back link
   ═══════════════════════════════════════════════════════════ */
.funnel-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.funnel-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.funnel-logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 0.9rem;
}
.funnel-logo-text {
  font-weight: 800; font-size: 1.15rem;
  color: var(--text); letter-spacing: -0.02em;
}
.funnel-logo-text span { color: var(--accent); }

.funnel-nav-back {
  font-size: 0.85rem; color: var(--muted);
  text-decoration: none; transition: color var(--tr);
}
.funnel-nav-back:hover { color: var(--accent); }


/* ═══════════════════════════════════════════════════════════
   HERO — centered, badge pill, big h1, subheadline
   (mirrors original exactly)
   ═══════════════════════════════════════════════════════════ */
.funnel-hero {
  text-align: center;
  padding: 80px 5vw 48px;
  max-width: 760px; margin: 0 auto;
}

.plan-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230, 51, 41, 0.08);
  border: 1px solid rgba(230, 51, 41, 0.22);
  color: var(--accent);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.plan-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: blink 2s infinite;
}

.funnel-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px; color: var(--text);
}
.funnel-hero h1 em { color: var(--accent); font-style: normal; }

.funnel-hero p,
.subheadline {
  font-size: 1.1rem; color: var(--muted);
  max-width: 540px; margin: 0 auto;
  font-weight: 300; line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   PRICING RECAP — 3 small cards (start project page)
   ═══════════════════════════════════════════════════════════ */
.pricing-recap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: 800px; margin: 0 auto 32px; padding: 0 5vw;
}
.recap-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; text-align: center;
}
.recap-card.active {
  border-color: var(--accent);
  background: rgba(230, 51, 41, 0.05);
}
.rc-name {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--muted); margin-bottom: 4px;
}
.recap-card.active .rc-name { color: var(--accent); }
.rc-price { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.recap-card.active .rc-price { color: var(--accent); }


/* ═══════════════════════════════════════════════════════════
   FORM WRAPPER + CARD
   ═══════════════════════════════════════════════════════════ */
.funnel-wrap {
  max-width: 800px; margin: 56px auto;
  padding: 0 5vw 0px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.form-section-title {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}

/* 2-column grid rows */
.form-row,
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 560px) {
  .form-row, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
}

.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
}
.field:last-of-type, .field.full { margin-bottom: 0; }
.field.full { grid-column: 1 / -1; margin-bottom: 22px; }

label {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--muted);
  text-transform: uppercase;
}
label .req { color: var(--accent); margin-left: 2px; }

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #BCBAB6; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A736C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg);
  padding-right: 40px; cursor: pointer;
}
textarea { resize: vertical; min-height: 120px; }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 51, 41, 0.08);
}
input.has-error, select.has-error, textarea.has-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(230, 51, 41, 0.07);
}

.field-err, .field-error {
  font-size: 0.78rem; color: var(--error);
  display: none; margin-top: -4px;
}
.field-err.show { display: block; }

/* PHP error box */
.form-errors {
  background: rgba(230,51,41,0.05);
  border: 1px solid rgba(230,51,41,0.2);
  border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 22px;
}
.form-errors p {
  font-size: 0.85rem; color: var(--error);
  font-weight: 500; margin-bottom: 4px;
}
.form-errors p:last-child { margin-bottom: 0; }

/* ── TIMELINE PILLS ── */
.timeline-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.timeline-pills input[type="radio"] { display: none; }
.timeline-pills label {
  display: inline-block; padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.84rem; font-weight: 500; color: var(--muted);
  background: var(--bg); cursor: pointer;
  transition: all var(--tr);
}
.timeline-pills input[type="radio"]:checked + label {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.timeline-pills label:hover { border-color: var(--accent); color: var(--accent); }

/* ── DIVIDER ── */
.form-divider,
hr.divider {
  border: none; border-top: 1px solid var(--border); margin: 28px 0;
}

/* ── SUBMIT BUTTON ── */
.submit-btn,
.btn-submit {
  width: 100%; padding: 18px;
  background: var(--accent); color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.01em;
  border: none; border-radius: var(--radius);
  cursor: pointer; position: relative; overflow: hidden;
  transition: background var(--tr), transform 0.15s;
  margin-top: 28px;
  height: auto !important;
}
.submit-btn:hover, .btn-submit:hover {
  background: var(--accent-dim); transform: translateY(-1px);
}
.submit-btn:active, .btn-submit:active { transform: translateY(0); }
.submit-btn:disabled, .btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.submit-btn .btn-text   { transition: opacity 0.2s; }
.submit-btn .btn-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.submit-btn.loading .btn-text   { opacity: 0; }
.submit-btn.loading .btn-loader { opacity: 1; }
.loader-ring {
  width: 22px; height: 22px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ── TRUST STRIP ── */
.trust-strip,
.trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 20px;
  font-size: 0.78rem; color: var(--muted);
}
.trust-item, .trust-row span {
  display: flex; align-items: center; gap: 6px;
}
.trust-row svg { flex-shrink: 0; }

/* ── SOCIAL PROOF BELOW FORM ── */
.social-proof {
  text-align: center; padding: 0 5vw 60px;
  font-size: 0.82rem; color: var(--muted); margin-top: 28px;
}
.social-proof strong { color: var(--text); }

/* ── SUCCESS STATE ── */
.success-msg, .success-state {
  text-align: center; padding: 60px 20px;
}
.success-icon-wrap, .success-icon {
  width: 72px; height: 72px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2rem;
}
.success-icon-wrap svg { width: 32px; height: 32px; color: var(--success); }
.success-state h2, .success-msg h2 {
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.success-state p, .success-msg p { color: var(--muted); max-width: 380px; margin: 0 auto; }
.btn-next {
  display: inline-block; margin-top: 28px;
  padding: 13px 28px; background: var(--accent); color: #fff;
  border-radius: var(--radius); font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: background var(--tr), transform var(--tr);
}
.btn-next:hover { background: var(--accent-dim); transform: translateY(-1px); }

/* ── URGENCY BAR ── */
.urgency-bar {
  text-align: center; padding: 13px 20px;
  background: rgba(230,51,41,0.06);
  border: 1px solid rgba(230,51,41,0.16);
  border-radius: var(--radius);
  font-size: 0.82rem; color: var(--muted); margin-top: 20px;
}
.urgency-bar strong { color: var(--accent); }


/* ═══════════════════════════════════════════════════════════
   BOOK CALL PAGE — two-column layout (mirrors doc 3)
   ═══════════════════════════════════════════════════════════ */
.book-hero {
  text-align: center;
  padding: 64px 5vw 44px;
  max-width: 680px; margin: 0 auto;
}
.book-hero .eyebrow {
  display: inline-block;
  background: rgba(230,51,41,0.08); border: 1px solid rgba(230,51,41,0.22);
  color: var(--accent); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.book-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 20px;
}
.book-hero h1 em { color: var(--accent); font-style: normal; }
.book-hero p { font-size: 1.05rem; color: var(--muted); font-weight: 300; }

/* Two-column grid */
.page-wrap,
.book-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 72px 5vw 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 860px) {
  .page-wrap, .book-grid { grid-template-columns: 1fr; gap: 48px; padding: 48px 5vw 60px; }
}

/* ── LEFT column ── */
.book-left, .left-col { display: flex; flex-direction: column; }

.badge {
  display: inline-block;
  background: rgba(230,51,41,0.08); border: 1px solid rgba(230,51,41,0.22);
  color: var(--accent); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
  align-self: flex-start;
}

.left-col h1, .book-left h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 20px;
}
.left-col h1 em, .book-left h1 em { color: var(--accent); font-style: normal; }

.lead, .hero-desc {
  font-size: 1.05rem; color: var(--muted);
  font-weight: 300; margin-bottom: 40px; max-width: 420px;
  line-height: 1.7;
}

/* Benefits list */
.benefits, .benefits-list {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 44px;
  list-style: none;
}

.benefit, .benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
}

.benefit-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(230,51,41,0.08);
  border: 1px solid rgba(230,51,41,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.benefit-icon svg { width: 18px; height: 18px; color: var(--accent); }

.benefit-text h3, .benefit-body strong {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 3px; display: block;
}
.benefit-text p, .benefit-body span {
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
}

/* Social proof */
.proof-strip, .proof-card {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  font-size: 0.85rem; color: var(--muted);
}
.proof-strip strong, .proof-card strong { color: var(--text); }

.avatars { display: flex; margin-bottom: 10px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: rgba(230,51,41,0.1);
  margin-right: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: black; font-weight: 700;
}

.proof-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.proof-meta strong { display: block; font-size: 0.86rem; font-weight: 600; }
.proof-meta span   { font-size: 0.78rem; color: var(--muted); }
.stars { color: var(--accent); }
.proof-quote { font-size: 0.83rem; color: var(--muted); font-style: italic; line-height: 1.6; }

/* ── RIGHT column ── */
.book-right, .right-col { display: flex; flex-direction: column; gap: 28px; }

/* Calendar card */
.calendar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.calendar-header, .cal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
}
.cal-header h3 { font-size: 1.05rem; font-weight: 700; }
.cal-header p  { font-size: 0.82rem; color: var(--muted); margin-top: 3px; }

/* ── CALENDLY POPUP BUTTON ── */
.calendly-section {
  padding: 40px 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.calendly-section p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 280px;
}
.calendly-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--accent); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.97rem; font-weight: 700;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--tr), transform 0.15s, box-shadow var(--tr);
  text-decoration: none;
}
.calendly-btn:hover {
  background: var(--accent-dim); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,51,41,0.28);
}
.calendly-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.calendly-note {
  font-size: 0.76rem; color: var(--muted); margin-top: 4px;
}

/* OR divider */
.or-divider {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.8rem; color: var(--muted);
}
.or-divider::before, .or-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Fallback card */
.fallback-card {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.fallback-card h2 {
  font-weight: 700; font-size: 1rem; margin-bottom: 6px;
}
.fallback-card > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }

/* Mini fields inside fallback */
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-field { display: flex; flex-direction: column; gap: 7px; }
.mini-field.full { grid-column: 1 / -1; }
.mini-field label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.mini-field input,
.mini-field textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.93rem;
  padding: 12px 14px; width: 100%; outline: none;
  transition: border-color var(--tr), box-shadow var(--tr); -webkit-appearance: none;
}
.mini-field input::placeholder, .mini-field textarea::placeholder { color: #BCBAB6; }
.mini-field input:focus, .mini-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230,51,41,0.07);
}
.mini-field input.has-error { border-color: var(--error); }
.mini-field textarea { min-height: 90px; resize: vertical; }

.fallback-submit, .btn-primary {
  width: 100%; padding: 15px;
  background: var(--accent); color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  border: none; border-radius: var(--radius);
  cursor: pointer; transition: background var(--tr), transform 0.15s;
  margin-top: 8px;
}
.fallback-submit:hover, .btn-primary:hover {
  background: var(--accent-dim); transform: translateY(-1px);
}
.fallback-submit:disabled { opacity: 0.5; pointer-events: none; }

.fallback-success { display: none; text-align: center; padding: 28px 0; }
.fallback-success.visible { display: block; }
.fallback-success .check { font-size: 2.5rem; margin-bottom: 10px; }
.fallback-success h3 { font-weight: 700; margin-bottom: 8px; }
.fallback-success p { font-size: 0.88rem; color: var(--muted); }


/* ═══════════════════════════════════════════════════════════
   THANK YOU PAGE (mirrors doc 4 exactly)
   ═══════════════════════════════════════════════════════════ */
body.funnel-page.ty-page {
  display: flex; flex-direction: column; min-height: 100vh;
}

/* Nav stays — just logo, no back link */
.ty-page .funnel-nav { border-bottom: 1px solid var(--border); }

.ty-hero {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 5vw;
  position: relative;
}

/* Soft radial glow behind check (red version of original green) */
/*.glow {*/
/*  position: absolute;*/
/*  width: 360px; height: 360px;*/
/*  background: radial-gradient(circle, rgba(230,51,41,0.05) 0%, transparent 70%);*/
/*  border-radius: 50%; top: 50%; left: 50%;*/
/*  transform: translate(-50%, -60%); pointer-events: none;*/
/*}*/

/* Animated check ring — mirrors original exactly */
.check-ring {
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 36px; position: relative;
  animation: ring-pulse 2.5s ease infinite;
}
.check-ring::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(230,51,41,0.15);
  animation: ring-pulse 2.5s ease 0.4s infinite;
}
.check-inner {
  font-size: 2.4rem; line-height: 1; color: var(--accent);
}

.ty-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 18px;
}
.ty-hero h1 em { color: var(--accent); font-style: normal; }

.subhead {
  font-size: 1.1rem; color: var(--muted); font-weight: 300;
  max-width: 480px; margin: 0 auto 52px;
}

/* Response badge */
.response-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,51,41,0.07);
  border: 1px solid rgba(230,51,41,0.2);
  border-radius: 100px; padding: 8px 18px;
  font-size: 0.82rem; color: var(--accent);
  margin-bottom: 40px;
}
.dot, .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: blink 1.4s ease infinite;
  flex-shrink: 0;
}

/* Steps card */
.steps-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 40px;
  max-width: 540px; width: 100%; text-align: left;
  margin: 0 auto 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.steps-card h2, .steps-header {
  font-size: 1rem; font-weight: 700; margin-bottom: 24px;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
  padding-bottom: 0; border-bottom: none;
  text-align: center;
}
.steps-list { list-style: none; }
.step-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }

.step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: var(--accent);
}
.step-content strong, .step-text h3 {
  font-size: 0.9rem; font-weight: 700; margin-bottom: 2px;
  display: block; letter-spacing: -0.01em;
}
.step-content span, .step-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.step-time {
  margin-left: auto; font-size: 0.72rem; font-weight: 600; color: var(--muted);
  white-space: nowrap; align-self: flex-start; padding-top: 4px;
}

/* CTA group */
.cta-group {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.btn-primary-ty {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--radius); text-decoration: none;
  transition: background var(--tr), transform 0.15s;
}
.btn-primary-ty:hover { background: var(--accent-dim); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--muted);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 14px 24px; border-radius: var(--radius);
  border: 1px solid var(--border); text-decoration: none;
  transition: color var(--tr), border-color var(--tr);
}
.btn-ghost:hover { color: var(--text); border-color: #aaa; }

/* Footer */
.ty-footer {
  text-align: center; padding: 28px 5vw;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--muted);
}
.ty-footer a { color: var(--accent); text-decoration: none; }


/* ═══════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════ */
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.2; }
}
@keyframes ring-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.6; transform: scale(1.04); }
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .funnel-hero { padding: 52px 5vw 36px; }
  .funnel-wrap { margin: 32px auto; padding: 0 5vw 60px; }
  .form-card   { padding: 28px 20px; }
  .form-row, .form-grid { grid-template-columns: 1fr; }
  .pricing-recap { grid-template-columns: 1fr; }
  .steps-card  { padding: 24px 20px; }
  .cta-group   { flex-direction: column; align-items: stretch; }
  .book-grid, .page-wrap { padding: 40px 5vw 60px; }
  .mini-grid   { grid-template-columns: 1fr; }
  .mini-field.full { grid-column: 1; }
}

select {
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A736C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: var(--bg);
    padding-left: 15px !important;
    cursor: pointer;
    padding: 0;
}

.page-template-template-book-call.page-template-template-book-call-php h1, body.page-template-template-thank-you h1, body.page-template-template-thank-you h2, .page-template-template-book-call h2{
    color: black !important;
}