/* Landing page – public/web – admin theme: #9283f8, #04cfe8, white */
:root {
  /* Core brand colors */
  --lp-primary: #179ce5;
  /* blue */
  --lp-primary-hover: #0f82c1;
  --lp-cyan: #f48e33;
  /* orange accent */
  --lp-cyan-hover: #e2771a;
  --lp-accent-strong: #c8284d;
  /* red/pink accent */
  --lp-bg: #ffffff;
  --lp-surface: #f8fafc;
  --lp-card: #ffffff;
  --lp-text: #1e293b;
  --lp-text-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-radius: 12px;
  --lp-font: 'DM Sans', system-ui, sans-serif;
  --lp-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --lp-shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.lp-page {
  margin: 0;
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav – cyan header like admin */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-nav-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--lp-text-muted);
}

.lp-nav-contact-label {
  font-weight: 600;
  color: var(--lp-text);
}

.lp-nav-contact-phone {
  color: var(--lp-primary);
  text-decoration: none;
  font-weight: 600;
}

.lp-nav-contact-phone:hover {
  text-decoration: underline;
}

.lp-nav-scrolled {
  background: #ffffff;
  box-shadow: var(--lp-shadow-lg);
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  color: var(--lp-text);
  text-decoration: none;
}

.lp-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav-links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, opacity 0.2s;
}

.lp-nav-links a:hover {
  color: var(--lp-primary);
  opacity: 1;
}

.lp-nav-links .lp-btn-outline {
  color: var(--lp-primary);
  border-color: var(--lp-primary);
  background: transparent;
}

.lp-nav-links .lp-btn-outline:hover {
  background: rgba(23, 156, 229, 0.06);
  border-color: var(--lp-primary);
  color: var(--lp-primary-hover);
}

.lp-nav-links .lp-btn-primary {
  background: var(--lp-primary);
  color: #fff;
  border: none;
}

.lp-nav-links .lp-btn-primary:hover {
  background: var(--lp-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--lp-radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, border-color 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.lp-btn-primary {
  background: var(--lp-primary);
  color: #fff;
}

.lp-btn-primary:hover {
  background: var(--lp-primary-hover);
  transform: translateY(-1px);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-text);
  border: 2px solid var(--lp-border);
}

.lp-btn-outline:hover {
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

/* Hero */
.lp-hero {
  position: relative;
  padding: 180px 0 140px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

.lp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) brightness(0.8);
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(23, 156, 229, 0.55) 0%,
      rgba(196, 40, 77, 0.7) 40%,
      rgba(0, 0, 0, 0.9) 100%);
}

.lp-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(4, 207, 232, 0.12);
  border: 1px solid rgba(4, 207, 232, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--lp-cyan-hover);
  margin-bottom: 24px;
  font-weight: 600;
}

.lp-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e5f0ff;
}

.lp-hero p {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.9);
  max-width: 560px;
  margin: 0 auto 36px;
}

.lp-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.lp-hero-btns .lp-btn-primary {
  background: var(--lp-primary);
}

.lp-hero-btns .lp-btn-primary:hover {
  background: var(--lp-primary-hover);
}

.lp-hero-btns .lp-btn-outline {
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

.lp-hero-btns .lp-btn-outline:hover {
  background: rgba(146, 131, 248, 0.08);
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

/* Services grid */
.lp-section {
  padding: 80px 0;
  background: var(--lp-bg);
}

.lp-section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-section-subtitle {
  text-align: center;
  color: var(--lp-text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Partners / brands */
.lp-partners {
  background: var(--lp-surface);
  padding-top: 56px;
  padding-bottom: 56px;
}

.lp-partners-header {
  text-align: center;
  margin-bottom: 32px;
}

.lp-partners-label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  background: rgba(23, 156, 229, 0.08);
  color: var(--lp-primary);
  font-weight: 600;
}

.lp-partners-title {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-partners-logos {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 32px;
  mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 0, 0) 15%,
      rgb(0, 0, 0) 85%,
      rgba(0, 0, 0, 0) 100%);
}

.lp-partners-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  padding: 12px 0;
}

.lp-partners-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 16px));
  }
}

.lp-partner {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  padding: 16px 24px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-partner:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--lp-primary);
}

.lp-partner img {
  display: block;
  max-height: 26px;
  width: auto;
}

@media (max-width: 600px) {
  .lp-partners-logos {
    gap: 12px 16px;
  }

  .lp-partner {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.lp-service-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.lp-service-card:hover {
  border-color: var(--lp-primary);
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-service-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.lp-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-service-body {
  padding: 18px 20px 22px;
  background: var(--lp-card);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lp-service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--lp-text);
}

.lp-service-card p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.lp-service-card:hover .lp-service-body {
  transform: translateY(-26%);
  background: linear-gradient(135deg, rgba(23, 156, 229, 0.9), rgba(244, 142, 51, 0.9));
}

.lp-service-card:hover .lp-service-body h3,
.lp-service-card:hover .lp-service-body p {
  color: #ffffff;
}

/* Features two-col */
.lp-features {
  background: var(--lp-surface);
}

.lp-features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .lp-features-inner {
    grid-template-columns: 1fr;
  }
}

.lp-features-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-features-content p {
  color: var(--lp-text-muted);
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.lp-features-visual {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--lp-shadow);
}

.lp-features-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats strip – full-width gradient bar */
.lp-stats {
  padding: 24px 0;
  background: transparent;
}

.lp-stats .lp-container {
  background: #179ce5;
  color: #fff;
  border-radius: 5px;
  padding: 40px 24px;
  box-shadow: var(--lp-shadow-lg);
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.lp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-stat-value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lp-stat-label {
  font-size: 0.9rem;
  opacity: 0.95;
  font-weight: 500;
}

/* How it works – cards with top images */
.lp-how {
  background: var(--lp-bg);
}

.lp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .lp-how-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

.lp-how-card {
  position: relative;
  background: var(--lp-card);
  border-radius: var(--lp-radius);
  overflow: hidden;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.lp-how-card:hover {
  box-shadow: var(--lp-shadow-lg);
  transform: translateY(-2px);
}

.lp-how-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--lp-border);
}

.lp-how-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-how-card:hover .lp-how-card-img img {
  transform: scale(1.1);
}

.lp-how-card-body {
  padding: 24px;
}

.lp-how-num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-cyan));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(23, 156, 229, 0.4);
  border: 2px solid #fff;
}

.lp-how-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--lp-text);
}

.lp-how-card p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Full-width banner with overlay */
.lp-banner-wrapper {
  padding: 40px 0;
  background: var(--lp-bg);
}

.lp-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--lp-shadow-lg);
}

.lp-banner-bg {
  position: absolute;
  inset: 0;
}

.lp-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 156, 229, 0.9) 0%, rgba(244, 142, 51, 0.85) 45%, rgba(200, 40, 77, 0.8) 100%);
}

.lp-banner-content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  max-width: 640px;
}

.lp-banner-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.lp-banner-content p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.lp-btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.lp-banner-content .lp-btn-primary {
  background: #fff;
  color: var(--lp-primary);
}

.lp-banner-content .lp-btn-primary:hover {
  background: #f8fafc;
  color: var(--lp-primary-hover);
  transform: translateY(-1px);
}

/* Testimonial – centered quote */
.lp-testimonial {
  background: var(--lp-surface);
  padding: 40px 0;
}

.lp-testimonial .lp-container {
  max-width: 1400px;
}

.lp-testimonial .lp-section-subtitle {
  margin-bottom: 24px;
}

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 900px) {
  .lp-testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.lp-quote {
  padding: 16px;
  background: var(--lp-card);
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-quote:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--lp-primary);
}

.lp-quote-text {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--lp-text);
  margin: 0 0 12px;
  font-style: normal;
  font-weight: 500;
  flex-grow: 1;
}

.lp-quote-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.lp-quote-name {
  font-weight: 600;
  color: var(--lp-text);
  font-style: normal;
  display: block;
}

.lp-quote-role {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
}

/* CTA strip – purple like admin active state */
.lp-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--lp-bg);
}

.lp-cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #c8284d;
  border-radius: 16px;
  box-shadow: var(--lp-shadow-lg);
}

.lp-cta-box h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.lp-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.lp-cta-box .lp-btn {
  background: #fff;
  color: #c8284d;
}

.lp-cta-box .lp-btn:hover {
  background: #f8fafc;
  color: #c8284d;
  transform: translateY(-1px);
}

/* Footer */
.lp-footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--lp-border);
  background: var(--lp-surface);
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.lp-footer-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.lp-footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer-links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.lp-footer-links a:hover {
  color: var(--lp-primary);
}

.lp-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--lp-text-muted);
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lp-social-link:hover {
  color: var(--lp-primary);
  border-color: var(--lp-primary);
  background: rgba(146, 131, 248, 0.08);
}

.lp-social-icon {
  width: 20px;
  height: 20px;
}

.lp-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--lp-border);
  text-align: center;
  color: var(--lp-text-muted);
  font-size: 0.9rem;
}

/* About Section */
.lp-about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-about-content p {
  font-size: 1.1rem;
  color: var(--lp-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.lp-about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.lp-about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-about-stat strong {
  font-size: 1.8rem;
  color: var(--lp-primary);
  font-weight: 700;
}

.lp-about-stat span {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-about-visual {
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

.lp-about-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .lp-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Responsive Navigation */
body.no-scroll {
  overflow: hidden;
}

.lp-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.lp-mobile-toggle span {
  width: 100%;
  height: 3px;
  background: var(--lp-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.lp-mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.lp-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.lp-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .lp-nav-contact {
    display: none;
  }
}

@media (max-width: 768px) {
  .lp-mobile-toggle {
    display: flex;
  }

  .lp-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 40px;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .lp-nav-links.active {
    right: 0;
  }

  .lp-nav-links li {
    width: 100%;
  }

  .lp-nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--lp-border);
  }

  .lp-nav-links .lp-btn {
    margin-top: 10px;
    border: none;
    text-align: center;
    border-bottom: none;
  }
}

/* Hero Section Responsiveness */
@media (max-width: 768px) {
  .lp-hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .lp-hero h1 {
    font-size: 2.5rem;
  }

  .lp-hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

/* Contact Page Styles (Moved from blade) */
.lp-contact-page {
  padding: 120px 0 80px;
  background: var(--lp-surface);
  min-height: 100vh;
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.lp-contact-info-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
}

.lp-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.lp-contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(23, 156, 229, 0.1);
  color: var(--lp-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-contact-info-text h3 {
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--lp-text);
}

.lp-contact-info-text p {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 1rem;
}

.lp-contact-form-card {
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
}

.lp-form-group {
  margin-bottom: 24px;
}

.lp-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--lp-text);
  font-size: 0.95rem;
}

.lp-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-form-input:focus {
  outline: none;
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 4px rgba(23, 156, 229, 0.1);
}

.lp-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.lp-form-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .lp-contact-page {
    padding: 100px 0 60px;
  }

  .lp-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-contact-form-card {
    padding: 30px;
  }
}

.lp-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.lp-contact-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  color: var(--lp-text);
}

.lp-contact-header p {
  font-size: 1.15rem;
  color: var(--lp-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .lp-about-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* Footer Responsiveness */
@media (max-width: 768px) {
  .lp-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .lp-footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* Mobile Call Icon */
.lp-mobile-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--lp-primary);
  background: rgba(23, 156, 229, 0.1);
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .lp-mobile-call {
    display: flex;
  }
}

/* Legal Content Pages */
.lp-legal-page {
  padding: 140px 0 80px;
  background: var(--lp-bg);
  min-height: 80vh;
}

.lp-legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--lp-text);
  text-align: center;
}

.lp-legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: var(--lp-text);
  border-bottom: 1px solid var(--lp-border);
  padding-bottom: 10px;
}

.lp-legal-content p {
  margin-bottom: 20px;
  color: var(--lp-text-muted);
  line-height: 1.8;
}

.lp-legal-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.lp-legal-content li {
  margin-bottom: 10px;
  color: var(--lp-text-muted);
}