/* Landing Page Canvas v1.3.0 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body.landing-page-canvas {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

body.landing-page-canvas *,
body.landing-page-canvas *::before,
body.landing-page-canvas *::after {
  box-sizing: inherit;
}

body.landing-page-canvas .lpc-main {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.landing-page-canvas .content-wrapper {
  width: min(100%, 932px) !important;
  max-width: 932px !important;
  margin: 0 auto !important;
  padding: 48px 16px 32px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color: #1a202c;
  line-height: 1.6;
}

body.landing-page-canvas .service-card {
  background: #f7fafc;
  padding: 1rem;
  border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
}

body.landing-page-canvas .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

body.landing-page-canvas .services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  align-items: stretch;
}

body.landing-page-canvas .mobile-sticky-cta { display: none; }

body.landing-page-canvas .faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

body.landing-page-canvas .faq-question {
  background: #f7fafc;
  padding: 1rem;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

body.landing-page-canvas .faq-question:hover { background: #edf2f7; }

body.landing-page-canvas .faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

body.landing-page-canvas .faq-answer.active {
  max-height: 600px;
  padding: 1rem;
}

body.landing-page-canvas .faq-icon { transition: transform .3s; }
body.landing-page-canvas .faq-icon.active { transform: rotate(180deg); }

@keyframes lpc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

body.landing-page-canvas .pulse-badge { animation: lpc-pulse 2s infinite; }
body.landing-page-canvas .process-step { transition: transform .2s; }
body.landing-page-canvas .process-step:hover { transform: scale(1.03); }
body.landing-page-canvas .cta-button { transition: transform .2s, box-shadow .2s; }
body.landing-page-canvas .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229,62,62,.4);
}

.lpc-skip-link {
  position: fixed;
  left: 1rem;
  top: -10rem;
  z-index: 100000;
  padding: .75rem 1rem;
  background: #fff;
  color: #111;
  border: 2px solid currentColor;
  text-decoration: none;
  font-weight: 700;
}
.lpc-skip-link:focus { top: 1rem; }

@media (max-width: 980px) {
  body.landing-page-canvas .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  body.landing-page-canvas .content-wrapper {
    width: 100% !important;
    padding: 24px 16px 96px !important;
  }
  body.landing-page-canvas .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e53e3e;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,.2);
  }
  body.landing-page-canvas .mobile-sticky-cta a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  body.landing-page-canvas .services-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  body.landing-page-canvas .pulse-badge,
  body.landing-page-canvas .process-step,
  body.landing-page-canvas .service-card,
  body.landing-page-canvas .cta-button,
  body.landing-page-canvas .faq-answer,
  body.landing-page-canvas .faq-icon {
    animation: none !important;
    transition: none !important;
  }
}
