/* ===================================================
   QualityReady - Audit Manager Landing Page CSS
   Bootstrap 5 + SASH-inspired Design
   =================================================== */

:root {
  --primary: #2249AA;
  --primary-dark: #011388;
  --primary-light: #3b6fd4;
  --accent: #5cb85c;
  --accent-dark: #4cae4c;
  --white: #fff;
  --light: #f8f9fa;
  --dark: #1a1a2e;
  --gray: #6c757d;
  --shadow: 0 4px 24px rgba(34, 73, 170, 0.12);
  --shadow-hover: 0 8px 40px rgba(34, 73, 170, 0.22);
  --radius: 12px;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ================================================================
   LANDING TOP HEADER – Navbar + Hero (SASH-Style)
   ================================================================ */

.lp-top-header {
  background:
    linear-gradient(135deg, rgba(1,19,136,0.93) 0%, rgba(34,73,170,0.88) 55%, rgba(10,40,120,0.92) 100%),
    url('../../images/landing-bg4.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
/* Linkes Deko-Element */
.lp-top-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 40%;
  height: 85%;
  background-image: url('../../images/landing-bg-deco.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  opacity: 0.12;
  pointer-events: none;
}
/* Radiales Glow rechts */
.lp-top-header::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92,184,92,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Navbar (sticky innerhalb des Headers) ---- */
.lp-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 0 0.75rem;
  border-bottom: 1px solid transparent;
}
.lp-nav-wrap.scrolled {
  background: rgba(1, 10, 100, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  border-bottom-color: rgba(255,255,255,0.06);
}
.lp-logo img { display: block; }

.lp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
  align-items: center;
}
.lp-nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.lp-nav-link:hover,
.lp-nav-link.active { color: #fff; background: rgba(255,255,255,0.08); }

/* Hamburger */
.lp-toggler {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lp-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
}

/* Mobile menu */
.lp-mobile-menu {
  background: rgba(1,10,100,0.97);
  padding: 1.25rem 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lp-mobile-menu .lp-nav-link { padding: 0.6rem 0.5rem; }

/* Buttons */
.btn-lp-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(92,184,92,0.3);
}
.btn-lp-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(92,184,92,0.4);
}
.btn-lp-primary.btn-lp-lg { padding: 0.8rem 1.9rem; font-size: 1rem; }

.btn-lp-outline {
  color: rgba(255,255,255,0.88);
  border: 2px solid rgba(255,255,255,0.38);
  border-radius: 8px;
  padding: 0.53rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  transition: all 0.25s;
}
.btn-lp-outline:hover {
  border-color: rgba(255,255,255,0.75);
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.btn-lp-outline.btn-lp-lg { padding: 0.78rem 1.85rem; font-size: 1rem; }

/* ---- Hero ---- */
.lp-hero {
  padding: 70px 0 120px;
  position: relative;
}
.lp-hero-text { position: relative; z-index: 2; padding-bottom: 2rem; }

.hero-tag {
  display: inline-block;
  background: rgba(92,184,92,0.18);
  color: #8de88d;
  border: 1px solid rgba(92,184,92,0.4);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.28rem 0.9rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.lp-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.lp-hero-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 1.4rem;
}
.lp-highlight {
  color: var(--accent);
  position: relative;
}
.lp-highlight::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}
.lp-hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}
.lp-trust span { display: flex; align-items: center; gap: 0.35rem; }
.lp-trust i { color: var(--accent); font-size: 0.9rem; }

/* ---- Hero Image (floating like SASH market4.png) ---- */
.lp-hero-img-col { position: relative; z-index: 2; }
.lp-hero-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.lp-hero-img {
  width: 100%;
  max-width: 580px;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  animation: heroFloat 4s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Floating badges on the image */
.lp-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  animation: badgeFloat 4s ease-in-out infinite;
  white-space: nowrap;
}
.lp-float-badge i { font-size: 1rem; }
.lp-float-badge-1 { bottom: 18%; left: -5%; animation-delay: 0.5s; }
.lp-float-badge-2 { top: 12%; right: 2%; animation-delay: 1.2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ---- Wave ---- */
.lp-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.lp-wave svg { display: block; width: 100%; height: 80px; }

/* ---- Legacy button aliases (used in other sections) ---- */
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(92,184,92,0.35);
}
.btn-hero-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92,184,92,0.45);
}
.hero-trust {
  margin-top: 2rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-trust i { color: var(--accent); }

/* ---- Section Shared Styles ---- */
.qr-section {
  padding: 90px 0;
}
.qr-section-sm {
  padding: 60px 0;
}
.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
}
.title-line {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ---- Stats Section ---- */
.stats-section {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #eef0f8;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: 1px solid rgba(34,73,170,0.06);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
}
.stat-icon.blue { background: rgba(34,73,170,0.1); color: var(--primary); }
.stat-icon.green { background: rgba(92,184,92,0.12); color: var(--accent); }
.stat-icon.purple { background: rgba(108,95,252,0.1); color: #6c5ffc; }
.stat-icon.orange { background: rgba(247,159,31,0.12); color: #f79f1f; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---- Features Section ---- */
.features-section { background: #f7f8fc; }
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(34,73,170,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  background: rgba(34,73,170,0.08);
  color: var(--primary);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.65;
}
.feature-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.feature-link:hover { gap: 0.6rem; color: var(--primary); }

/* ---- Mockup Showcase ---- */
.mockup-section { background: #fff; }
.mockup-section img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

/* ---- About Section ---- */
.about-section {
  background: linear-gradient(135deg, #f7f8fc 0%, #eef1fc 100%);
}
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: #444;
  font-size: 0.95rem;
}
.check-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- How It Works ---- */
.steps-section { background: #fff; }
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(34,73,170,0.3);
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}
.step-card p { color: var(--gray); font-size: 0.92rem; }
.step-connector {
  position: absolute;
  top: 36px;
  right: -12%;
  width: 24%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  display: none;
}
@media (min-width: 992px) {
  .step-connector { display: block; }
}

/* ---- FAQ Section ---- */
.faq-section { background: #f7f8fc; }
.faq-accordion .accordion-item {
  border: 1px solid rgba(34,73,170,0.1);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a2e;
  background: #fff;
  padding: 1.25rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(34,73,170,0.04);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
}
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(34,73,170,0.15); }
.faq-accordion .accordion-body {
  color: var(--gray);
  font-size: 0.95rem;
  padding: 0 1.5rem 1.25rem;
  line-height: 1.75;
}

/* ---- CTA Banner ---- */
.cta-section {
  background: linear-gradient(135deg, #011388 0%, #2249AA 60%, #5cb85c 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.btn-cta-white {
  background: #fff;
  color: var(--primary);
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta-white:hover {
  background: #f0f3ff;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ---- Contact Section ---- */
.contact-section { background: #fff; }
.contact-card {
  background: #f7f8fc;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-card .form-control {
  border-radius: 8px;
  border: 1px solid #dde2f0;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34,73,170,0.12);
}
.btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: #fff;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #444;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(34,73,170,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- Footer ---- */
.qr-footer {
  background: #0c1459;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-brand img { height: 40px; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}
.footer-heading {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0 1.5rem;
}
.footer-copy {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.footer-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.5rem;
}

/* ---- Back to Top ---- */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.back-to-top-btn.visible { display: flex; }
.back-to-top-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ---- Scroll Reveal Animations ---- */

/* Basis: alle reveal-Elemente starten unsichtbar */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: none !important; }

/* Von unten (Standard) */
.reveal-up    { transform: translateY(50px); }

/* Von links */
.reveal-left  { transform: translateX(-70px); }

/* Von rechts */
.reveal-right { transform: translateX(70px); }

/* Hereinzoomen */
.reveal-zoom  { transform: scale(0.85); }

/* Leichte Rotation (wie SASH revealrotate für Pricing-Cards) */
.reveal-rotate { transform: translateY(40px) rotate(-2deg); }

/* Verzögerungen */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* Alias für bestehende fade-up Klassen (Rückwärtskompatibilität) */
.fade-up       { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---- Misc ---- */
.bg-primary-qr { background: var(--primary); }
.text-primary-qr { color: var(--primary); }
.text-accent { color: var(--accent); }
.rounded-qr { border-radius: var(--radius); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .lp-hero { padding: 50px 0 100px; }
  .lp-hero-img-col { margin-top: 3rem; }
  .lp-float-badge { display: none; }
}
@media (max-width: 768px) {
  .qr-section { padding: 60px 0; }
  .lp-hero { padding: 40px 0 90px; }
  .lp-hero-img { max-width: 100%; }
  .step-card { padding: 2rem 1rem; }
}
@media (max-width: 576px) {
  .stat-number { font-size: 2rem; }
  .cta-section { padding: 60px 0; }
  .lp-hero-h1 { font-size: 1.75rem; }
  .lp-trust { gap: 0.75rem; }
}
