/* ============================================================
   JUSTCHECKIN — Static Pages Shared Styles
   Covers: About, Contact, Privacy, Terms, Pricing, List-Your-Property
   ============================================================ */

/* ── Shared hero ── */
.sp-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: var(--space-16) var(--space-6);
  text-align: center;
  color: var(--white);
}
.sp-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--white);
  letter-spacing: var(--letter-tight);
}
.sp-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.70);
  margin-top: var(--space-3);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-relaxed);
}
.sp-hero-eyebrow {
  display: inline-block;
  background: rgba(233,69,96,0.2);
  color: #ff8fa3;
  border: 1px solid rgba(233,69,96,0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  margin-bottom: var(--space-4);
}

/* ── Section helpers (replaces inline style= on sections) ── */
.sp-section-alt {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sp-section-dark {
  background: var(--gray-900);
  color: var(--white);
}
.sp-section-pt0 {
  padding-top: 0 !important;
}
.sp-center-header {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.sp-section-sub {
  margin-top: var(--space-2);
}

/* ── CTA banner ── */
.sp-cta-banner {
  background: var(--gray-900);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  text-align: center;
  color: var(--white);
}
.sp-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
}
.sp-cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-2);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
.sp-cta-btn-row {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.sp-btn-outline-white {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* ──────────────────────────────────────────
   ABOUT PAGE
   ────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
}
.about-story-text p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}
.about-story-img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.about-value-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition-base);
}
.about-value-card:hover {
  box-shadow: var(--shadow-lg);
}
.about-value-icon {
  font-size: 40px;
  margin-bottom: var(--space-3);
  display: block;
}
.about-value-name {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--text-primary);
}
.about-value-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-2);
}
.about-stats-band {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-12) var(--space-6);
}
.about-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--primary);
}
.about-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.60);
  margin-top: var(--space-1);
}
.about-mission-box {
  background: var(--primary-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  text-align: center;
  border: 1px solid rgba(233,69,96,0.12);
}
.about-mission-box h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
}
.about-mission-box p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin: 0 auto;
}
.about-partners-row {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.about-partner-chip {
  padding: var(--space-3) var(--space-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}
.about-team-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition-base);
}
.about-team-card:hover { box-shadow: var(--shadow-lg); }
.about-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-4);
  display: block;
  border: 3px solid var(--primary-light);
}
.about-team-avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 32px;
  color: var(--white);
  font-weight: var(--font-bold);
}
.about-team-name {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--text-primary);
}
.about-team-role {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: var(--font-medium);
  margin-top: 2px;
}
.about-team-bio {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   CONTACT PAGE
   ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-10);
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}
.contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  align-items: flex-start;
}
.contact-item-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-item a {
  color: var(--primary);
}
.contact-item a:hover {
  text-decoration: underline;
}
.contact-social-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-base);
}
.contact-social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}
.contact-map-placeholder {
  width: 100%;
  height: 180px;
  background: var(--gray-100);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.contact-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-light);
  color: var(--success);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
}
/* Alpine-driven success/error states */
.contact-success-msg {
  background: var(--success-light);
  border: 1px solid var(--success);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  color: var(--success);
  font-weight: var(--font-semibold);
  font-size: var(--text-md);
}
.contact-error-msg {
  background: var(--danger-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  color: var(--primary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
/* FAQ — Alpine driven */
.contact-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.contact-faq-item:hover { box-shadow: var(--shadow-sm); }
.contact-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5);
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  text-align: left;
}
.contact-faq-icon {
  font-size: var(--text-lg);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.contact-faq-icon-open {
  transform: rotate(45deg);
}
.contact-faq-body {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ──────────────────────────────────────────
   LEGAL PAGES (Privacy + Terms)
   ────────────────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-10);
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
}
.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + var(--topbar-height) + 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
}
.legal-toc-title {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.legal-toc a {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 5px 0;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: var(--space-3);
  transition: all var(--transition-fast);
  line-height: var(--leading-snug);
}
.legal-toc a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
}
.legal-body {
  min-width: 0;
}
.legal-body h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  scroll-margin-top: 80px;
}
.legal-body h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}
.legal-body p, .legal-body li {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}
.legal-body ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}
.legal-body ul li {
  list-style-type: disc;
  margin-bottom: var(--space-2);
}
.legal-updated {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.legal-key-clause {
  background: #eef4ff;
  border-left: 4px solid #3b82f6;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
  margin: var(--space-5) 0;
  font-size: var(--text-sm);
  color: #1e40af;
  line-height: var(--leading-relaxed);
}
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.legal-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-breadcrumb span { color: var(--text-light); }

/* ──────────────────────────────────────────
   PRICING PAGE
   ────────────────────────────────────────── */
.pricing-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: var(--space-16) var(--space-6);
  text-align: center;
  color: var(--white);
}
.pricing-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--white);
  letter-spacing: var(--letter-tight);
}
.pricing-hero p {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.70);
  margin-top: var(--space-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-toggle-row {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing-toggle-btn {
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  background: transparent;
  color: rgba(255,255,255,0.70);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}
.pricing-toggle-btn.active {
  background: var(--white);
  color: var(--secondary);
}
.pricing-save-badge {
  display: inline-block;
  background: rgba(233,69,96,0.2);
  color: #ff8fa3;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: var(--font-bold);
  padding: 2px 7px;
  vertical-align: middle;
  margin-left: 4px;
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.pricing-card:hover { box-shadow: var(--shadow-xl); }
.pricing-card-featured {
  border: 2px solid var(--primary);
  transform: scale(1.04);
}
.pricing-card-featured:hover { transform: scale(1.05); }
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.pricing-plan-name {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text-primary);
}
.pricing-plan-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}
.pricing-amount-block {
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
  line-height: 1;
}
.pricing-currency {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  vertical-align: super;
  color: var(--text-primary);
}
.pricing-price-num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
}
.pricing-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.pricing-feat-row {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.pricing-feat-row .feat-check {
  color: var(--success);
  font-weight: var(--font-bold);
  flex-shrink: 0;
}
.pricing-feat-row.feat-off {
  color: var(--text-light);
}
.pricing-feat-row.feat-off .feat-check {
  color: var(--text-light);
}
.pricing-comparison-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-compare-table th {
  padding: var(--space-3) var(--space-4);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  background: var(--gray-50);
  border-bottom: 2px solid var(--border);
}
.pricing-compare-table th:first-child { text-align: left; }
.pricing-compare-table td {
  padding: var(--space-3) var(--space-4);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.pricing-compare-table td:first-child {
  text-align: left;
  font-weight: var(--font-medium);
  color: var(--text-primary);
}
.pricing-compare-table tr:hover td { background: var(--gray-50); }
.td-yes { color: var(--success); }
.td-no  { color: var(--danger); }
.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 900px;
  margin: 0 auto;
}
.pricing-faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.pricing-faq-q {
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.pricing-faq-a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ──────────────────────────────────────────
   LIST YOUR PROPERTY PAGE
   ────────────────────────────────────────── */
.lyp-hero {
  background: linear-gradient(135deg, #0f3460 0%, #1a3c6e 55%, #e94560 100%);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
}
.lyp-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  letter-spacing: var(--letter-tight);
  margin-bottom: var(--space-4);
}
.lyp-hero p {
  font-size: var(--text-lg);
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: var(--leading-relaxed);
}
.lyp-cta-row {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.lyp-benefits-section {
  padding: var(--space-16) 0;
  background: var(--white);
}
.lyp-benefits-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
  margin: 0 0 var(--space-10);
}
.lyp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.lyp-benefit-card {
  background: var(--surface-cool);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid rgba(59,130,246,0.1);
  transition: box-shadow var(--transition-base);
}
.lyp-benefit-card:hover { box-shadow: var(--shadow-md); }
.lyp-benefit-icon {
  font-size: 2.4rem;
  margin-bottom: var(--space-3);
  display: block;
}
.lyp-benefit-card h3 {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}
.lyp-benefit-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}
.lyp-how-section {
  padding: var(--space-16) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
}
.lyp-how-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
  margin: 0 0 var(--space-10);
}
.lyp-steps-row {
  display: flex;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.lyp-steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: var(--primary);
  opacity: 0.20;
  z-index: 0;
}
.lyp-step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 1;
}
.lyp-step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 20px;
  font-weight: var(--font-extrabold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 4px 16px rgba(233,69,96,0.3);
}
.lyp-step h4 {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}
.lyp-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: var(--leading-relaxed);
}
.lyp-form-section {
  padding: var(--space-16) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.lyp-form-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}
.lyp-form-section p.lyp-form-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
}
.lyp-lead-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.lyp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.lyp-testimonial-band {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-12) 0;
  text-align: center;
}
.lyp-testimonial-band h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-8);
}
.lyp-testimonials-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}
.lyp-testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: left;
}
.lyp-testimonial-quote {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}
.lyp-testimonial-author {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.50);
  font-weight: var(--font-semibold);
}
.lyp-trust-logos-row {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.lyp-trust-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.03em;
}
.lyp-bottom-cta {
  background: var(--primary-gradient);
  padding: var(--space-16) 0;
  text-align: center;
  color: var(--white);
}
.lyp-bottom-cta h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  margin: 0 0 var(--space-2);
  letter-spacing: var(--letter-tight);
}
.lyp-bottom-cta p {
  font-size: var(--text-lg);
  opacity: 0.90;
  margin: 0 0 var(--space-8);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: none; }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: none; }
  .pricing-faq-grid { grid-template-columns: 1fr; }
  .lyp-steps-row { flex-direction: column; align-items: flex-start; gap: var(--space-6); }
  .lyp-steps-row::before { display: none; }
  .lyp-step { display: flex; gap: var(--space-4); text-align: left; padding: 0; }
  .lyp-step-num { flex-shrink: 0; width: 48px; height: 48px; font-size: 18px; margin: 0; }
  .lyp-testimonials-row { grid-template-columns: 1fr; }
  .lyp-form-row { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .sp-hero h1 { font-size: var(--text-3xl); }
  .lyp-hero h1 { font-size: var(--text-3xl); }
}
