/* ============================================================
   LANDING PAGE STYLES — lp.css
   Shared across all product landing pages
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C4984D;
  --gold-bright: #FFBF00;
  --gold-light: #FFF7E6;
  --gold-pale: #FDF3E0;
  --navy: #000F2A;
  --navy-mid: #1B305B;
  --white: #FFFFFF;
  --cream: #FBF7F0;
  --text-1: #0D1B2A;
  --text-2: #4A5568;
  --text-3: #718096;
  --border: #E8E0D0;
  --border-gold: #D4B483;
  --green: #16A34A;
  --red: #DC2626;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-1);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

h1,h2,h3,h4 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- TOP BAR ---- */
.lp-topbar {
  background: var(--navy);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-topbar-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.lp-topbar-cta {
  background: var(--gold-bright);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .2s;
}
.lp-topbar-cta:hover { opacity: .88; }

/* WhatsApp button in topbar */
.lp-topbar-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .2s, transform .2s;
}
.lp-topbar-whatsapp:hover { opacity: .9; transform: translateY(-1px); }

/* ---- MAIN LAYOUT ---- */
.lp-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 52px 0 80px;
}
.lp-main { min-width: 0; }
.lp-aside {
  position: sticky;
  top: 90px;
}

/* ---- HERO ---- */
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: #7A5A1A;
  border: 1px solid var(--border-gold);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lp-h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-h1 span { color: var(--gold); }
.lp-lead {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 620px;
}

/* Instructor row */
.lp-instructor-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.lp-instructor-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
}
.lp-instructor-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lp-instructor-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.lp-instructor-title { font-size: 12px; color: var(--text-3); }

/* Stats row */
.lp-stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.lp-stat-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); }
.lp-stat-icon { font-size: 18px; }
.lp-stat-val { font-weight: 700; color: var(--navy); }

/* ---- SECTIONS ---- */
.lp-section { margin-bottom: 48px; }
.lp-section-title {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-light);
}

/* What you'll get */
.lp-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-outcome-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-2);
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 10px;
  line-height: 1.5;
}
.lp-outcome-icon { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Curriculum */
.lp-curriculum { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lp-module {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-module:last-child { border-bottom: none; }
.lp-module-num {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--gold-bright);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-module-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.lp-module-desc { font-size: 13px; color: var(--text-3); }

/* Process steps (for consultations) */
.lp-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.lp-steps::before {
  content: '';
  position: absolute;
  left: 19px; top: 32px; bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}
.lp-step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  position: relative;
}
.lp-step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold-bright);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
}
.lp-step-title { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.lp-step-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Instructor full */
.lp-instructor-box {
  display: flex;
  gap: 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  align-items: flex-start;
}
.lp-instructor-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.lp-instructor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lp-instructor-bio-name { font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.lp-instructor-bio-role { font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.lp-instructor-bio-text { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* Testimonials */
.lp-testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-testi {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.lp-testi-stars { color: #FAAD14; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.lp-testi-text { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.lp-testi-author { display: flex; align-items: center; gap: 10px; }
.lp-testi-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-testi-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.lp-testi-loc { font-size: 11px; color: var(--text-3); }

/* FAQ */
.lp-faq { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lp-faq-item { border-bottom: 1px solid var(--border); }
.lp-faq-item:last-child { border-bottom: none; }
.lp-faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.lp-faq-q::after { content: '+'; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.lp-faq-item.open .lp-faq-q::after { content: '−'; }
.lp-faq-a {
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.lp-faq-item.open .lp-faq-a { max-height: 300px; padding: 0 20px 16px; }

/* ---- CHECKOUT CARD (aside) ---- */
.lp-card {
  background: var(--white);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lp-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.lp-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lp-card-body { padding: 24px; }
.lp-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.lp-card-price-main {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
}
.lp-card-price-old {
  font-size: 18px;
  color: var(--text-3);
  text-decoration: line-through;
}
.lp-card-price-off {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: #DCFCE7;
  padding: 2px 8px;
  border-radius: 100px;
}
.lp-card-guarantee {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Checkout form */
.lp-form { display: flex; flex-direction: column; gap: 12px; }
.lp-form-group { display: flex; flex-direction: column; gap: 5px; }
.lp-form-label { font-size: 12px; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: .04em; }
.lp-form input,
.lp-form select,
.lp-form textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-1);
  font-family: inherit;
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.lp-form textarea { resize: vertical; min-height: 80px; }

.lp-btn-main {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--navy);
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(196,152,77,.35);
  margin-top: 4px;
  font-family: inherit;
}
.lp-btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,152,77,.5); }

.lp-card-includes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.lp-card-includes-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin-bottom: 10px; }
.lp-card-include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 7px;
}
.lp-card-include-icon { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Secure badge */
.lp-secure {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Success message */
.lp-success {
  display: none;
  background: #DCFCE7;
  border: 1.5px solid #16A34A;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.lp-success h3 { font-size: 18px; color: #166534; margin-bottom: 8px; }
.lp-success p { font-size: 14px; color: #166534; }

/* ---- METRICS BANNER ---- */
.lp-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.lp-metric-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.lp-metric-item:last-child { border-right: none; }
.lp-metric-num {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 6px;
}
.lp-metric-label { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500; }

/* ---- WHO IS THIS FOR ---- */
.lp-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp-for-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.lp-for-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-for-card-title .badge-yes { color: var(--green); }
.lp-for-card-title .badge-no { color: var(--red); }
.lp-for-list li {
  font-size: 13px;
  color: var(--text-2);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.lp-for-list li:last-child { border-bottom: none; }
.lp-for-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---- COMPARISON TABLE ---- */
.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 14px;
}
.lp-compare-table th {
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
}
.lp-compare-table th:first-child { text-align: left; background: var(--navy-mid); }
.lp-compare-table th.highlight { background: var(--gold); color: var(--navy); }
.lp-compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  text-align: center;
}
.lp-compare-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); background: var(--cream); }
.lp-compare-table td.highlight { background: var(--gold-light); font-weight: 700; color: var(--navy); }
.lp-compare-table tr:last-child td { border-bottom: none; }
.lp-check { color: var(--green); font-size: 16px; }
.lp-cross { color: var(--red); opacity: .6; }

/* ---- BOTTOM CTA BANNER ---- */
.lp-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.lp-cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(196,152,77,.25) 0%, transparent 70%);
  border-radius: 50%;
}
.lp-cta-banner-title {
  font-family: Georgia, serif;
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.lp-cta-banner-title span { color: var(--gold-bright); }
.lp-cta-banner-sub { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 24px; position: relative; }
.lp-cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.lp-cta-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,152,77,.5); }

/* ---- TRUST BAR ---- */
.lp-trust {
  background: var(--navy);
  padding: 18px 0;
}
.lp-trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.lp-trust-icon { font-size: 18px; }
.lp-trust-val { font-weight: 700; color: var(--gold-bright); }

/* ---- FOOTER ---- */
.lp-footer {
  background: var(--navy);
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-top: 60px;
}
.lp-footer a { color: rgba(255,255,255,.5); }
.lp-footer a:hover { color: var(--gold); }

/* ---- ANCHOR NAV ---- */
.lp-anchor-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}
.lp-anchor-nav::-webkit-scrollbar { display: none; }
.lp-anchor-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  align-items: center;
  white-space: nowrap;
}
.lp-anchor-link {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  flex-shrink: 0;
}
.lp-anchor-link:hover { color: var(--navy); border-color: var(--gold); }
.lp-anchor-cta {
  margin-left: auto;
  background: var(--navy);
  color: var(--gold-bright) !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  border-bottom: none !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}
.lp-anchor-cta:hover { opacity: .88; border-color: transparent !important; }

/* ---- SCARCITY BADGE ---- */
.lp-scarcity {
  background: #FFF7E6;
  border: 1px solid #FDE68A;
  color: #92400E;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- SOCIAL PROOF PULSE ---- */
.lp-social-pulse {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-pulse-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

/* ---- STICKY BOTTOM CTA ---- */
.lp-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform .35s ease;
  display: none;
}
.lp-bottom-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-bottom-cta-price {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.lp-bottom-cta-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  font-family: inherit;
  display: block;
  margin-top: 2px;
}
.lp-bottom-cta-btn {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  transition: opacity .2s;
}
.lp-bottom-cta-btn:hover { opacity: .88; }

/* ---- WHATSAPP FLOAT ---- */
.lp-wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 199;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.lp-wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.lp-wa-float svg { width: 28px; height: 28px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .lp-body { grid-template-columns: 1fr; }
  .lp-aside { position: static; margin-top: 28px; margin-bottom: 8px; }
  .lp-outcomes { grid-template-columns: 1fr; }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-bottom-cta { display: block; }
  .lp-wa-float { bottom: 80px; }
  .lp-metrics { grid-template-columns: repeat(2, 1fr); }
  .lp-metrics .lp-metric-item:nth-child(2) { border-right: none; }
  .lp-metrics .lp-metric-item:nth-child(1),
  .lp-metrics .lp-metric-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 600px) {
  .lp-topbar { padding: 12px 16px; }
  .lp-topbar-whatsapp { padding: 9px 14px; font-size: 13px; }
  .lp-anchor-link { padding: 12px 14px; }
  .lp-wrap { padding: 0 16px; }
  .lp-body { padding: 28px 0 80px; gap: 32px; }
  .lp-stats-row { gap: 16px; }
  .lp-bottom-cta-price { font-size: 18px; }
  .lp-metrics { grid-template-columns: repeat(2, 1fr); }
  .lp-for-grid { grid-template-columns: 1fr; }
  .lp-cta-banner { padding: 28px 20px; }
  .lp-cta-banner-title { font-size: 20px; }
}
