/* ============================================================
   initiative.css — ConsultPi SMB Landing Page Styles
   Depends on: styles.css (main ConsultPi stylesheet)
   ============================================================ */

/* ============================================================
   HERO — SMB variant
   ============================================================ */

/* Override the index.html .hero so the SMB page hero renders correctly.
   The main site wraps content in .hero-content; here content is direct
   children of .container, so we re-declare the section itself. */
.hero {
  background: linear-gradient(135deg, var(--primary-100, #0077c2) 0%, var(--accent-200, #00619a) 100%);
  padding: 140px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(0, 191, 255, 0.18) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeUp 0.5s ease both;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 22px;
  max-width: 760px;
  animation: fadeUp 0.5s 0.1s ease both;
}

.hero h1 span {
  background: linear-gradient(90deg, #c8ffff, #90e0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .container > p,
.hero .container > p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.75;
  color: white;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero h1,
.hero h2 {
  color: white;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}

.hero-trust {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.4s ease both;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.trust-pill i {
  color: #c8ffff;
}

/* ============================================================
   BUTTON EXTENSIONS
   ============================================================ */
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ============================================================
   STATS FLOATING CARD
   ============================================================ */
.stats-float-wrap {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-inline: auto;
}

.stats-bar {
  background: var(--bg-100, #ffffff);
  border-radius: var(--border-radius, 8px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  border: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-right: 1px solid #f0f0f0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-100, #0077c2), var(--accent-100, #00bfff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-200, #5c5c5c);
  font-weight: 500;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-alt {
  background: var(--bg-200, #f5f5f5);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-100, #0077c2) 0%, var(--accent-200, #00619a) 100%);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-label-blue {
  color: var(--primary-100, #0077c2);
  background: rgba(0, 119, 194, 0.08);
  border: 1px solid rgba(0, 119, 194, 0.18);
}

.section-label-white {
  color: var(--primary-300, #c8ffff);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-dark .section-title h2 {
  color: white;
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-100, #0077c2);
  background: rgba(0, 119, 194, 0.08);
  border: 1px solid rgba(0, 119, 194, 0.18);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.problem-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-100, #333333);
}

.problem-left p {
  font-size: 1rem;
  color: var(--text-200, #5c5c5c);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bg-100, #ffffff);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius, 8px);
  box-shadow: var(--shadow, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateX(6px);
  border-color: var(--primary-100, #0077c2);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.pain-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.pi-red  { background: #fef2f2; }
.pi-orange { background: #fff7ed; }
.pi-yellow { background: #fefce8; }

.pain-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-100, #333333);
}

.pain-card p {
  font-size: 0.87rem;
  color: var(--text-200, #5c5c5c);
  line-height: 1.55;
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius, 8px);
  padding: 30px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-300, #c8ffff), var(--accent-100, #00bfff));
  opacity: 0;
  transition: opacity 0.3s;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-5px);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.solution-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.solution-card p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  border: 1px solid #e5e7eb;
}

.pricing-top {
  background: linear-gradient(135deg, var(--primary-100, #0077c2), var(--accent-200, #00619a));
  padding: 44px 48px 36px;
  text-align: center;
  color: white;
}

.pricing-offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.pricing-range {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.pricing-range sup {
  font-size: 1.4rem;
  vertical-align: top;
  padding-top: 0.6rem;
  display: inline-block;
}

.pricing-period {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 8px;
}

.pricing-chai {
  margin: 22px auto 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 0.9rem;
  display: inline-block;
  max-width: 500px;
}

.pricing-body {
  padding: 36px 48px;
  background: var(--bg-100, #ffffff);
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-100, #333333);
}

.pf-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-100, #0077c2), var(--accent-100, #00bfff));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.pricing-cta-wrap {
  text-align: center;
}

.pricing-cta-wrap p {
  font-size: 0.82rem;
  color: var(--text-200, #5c5c5c);
  margin-top: 12px;
}

/* ============================================================
   FEATURES — What You Get
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px 26px;
  border-radius: var(--border-radius, 8px);
  border: 1px solid #e5e7eb;
  background: var(--bg-100, #ffffff);
  box-shadow: var(--shadow, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-100, #0077c2), var(--accent-100, #00bfff));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  border-color: var(--primary-100, #0077c2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-100, #0077c2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-100, #0077c2), var(--accent-100, #00bfff));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0, 119, 194, 0.25);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-100, #333333);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-200, #5c5c5c);
  line-height: 1.6;
}

/* ============================================================
   USE CASES
   ============================================================ */
.usecases-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

.usecase-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--bg-100, #ffffff);
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-100, #333333);
  box-shadow: var(--shadow, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  cursor: pointer;
  transition: all 0.3s ease;
}

.usecase-chip:hover {
  background: var(--primary-100, #0077c2);
  color: white;
  border-color: var(--primary-100, #0077c2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.usecase-chip span {
  font-size: 1.2rem;
}

.usecases-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-200, #5c5c5c);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   PARTNER CTA — SMB variant
   ============================================================ */
.partner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============================================================
   CONTACT — inline contact section
   ============================================================ */
.contact-page-hero {
  background: linear-gradient(135deg, var(--primary-100, #0077c2) 0%, var(--accent-200, #00619a) 100%);
  color: white;
  text-align: center;
  padding: 90px 0 70px;
}

.contact-page-hero h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
  background: var(--bg-200, #f5f5f5);
}

.contact-container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.contact-form-container {
  background: var(--bg-100, #ffffff);
  padding: 40px;
  border-radius: var(--border-radius, 8px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.form-header {
  margin-bottom: 28px;
}

.form-header h3 {
  font-size: 1.6rem;
  color: var(--text-100, #333333);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-header p {
  color: var(--text-200, #5c5c5c);
  font-size: 0.95rem;
}

#successBanner {
  background: white;
  color: #065f46;
  border: 1px solid #d1fae5;
  border-left: 4px solid #10b981;
  border-radius: 10px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

#successBanner i {
  color: #10b981;
  font-size: 1.3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 7px;
  color: var(--text-100, #333333);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--bg-300, #cccccc);
  border-radius: var(--border-radius, 8px);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-100, #333333);
  background: var(--bg-100, #ffffff);
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-100, #0077c2);
  box-shadow: 0 0 0 3px rgba(0, 119, 194, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-200, #5c5c5c);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.phone-input-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.country-code-select {
  flex: 0 0 110px;
  min-width: 0;
}

.phone-number-input {
  flex: 1;
  min-width: 0;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-100, #0077c2), var(--accent-100, #00bfff));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: var(--border-radius, 8px);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--accent-200, #00619a), var(--primary-100, #0077c2));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: var(--bg-100, #ffffff);
  border-radius: var(--border-radius, 8px);
  box-shadow: var(--shadow, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-100, #0077c2), var(--accent-100, #00bfff));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-100, #333333);
}

.method-content p {
  font-size: 0.87rem;
  color: var(--text-200, #5c5c5c);
  line-height: 1.5;
  margin-bottom: 3px;
}

.method-content a {
  color: var(--primary-100, #0077c2);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.method-content a:hover {
  color: var(--accent-200, #00619a);
}

.response-time {
  background: linear-gradient(135deg, var(--primary-100, #0077c2), var(--accent-100, #00bfff));
  color: white;
  padding: 26px;
  border-radius: var(--border-radius, 8px);
  text-align: center;
}

.response-time h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.response-time p {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-100, #ffffff);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius, 8px);
  box-shadow: var(--shadow, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--primary-100, #0077c2);
}

.faq-question {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-100, #333333);
  gap: 16px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-200, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-100, #0077c2);
  font-weight: 700;
  transition: all 0.3s;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--primary-100, #0077c2);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-200, #5c5c5c);
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid #f0f0f0; border-top: 1px solid #f0f0f0; }
  .stat-item:nth-child(4) { border-top: 1px solid #f0f0f0; }
}

@media (max-width: 768px) {
  .contact-container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-features-grid { grid-template-columns: 1fr; }
  .pricing-body { padding: 28px 24px; }
  .pricing-top { padding: 36px 24px 28px; }
  .contact-form-container { padding: 24px; }
}

@media (max-width: 576px) {
  .hero { padding: 110px 0 80px; }
  .hero-cta { flex-direction: column; }
  .partner-btns { flex-direction: column; align-items: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .phone-input-group { flex-direction: column; }
}
