@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0B2D4B;
  --teal: #00C896;
  --blue: #3B82F6;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --gray: #64748B;
  
  --bg-main: var(--light);
  --bg-card: var(--white);
  --text-main: var(--navy);
  --text-muted: var(--gray);
  --primary: var(--teal);
  --border-color: #E2E8F0;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background-color: #00b386;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--navy);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--gray);
  background-color: #f1f5f9;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .login-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-actions .login-link:hover {
  color: var(--blue);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background-color: var(--white);
}

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

.hero-content {
  max-width: 540px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.trusted-by {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.trusted-by p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: 600;
}

.trusted-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0.5;
  filter: grayscale(100%);
}

.trusted-logos span {
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* Problem Section */
.problem {
  background-color: var(--light);
}

.problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.problem-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.problem-content p {
  font-size: 1.125rem;
}

/* Solution Section */
.solution {
  background-color: var(--white);
  text-align: center;
}

.solution .container {
  max-width: 800px;
}

.solution h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.solution p {
  font-size: 1.25rem;
  margin-bottom: 64px;
}

.solution-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

/* How It Works */
.how-it-works {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
}

.how-it-works p {
  color: #94a3b8;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 64px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.timeline-step {
  text-align: left;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.timeline-step h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* Features Section */
.features {
  background-color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: inline-block;
  background-color: #f1f5f9;
  padding: 12px;
  border-radius: 12px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
}

/* Pricing Section */
.lp-pricing {
  padding: 120px 0;
  background: var(--white);
}
.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.pricing-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.pricing-header p {
  font-size: 1.125rem;
  margin-bottom: 40px;
}
.pricing-toggles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.toggle-group {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--text-muted);
}
.toggle-label.active {
  color: var(--text-main);
}
.badge-discount {
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: 8px;
}
/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--navy);
  transition: .4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--blue);
}
input:checked + .slider:before {
  transform: translateX(24px);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}
.pricing-card.popular {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  z-index: 2;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 16px;
  white-space: nowrap;
}
.plan-name {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.plan-target {
  font-size: 0.875rem;
  margin-bottom: 32px;
  height: 40px;
}
.plan-price {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.price-currency {
  font-size: 1rem;
  font-weight: 600;
  margin-right: 4px;
}
.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.05em;
}
.price-period {
  font-size: 0.875rem;
  margin-left: 4px;
}
.plan-features {
  list-style: none;
  text-align: left;
  flex-grow: 1;
  margin-bottom: 32px;
}
.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}
.plan-features li:last-child {
  border-bottom: none;
}
.plan-features strong {
  color: var(--text-main);
}
.pricing-card .btn {
  width: 100%;
}

/* Impact Section */
.impact {
  background-color: var(--light);
  border-top: 1px solid var(--border-color);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.impact-stat {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}

.impact-label {
  font-size: 1rem;
  font-weight: 500;
}

/* Testimonial Section */
.testimonial {
  background-color: var(--white);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  background-color: var(--light);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border-color);
}

.testimonial-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.95rem;
}

/* Mission Section */
.mission {
  position: relative;
  padding: 160px 0;
  background-image: url('../assets/mission-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(11, 45, 75, 0.7);
}

.mission .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.mission h2 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.mission p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
}

/* Final CTA */
.final-cta {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta p {
  color: #94a3b8;
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Footer */
.footer {
  background-color: var(--white);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.link-group h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--navy);
}

.link-group a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.link-group a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container, .problem .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-ctas, .trusted-logos {
    justify-content: center;
  }
  .features-grid, .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .solution h2, .mission h2, .final-cta h2 { font-size: 2rem; }
  .features-grid, .timeline, .pricing-grid, .impact-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
