:root {
  --lp-primary: #2563eb;
  --lp-secondary: #1e293b;
  --lp-accent: #f59e0b;
  --lp-bg: #ffffff;
  --lp-text: #334155;
  --lp-font-main: 'Overpass', sans-serif;
  --lp-font-heading: 'Overpass', sans-serif;
  --lp-spacing: 4rem;
  --lp-radius: 0.5rem;
  --lp-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --lp-container: 1200px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--lp-font-main);
  color: var(--lp-text);
  line-height: 1.6;
  background: var(--lp-bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: var(--lp-font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--lp-secondary);
  margin-top: 0;
}

p {
  margin-bottom: 1.5rem;
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.landing-container {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.landing-section {
  padding: var(--lp-spacing) 0;
  position: relative;
}

.landing-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--lp-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--lp-radius);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.landing-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
  color: white;
}

.landing-btn.secondary {
  background: transparent;
  border: 2px solid var(--lp-primary);
  color: var(--lp-primary);
}

/* --- BLOCKS --- */

/* Hero */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}
.lp-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
.lp-hero-content p {
  font-size: 1.25rem;
  color: #64748b;
}
.lp-hero-image img {
  border-radius: var(--lp-radius);
  box-shadow: 20px 20px 0 var(--lp-primary);
}
@media (max-width: 768px) {
    .lp-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lp-hero-image {
        order: -1;
    }
}

/* Features */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.lp-feature-card {
  padding: 2rem;
  border-radius: var(--lp-radius);
  background: #f8fafc;
  transition: transform 0.3s;
}
.lp-feature-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--lp-shadow);
}
.lp-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--lp-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Testimonials */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.lp-testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  border-left: 4px solid var(--lp-primary);
}
.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.lp-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #cbd5e1;
  object-fit: cover;
}

/* Pricing */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.lp-pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--lp-radius);
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
}
.lp-pricing-card.featured {
  border-color: var(--lp-primary);
  box-shadow: 0 10px 25px -5px rgb(37 99 235 / 0.2);
  transform: scale(1.05);
  z-index: 1;
}
.lp-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--lp-secondary);
  margin: 1.5rem 0;
}

/* Footer */
.lp-footer {
    background: var(--lp-secondary);
    color: white;
    padding: 3rem 0;
    text-align: center;
}
.lp-footer a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    opacity: 0.8;
}
.lp-footer a:hover {
    opacity: 1;
}

/* Form */
.lp-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
}
.lp-form-group {
    margin-bottom: 1rem;
    text-align: left;
}
.lp-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.lp-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--lp-radius);
    font-family: inherit;
}
