/* ═══════════════════════════════════════
   LANDING PAGES — Conversion-optimized styles
   Used only on /lp/* pages (noindex)
   Loaded via landing template only
   ═══════════════════════════════════════ */

/* ─── RESET FOR LANDING PAGES ─── */
.lp-body {
  padding-top: 0 !important; /* LP has its own minimal header */
  padding-bottom: 0 !important;
}

/* ─── MINIMAL HEADER ─── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(42,42,42,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-logo img {
  height: 56px;
  width: auto;
}
.lp-header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark, #2a2a2a);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.lp-header-phone:hover { background: #1a1a1a; color: #fff; }
.lp-header-phone svg { width: 18px; height: 18px; color: var(--lime, #bdd917); flex-shrink: 0; }
.lp-header-phone span { color: var(--lime, #bdd917); }

@media (max-width: 600px) {
  .lp-header-inner { padding: 12px 20px; }
  .lp-logo img { height: 44px; }
  .lp-header-phone .lp-phone-label { display: none; }
}

/* ─── HERO ─── */
.lp-hero {
  position: relative;
  background: var(--dark, #2a2a2a);
  overflow: hidden;
  padding: 80px 0 60px;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(42,42,42,0.75) 100%);
  z-index: 1;
}
.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(189,217,23,0.12);
  border: 1px solid rgba(189,217,23,0.3);
  border-radius: 100px;
  color: var(--lime, #bdd917);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lp-hero-badge svg { width: 13px; height: 13px; }
.lp-hero h1 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.lp-hero h1 strong { color: var(--lime, #bdd917); font-weight: 800; }
.lp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}
.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.lp-hero-trust-item svg { width: 16px; height: 16px; color: var(--lime, #bdd917); flex-shrink: 0; }

/* Hero Inline Form */
.lp-hero-form-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg, 16px);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
}
.lp-hero-form-wrap h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark, #2a2a2a);
  margin-bottom: 6px;
}
.lp-hero-form-wrap p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 24px;
}
.lp-form-field {
  margin-bottom: 14px;
}
.lp-form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark, #2a2a2a);
  margin-bottom: 6px;
}
.lp-form-field input,
.lp-form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(42,42,42,0.15);
  border-radius: var(--radius-sm, 8px);
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.95rem;
  color: var(--dark, #2a2a2a);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.lp-form-field input:focus,
.lp-form-field select:focus {
  border-color: var(--lime, #bdd917);
  box-shadow: 0 0 0 3px rgba(189,217,23,0.15);
  background: #fff;
}
.lp-form-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--lime, #bdd917);
  color: var(--dark, #2a2a2a);
  border: none;
  border-radius: var(--radius-sm, 8px);
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lp-form-submit:hover { background: var(--lime-light, #d1ec2d); }
.lp-form-submit:active { transform: scale(0.99); }
.lp-form-submit svg { width: 18px; height: 18px; }
.lp-form-trust-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: #888;
  justify-content: center;
}
.lp-form-trust-note svg { width: 13px; height: 13px; color: #aaa; }
.lp-form-error {
  display: none;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 6px;
  color: #dc2626;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.lp-form-success {
  display: none;
  padding: 20px;
  text-align: center;
}
.lp-form-success h4 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.2rem;
  color: var(--dark, #2a2a2a);
  margin-bottom: 8px;
}
.lp-form-success p { font-size: 0.9rem; color: #555; margin: 0; }

@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .lp-hero-form-wrap { max-width: 540px; }
}
@media (max-width: 600px) {
  .lp-hero { padding: 48px 0 40px; }
  .lp-hero-form-wrap { padding: 28px 20px; }
  .lp-hero h1 { font-size: 1.9rem; }
}

/* ─── TRUST BAR ─── */
.lp-trust-bar {
  background: var(--dark, #2a2a2a);
  padding: 20px 0;
  border-bottom: 2px solid rgba(189,217,23,0.2);
}
.lp-trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.lp-trust-item svg { width: 22px; height: 22px; color: var(--lime, #bdd917); flex-shrink: 0; }
.lp-trust-item strong { color: #fff; }
.lp-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .lp-trust-bar-inner { gap: 20px; padding: 0 20px; }
  .lp-trust-divider { display: none; }
  .lp-trust-item { font-size: 0.82rem; }
}

/* ─── SECTION BASE ─── */
.lp-section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.lp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.lp-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime, #bdd917);
  background: rgba(189,217,23,0.1);
  border: 1px solid rgba(189,217,23,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.lp-section-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark, #2a2a2a);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lp-section-title strong { color: var(--lime, #bdd917); }
.lp-section-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.65;
  max-width: 600px;
}

@media (max-width: 600px) {
  .lp-section-inner { padding: 0 20px; }
}

/* ─── PAIN POINTS ─── */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.lp-pain-card {
  background: #ffffff;
  border: 1px solid rgba(42,42,42,0.08);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px;
  box-shadow: var(--shadow-card, 0 1px 2px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}
.lp-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover, 0 1px 2px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.12));
}
.lp-pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(189,217,23,0.12);
  border-radius: var(--radius-md, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-pain-icon svg { width: 26px; height: 26px; color: var(--dark, #2a2a2a); }
.lp-pain-card h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark, #2a2a2a);
  margin-bottom: 10px;
}
.lp-pain-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* ─── PROCESS ─── */
.lp-process { background: var(--off-white, #f7f7f5); }
.lp-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.lp-process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--lime, #bdd917) 0%, rgba(189,217,23,0.2) 100%);
  z-index: 0;
}
.lp-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lp-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark, #2a2a2a);
  color: var(--lime, #bdd917);
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--lime, #bdd917);
  box-shadow: 0 0 0 6px rgba(189,217,23,0.1);
}
.lp-step h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark, #2a2a2a);
  margin-bottom: 8px;
}
.lp-step p { font-size: 0.88rem; color: #666; line-height: 1.6; }

@media (max-width: 768px) {
  .lp-process-steps::before { display: none; }
  .lp-process-steps { gap: 20px; }
}

/* ─── TESTIMONIALS ─── */
.lp-testimonials { background: var(--dark, #2a2a2a); }
.lp-testimonials .lp-section-title { color: #fff; }
.lp-testimonials .lp-section-sub { color: rgba(255,255,255,0.65); }
.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.lp-testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px;
  position: relative;
  transition: background 0.25s;
}
.lp-testi-card:hover { background: rgba(255,255,255,0.08); }
.lp-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #f59e0b;
}
.lp-testi-stars svg { width: 16px; height: 16px; }
.lp-testi-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.lp-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(189,217,23,0.3);
}
.lp-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.lp-testi-loc { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ─── SERVICE DETAILS ─── */
.lp-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.lp-details-image {
  border-radius: var(--radius-xl, 24px);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.lp-details-image img { width: 100%; height: 380px; object-fit: cover; display: block; }
.lp-details-list { list-style: none; padding: 0; margin: 24px 0; }
.lp-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42,42,42,0.07);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}
.lp-details-list li:last-child { border-bottom: none; }
.lp-details-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--lime, #bdd917);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 24 24' stroke='%232a2a2a' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.lp-diff-card {
  background: var(--off-white, #f7f7f5);
  border-radius: var(--radius-md, 12px);
  padding: 20px;
}
.lp-diff-card h4 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark, #2a2a2a);
  margin-bottom: 6px;
}
.lp-diff-card p { font-size: 0.83rem; color: #666; line-height: 1.55; }

@media (max-width: 768px) {
  .lp-details-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-diff-grid { grid-template-columns: 1fr; }
}

/* ─── INTERNAL LINKS / RELATED SERVICES ─── */
.lp-related { background: var(--off-white, #f7f7f5); }
.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.lp-related-card {
  background: #fff;
  border: 1px solid rgba(42,42,42,0.08);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  box-shadow: var(--shadow-card);
}
.lp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.lp-related-card h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark, #2a2a2a);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-related-card h3::after {
  content: '→';
  color: var(--lime, #bdd917);
  font-size: 1.1rem;
  margin-left: auto;
  transition: transform 0.2s;
}
.lp-related-card:hover h3::after { transform: translateX(4px); }
.lp-related-card p { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* ─── FAQ ─── */
.lp-faq-list { margin-top: 48px; }
.lp-faq-item {
  border-bottom: 1px solid rgba(42,42,42,0.08);
}
.lp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark, #2a2a2a);
  cursor: pointer;
  transition: color 0.2s;
}
.lp-faq-question:hover { color: var(--lime, #bdd917); }
.lp-faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(42,42,42,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.lp-faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s; }
.lp-faq-item.open .lp-faq-icon { background: var(--lime, #bdd917); }
.lp-faq-item.open .lp-faq-icon svg { transform: rotate(45deg); }
.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
.lp-faq-answer-inner a { color: var(--dark, #2a2a2a); text-decoration: underline; text-underline-offset: 3px; }
.lp-faq-item.open .lp-faq-answer { max-height: 500px; }

/* ─── FINAL CTA SECTION ─── */
.lp-final-cta {
  background: var(--dark, #2a2a2a);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.lp-final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.lp-final-cta h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lp-final-cta h2 strong { color: var(--lime, #bdd917); }
.lp-final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.lp-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--lime, #bdd917);
  color: var(--dark, #2a2a2a);
  border-radius: var(--radius-sm, 8px);
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.lp-btn-primary:hover { background: var(--lime-light, #d1ec2d); color: var(--dark, #2a2a2a); transform: translateY(-1px); }
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm, 8px);
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.lp-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.lp-btn-ghost svg, .lp-btn-primary svg { width: 18px; height: 18px; }

/* CTA Mini Form */
.lp-cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 36px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.lp-cta-form h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.lp-cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-cta-form .lp-form-field input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.lp-cta-form .lp-form-field input::placeholder { color: rgba(255,255,255,0.4); }
.lp-cta-form .lp-form-field input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--lime, #bdd917);
}

@media (max-width: 600px) {
  .lp-final-cta-inner { padding: 0 20px; }
  .lp-cta-form { padding: 24px 20px; }
  .lp-cta-form-row { grid-template-columns: 1fr; }
  .lp-cta-buttons { flex-direction: column; align-items: stretch; }
  .lp-btn-primary, .lp-btn-ghost { justify-content: center; }
}

/* ─── SLIM FOOTER ─── */
.lp-footer {
  background: var(--dark-deep, #1a1a1a);
  padding: 24px 0;
}
.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.lp-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .lp-footer-inner { padding: 0 20px; flex-direction: column; text-align: center; }
  .lp-footer-links { gap: 14px; }
}

/* ─── MOBILE STICKY CTA BAR ─── */
.lp-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark, #2a2a2a);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .lp-mobile-cta-bar { display: flex; }
  .lp-body { padding-bottom: 70px !important; }
}
.lp-mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 12px;
  border-radius: 10px;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-mobile-cta-bar .lp-mobile-call {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.lp-mobile-cta-bar .lp-mobile-call svg { color: var(--lime, #bdd917); }
.lp-mobile-cta-bar .lp-mobile-quote {
  background: var(--lime, #bdd917);
  color: var(--dark, #2a2a2a);
}
.lp-mobile-cta-bar a svg { width: 16px; height: 16px; }

/* ─── FORM SUBMITTED STATE ─── */
.lp-form-wrap.submitted .lp-form-fields { display: none; }
.lp-form-wrap.submitted .lp-form-success { display: block; }

/* ─── SCHEMA / NO-INDEX (no visual) ─── */
/* noindex is handled via PHP meta tag; no CSS needed */
