/* =============================================================================
   DIGITECHZO — Real Estate Tokenization Platform Development Styles
   ============================================================================= */

:root {
  --primary-accent: #57B71B;
  --primary-accent-dark: #469815;
  --primary-accent-light: rgba(87, 183, 27, 0.1);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-section-alt: #f8fafc;
  --border-color: #e2e8f0;
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  color: #334155;
  background-color: #ffffff;
  overflow-x: clip;
}

header.sticky-top,
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  background-color: #ffffff !important;
}

/* Eyebrow Badge */
.badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(87, 183, 27, 0.08);
  color: var(--primary-accent);
  border: 1px solid rgba(87, 183, 27, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Section Titles & Subtitles */
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-padding {
  padding: 60px 0;
}

.problem-section {
  padding-top: 45px !important;
  padding-bottom: 65px !important;
}

.bg-section-alt {
  background-color: var(--bg-section-alt);
}

.text-accent {
  color: var(--primary-accent) !important;
}

.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-850 { max-width: 850px; }
.max-w-900 { max-width: 900px; }

/* Buttons */
.btn-accent {
  background-color: var(--primary-accent);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid var(--primary-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(87, 183, 27, 0.25);
  text-decoration: none;
  cursor: pointer;
}

.btn-accent:hover {
  background-color: var(--primary-accent-dark);
  border-color: var(--primary-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 183, 27, 0.35);
}

.btn-outline-dark {
  background-color: #ffffff;
  color: var(--text-dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline-dark:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  transform: translateY(-2px);
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero-section {
  padding: 60px 0 35px;
  background: radial-gradient(circle at 50% 10%, rgba(87, 183, 27, 0.04) 0%, transparent 60%);
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 30px;
}

.hero-emoji-animated {
  display: inline-block;
  animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px) scale(1.1); }
}

/* Hero Visual Flow Card */
.hero-visual-card-white {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  margin-top: 36px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.pulse-badge-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  width: fit-content;
  margin: 0 auto;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 rgba(87, 183, 27, 0.7);
  animation: pulseAnim 1.8s infinite;
}

@keyframes pulseAnim {
  0% { box-shadow: 0 0 0 0 rgba(87, 183, 27, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(87, 183, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 183, 27, 0); }
}

.hero-standard-tag {
  font-size: 0.8rem;
  color: #64748b;
  font-family: var(--bs-font-monospace, monospace);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-top: 4px;
}

.visual-flow-step-white {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visual-flow-step-white:hover {
  border-color: rgba(87, 183, 27, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.visual-node-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.visual-node-icon-white {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.visual-node-text {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-align: left;
}

.visual-node-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.visual-node-desc {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.visual-node-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  line-height: 1.2;
}

.badge-illiquid {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.badge-protocol {
  background: #57B71B;
  color: #ffffff;
  border: none;
}

.badge-compliant {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.badge-yield {
  background: #57B71B;
  color: #ffffff;
  border: none;
}

.visual-arrow-connector-white {
  display: flex;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.95rem;
  margin: -6px 0;
}

@media (max-width: 575px) {
  .hero-visual-card-white {
    padding: 16px 10px;
    border-radius: 16px;
    margin-top: 24px;
  }
  .pulse-badge-white {
    font-size: 0.76rem;
    padding: 5px 12px;
    gap: 6px;
  }
  .hero-standard-tag {
    font-size: 0.72rem;
  }
  .visual-flow-step-white {
    padding: 10px 10px;
    gap: 8px;
    border-radius: 12px;
  }
  .visual-node-left {
    gap: 8px;
  }
  .visual-node-icon-white {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .visual-node-title {
    font-size: 0.82rem;
  }
  .visual-node-desc {
    font-size: 0.7rem;
  }
  .visual-node-badge {
    font-size: 0.65rem;
    padding: 4px 7px;
    border-radius: 6px;
  }
}

/* =============================================================================
   SECTION 2 — DELOITTE STAT & MARKET OPPORTUNITY
   ============================================================================= */
.editorial-quote-box {
  border-left: 4px solid var(--primary-accent);
  background: rgba(87, 183, 27, 0.05);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
}

.deloitte-stat-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
}

.stat-number-hero {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-accent);
}

.growth-progress-bar {
  width: 100%;
  height: 12px;
  background-color: #f1f5f9;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.growth-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #469815, #57B71B);
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================================
   SECTION 3 — CAPABILITY CARDS
   ============================================================================= */
.capability-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(87, 183, 27, 0.4);
  box-shadow: 0 18px 36px rgba(87, 183, 27, 0.08);
}

.capability-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--primary-accent);
  background: rgba(87, 183, 27, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
}

.capability-benefit-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.84rem;
  color: #475569;
  margin-top: 14px;
  border: 1px solid #e2e8f0;
}

/* =============================================================================
   SECTION 4 — WHY DIGITECHZO
   ============================================================================= */
.why-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(87, 183, 27, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.why-icon-badge {
  width: 52px;
  height: 52px;
  background: rgba(87, 183, 27, 0.1);
  color: var(--primary-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

/* =============================================================================
   SECTION 5 — HOW IT WORKS (TIMELINE STEPS)
   ============================================================================= */
.timeline-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(87, 183, 27, 0.4);
  box-shadow: 0 14px 32px rgba(87, 183, 27, 0.06);
}

.step-badge {
  width: 42px;
  height: 42px;
  background: var(--primary-accent);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(87, 183, 27, 0.3);
}

/* =============================================================================
   SECTION 6 — BENEFITS GRID
   ============================================================================= */
.benefit-grid-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: all 0.25s ease;
}

.benefit-grid-item:hover {
  border-color: rgba(87, 183, 27, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.benefit-check-icon {
  width: 32px;
  height: 32px;
  background: rgba(87, 183, 27, 0.1);
  color: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================================================
   SECTION 7 — TYPICAL BUILD / INTERACTIVE DASHBOARD WINDOW
   ============================================================================= */
.dashboard-mockup-window {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.dashboard-topbar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.dashboard-nav-tabs {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 14px 0;
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.dash-tab-btn {
  background: transparent;
  border: none;
  padding: 9px 16px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #64748b;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.dash-tab-btn:hover {
  color: var(--text-dark);
}

.dash-tab-btn.active {
  color: var(--primary-accent);
  border-bottom-color: var(--primary-accent);
}

.dashboard-body-content {
  padding: 22px;
}

.outcome-metric-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

/* =============================================================================
   SECTION 8 — FAQ ACCORDION
   ============================================================================= */
.faq-accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.faq-accordion-item.active {
  border-color: rgba(87, 183, 27, 0.4);
}

.faq-question-btn {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
}

.faq-question-btn:hover {
  color: var(--primary-accent);
}

.faq-icon-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #64748b;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-accordion-item.active .faq-icon-chevron {
  transform: rotate(180deg);
  background: rgba(87, 183, 27, 0.15);
  color: var(--primary-accent);
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-accordion-item.active .faq-answer-collapse {
  max-height: 500px;
}

.faq-answer-body {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}

/* =============================================================================
   FINAL CTA SECTION
   ============================================================================= */
.final-cta-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(87, 183, 27, 0.08) 0%, #ffffff 80%);
}

.final-cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

/* =============================================================================
   LEAD CAPTURE MODAL DIALOG
   ============================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 16px;
}

.modal-overlay.active,
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card,
.modal-overlay.show .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #9CA3AF;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  z-index: 10;
}

.modal-close:hover {
  color: #111827;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(78, 176, 40, 0.12);
  color: #4EB028;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: #6B7280;
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-label-clean {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
  display: block;
}

.form-input-clean,
.form-select-clean {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 14px;
  color: #111827;
  font-size: 0.92rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input-clean::placeholder {
  color: #9CA3AF;
}

.form-input-clean:focus,
.form-select-clean:focus {
  border-color: #4EB028;
  box-shadow: 0 0 0 3px rgba(78, 176, 40, 0.15);
  background: #FFFFFF;
}

.btn-modal-submit {
  background: #4EB028;
  background: linear-gradient(135deg, #57B71B 0%, #469815 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(87, 183, 27, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-modal-submit:hover {
  background: linear-gradient(135deg, #469815 0%, #3a7e11 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(87, 183, 27, 0.4);
}

.form-note {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-align: center;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  z-index: 11000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Sticky Bottom Floating CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9990;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--primary-accent);
  padding: 12px 0;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.sticky-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.sticky-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
}

.sticky-text span {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.btn-sticky-cta {
  flex-shrink: 0;
  background: #4EB028;
  background: linear-gradient(135deg, #57B71B 0%, #469815 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(87, 183, 27, 0.3);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-sticky-cta:hover {
  background: linear-gradient(135deg, #469815 0%, #3a7e11 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(87, 183, 27, 0.4);
  color: #ffffff !important;
}

.btn-sticky-cta i {
  font-size: 0.95rem;
  line-height: 1;
}

@media (max-width: 991px) {
  .section-padding { padding: 50px 0; }
  .hero-section { padding: 45px 0 25px !important; }
  .problem-section { padding-top: 30px !important; padding-bottom: 50px !important; }
  .sticky-text strong { font-size: 0.92rem; }
  .sticky-text span { font-size: 0.8rem; }
  .btn-sticky-cta { padding: 10px 22px; font-size: 0.88rem; }
}

@media (max-width: 767px) {
  .sticky-cta-bar { padding: 10px 0; }
  .sticky-container {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .sticky-text { display: none !important; }
  .btn-sticky-cta {
    margin: 0 auto;
    padding: 11px 28px;
    font-size: 0.92rem;
    box-shadow: 0 4px 14px rgba(87, 183, 27, 0.35);
  }
}

@media (max-width: 575px) {
  .section-padding { padding: 40px 0; }
  .hero-section { padding: 35px 0 20px !important; }
  .problem-section { padding-top: 25px !important; padding-bottom: 40px !important; }
}

