/* Stylesheet for Service Detail Landing Pages in Messie24 */

.service-landing-page {
  background-color: var(--background);
  --accent-bg-glow: radial-gradient(circle at 50% 0%, rgba(27, 84, 216, 0.05) 0%, transparent 70%);
}

.mt-24 { margin-top: 24px; }
.w-full { width: 100%; }
.justify-center { justify-content: center; }

/* ─── Hero Section ────────────────────────────────────────── */
.landing-hero {
  position: relative;
  padding-top: calc(92px + env(safe-area-inset-top, 0px));
  padding-bottom: 24px;
  background: var(--accent-bg-glow);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

@media (min-width: 768px) {
  .landing-hero {
    padding-top: calc(112px + env(safe-area-inset-top, 0px));
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .landing-hero {
    padding-top: calc(130px + env(safe-area-inset-top, 0px));
    padding-bottom: 64px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.9fr;
    gap: 64px;
  }
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-tag {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(27, 84, 216, 0.15);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.875rem, 4vw + 0.5rem, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
}

.hero-title .accent-color {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-title .accent-color::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent);
  opacity: 0.3;
  z-index: -1;
  border-radius: 2px;
}

.hero-desc {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.25rem);
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 32px 0;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-bottom: 32px;
}

.hero-buttons .btn {
  flex: 1;
  min-width: 220px;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-buttons .btn {
    flex: 0 auto;
  }
}

.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.hero-usps .usp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

.hero-usps .usp-badge svg {
  color: var(--primary);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-visual .image-frame-container {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}

.hero-visual .landing-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-visual .landing-featured-img:hover {
  transform: scale(1.04);
}

/* ─── General Section Wrappers ────────────────────────────── */
.section-wrapper {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .section-wrapper {
    padding: 96px 0;
  }
}

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

.bg-gradient-custom {
  background: linear-gradient(180deg, var(--background) 0%, var(--surface-2) 100%);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.split-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.section-heading .accent-color {
  color: var(--primary);
}

.section-paragraph {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 24px 0;
}

.inline-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease;
}

.inline-link:hover {
  gap: 8px;
}

/* ─── Bento Grid Custom ───────────────────────────────────── */
.bento-scope-section {
  background: radial-gradient(circle at 5% 5%, rgba(27, 84, 216, 0.03) 0%, transparent 40%),
              radial-gradient(circle at 95% 95%, rgba(27, 84, 216, 0.02) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

.bento-grid-custom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .bento-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid-custom {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  padding: 32px 28px !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 84, 216, 0.25);
  box-shadow: 0 20px 40px rgba(27, 84, 216, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.bento-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
}

.bento-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.bento-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(27, 84, 216, 0.05);
}

.bento-card:hover .bento-icon-box {
  transform: scale(1.1) rotate(2deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(27, 84, 216, 0.25);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .bento-grid-custom .bento-card:last-child {
    grid-column: span 2;
  }
}

/* ─── Simulator - Wertanrechnung ──────────────────────────── */
.simulator-selector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 480px) {
  .simulator-selector-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.simulator-checkbox-card {
  display: block;
  cursor: pointer;
  position: relative;
}

.simulator-checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0; width: 0;
}

.sim-card-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  gap: 8px;
  position: relative;
}

.simulator-checkbox-card input[type="checkbox"]:checked ~ .sim-card-inner {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: 0 4px 15px rgba(27, 84, 216, 0.08);
}

.check-indicator {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--border);
  transition: all 0.2s ease;
}

.simulator-checkbox-card input[type="checkbox"]:checked ~ .sim-card-inner .check-indicator {
  background-color: var(--primary);
  border-color: var(--primary);
}

.simulator-checkbox-card input[type="checkbox"]:checked ~ .sim-card-inner .check-indicator::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sim-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--heading);
  padding-right: 24px;
}

.sim-item-value {
  font-size: 15px;
  font-weight: 800;
  color: #16a34a;
}

.split-card-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Receipt Paper Styling */
.receipt-paper {
  background-color: #ffffff;
  color: #1a2332;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  padding: 32px 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Jagged edge effect in CSS */
.receipt-paper::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: linear-gradient(-45deg, transparent 4px, #ffffff 4px), linear-gradient(45deg, transparent 4px, #ffffff 4px);
  background-size: 8px 8px;
  background-repeat: repeat-x;
}

.receipt-header {
  text-align: center;
  border-bottom: 2px dashed rgba(0,0,0,0.12);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.receipt-logo {
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-flex;
}

.receipt-header h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.receipt-header p {
  font-size: 12px;
  color: #64748b;
  margin: 4px 0 0 0;
}

.receipt-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
}

.receipt-row.credit-row {
  animation: slideIn 0.3s ease forwards;
}

.credit-row span.highlight {
  color: #16a34a;
  font-weight: 700;
}

.receipt-placeholder-text {
  text-align: center;
  font-style: italic;
  color: #94a3b8;
  font-size: 13px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.receipt-footer {
  border-top: 2px dashed rgba(0,0,0,0.12);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.receipt-footer span {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.total-cost {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  transition: all 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Estimator - Messie-Räumungen ────────────────────────── */
.estimator-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 20px;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .estimator-widget {
    padding: 36px;
  }
}

.estimator-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .estimator-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.estimator-tab-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

.estimator-tab-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.estimator-tab-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(27, 84, 216, 0.2);
}

.estimator-tab-btn.active .tab-title {
  color: #ffffff;
}

.estimator-tab-btn.active .tab-sub {
  color: rgba(255, 255, 255, 0.8);
}

.tab-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
}

.tab-sub {
  font-size: 12px;
  color: var(--muted);
}

.estimator-display-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

@media (min-width: 768px) {
  .estimator-display-card {
    padding: 36px;
  }
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 900px) {
  .estimator-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

.estimator-details-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.display-title {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 12px 0;
}

.display-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 24px 0;
}

.estimator-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  width: 100%;
}

.spec-item {
  flex: 1;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-top: 2px;
}

.spec-checklist-title {
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.spec-checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-checklist li {
  font-size: 14.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.spec-checklist li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.estimator-price-col {
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.price-box {
  margin-bottom: 24px;
}

.price-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.price-value {
  display: block;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.3rem);
  font-weight: 900;
  color: var(--primary);
  margin: 6px 0;
}

.price-tax {
  font-size: 12.5px;
  color: var(--muted);
}

.price-actions {
  width: 100%;
  margin-bottom: 16px;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── Checklist - Sauberkeits-Check ───────────────────────── */
.checklist-interactive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 480px) {
  .checklist-interactive-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.check-item-card {
  display: block;
  cursor: pointer;
  position: relative;
}

.check-item-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0; width: 0;
}

.check-card-inner {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  gap: 12px;
}

.check-item-card input[type="checkbox"]:checked ~ .check-card-inner {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: 0 4px 15px rgba(27, 84, 216, 0.08);
}

.indicator-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.check-item-card input[type="checkbox"]:checked ~ .check-card-inner .indicator-dot {
  background-color: var(--primary);
  border-color: var(--primary);
}

.check-item-card input[type="checkbox"]:checked ~ .check-card-inner .indicator-dot::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--heading);
}

/* Readiness Card */
.readiness-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  width: 100%;
  max-width: 440px;
}

.readiness-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.readiness-badge {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.readiness-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
}

.readiness-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gauge-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gauge-bar-bg {
  width: 100%;
  height: 10px;
  background-color: var(--surface-2);
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gauge-bar-fill {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 9999px;
  transition: width 0.4s ease;
}

.gauge-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading);
}

.readiness-status-box {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.readiness-status-box h4 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 6px 0;
}

.readiness-status-box p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.status-low {
  background-color: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.15);
}

.status-low h4 {
  color: #dc2626;
}

.status-medium {
  background-color: rgba(217, 119, 6, 0.05);
  border-color: rgba(217, 119, 6, 0.15);
}

.status-medium h4 {
  color: #d97706;
}

.status-high {
  background-color: rgba(22, 163, 74, 0.05);
  border-color: rgba(22, 163, 74, 0.15);
}

.status-high h4 {
  color: #16a34a;
}

.checklist-trust-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  margin-top: 16px;
}

.trust-note-item {
  font-size: 11px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.trust-note-item svg {
  color: #16a34a;
}

/* ─── Timeline / Process Steps ────────────────────────────── */
.horizontal-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 48px;
  position: relative;
}

@media (min-width: 600px) {
  .horizontal-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .horizontal-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .horizontal-process-grid.steps-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.step-badge-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  font-size: 12px;
  font-weight: 900;
  color: var(--primary);
  background-color: var(--primary-light);
  border: 1px solid rgba(27, 84, 216, 0.12);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--background);
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 32px;
  right: 0;
  height: 1px;
  background-color: var(--border);
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) {
  .step-connector {
    display: block;
  }
}

.step-icon {
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--heading);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.process-card-step h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 10px 0;
}

.process-card-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ─── Conversion Banner ───────────────────────────────────── */
.bg-dark-banner {
  background-color: #0c1524;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.bg-dark-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 84, 216, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

.conversion-banner-custom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .conversion-banner-custom {
    grid-template-columns: 1.155fr 0.845fr;
    gap: 64px;
  }
}

.conversion-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.conversion-content h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.conversion-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 24px 0;
}

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.conversion-actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

@media (min-width: 480px) {
  .conversion-actions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-live {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-live svg {
  flex-shrink: 0;
}

.phone-live {
  background-color: rgba(255,255,255,0.03);
  color: #ffffff;
}

.phone-live:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.phone-live svg {
  color: var(--primary);
}

.whatsapp-live {
  background-color: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.15);
  color: #ffffff;
}

.whatsapp-live:hover {
  background-color: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-2px);
}

.whatsapp-live svg {
  color: #22c55e;
}

.btn-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.btn-main-text {
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}

/* ─── SEO / Informational Section ─────────────────────────── */
.seo-info-section {
  background-color: var(--surface);
}

.seo-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .seo-grid-layout {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 64px;
  }
}

.seo-main-content {
  display: flex;
  flex-direction: column;
}

.seo-main-content h2 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.2rem);
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 32px 0;
  line-height: 1.25;
}

.seo-main-content h2 .accent-color {
  color: var(--primary);
}

.seo-article-block {
  margin-bottom: 32px;
}

.seo-article-block h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 12px 0;
}

.seo-article-block p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.seo-sidebar-content {
  width: 100%;
}

.seo-highlight-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.seo-highlight-card h4 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
}

.seo-bullet-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-bullet-list li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  padding-left: 20px;
}

.seo-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.seo-bullet-list li strong {
  color: var(--heading);
}

/* ─── Compact FAQs on Service Details ─────────────────────── */
.faq-section-wrapper {
  background-color: var(--background);
  border-top: 1px solid var(--border);
}
