:root {
  --navy: #010c80;
  --blue: #0082f3;
  --btn-blue: #001df3;
  --yellow: #faff48;
  --yellow-text: #030520;
  --bg-light: #f9f9fd;
  --bg-footer: #f5f7fa;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .logo, .btn {
  font-family: 'Righteous', sans-serif;
  font-weight: 400;
}

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

a { text-decoration: none; color: inherit; }

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

/* Header */
header {
  padding: 24px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 32px; }
nav {
  display: flex;
  gap: 32px;
}
nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
nav a.active { color: var(--blue); }

/* Hero */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero p {
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 420px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  background: var(--btn-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--yellow-text);
}

/* Partner logos bar */
.partners {
  background: var(--navy);
  padding: 32px 0;
}
.partners .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.partners img {
  max-height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Discover section */
.discover .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 24px;
}
.discover h2 { font-size: 30px; margin-bottom: 16px; line-height: 1.3; }
.discover p { max-width: 440px; }

/* Stats */
.stats {
  background: var(--bg-light);
  padding: 56px 0;
}
.stats .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: 'Righteous', sans-serif;
  font-size: 34px;
  color: var(--navy);
}
.stat-label {
  font-size: 14px;
  color: #4a4f8a;
  margin-top: 4px;
}

/* Testimonial */
.testimonial {
  background: var(--bg-light);
  padding: 72px 0;
}
.testimonial .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.testimonial-quote img { width: 44px; margin-bottom: 20px; }
.testimonial-quote p.quote {
  font-size: 20px;
  font-style: normal;
  margin-bottom: 24px;
  max-width: 460px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 13px; color: #6b6f9f; }
.testimonial-photo img {
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  object-fit: cover;
}
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.slider-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--navy); display: inline-block;
}

/* Harness section */
.harness {
  padding: 80px 0 40px;
}
.harness .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.harness h2 { font-size: 30px; margin-bottom: 12px; }
.harness .subtitle { color: #4a4f8a; }
.harness ul { list-style: none; }
.harness li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eef0fa;
}
.harness li img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.harness li p { font-weight: 700; font-size: 15px; }

/* Feature blocks */
.feature-block {
  padding: 60px 0;
}
.feature-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-block.reverse .container {
  direction: rtl;
}
.feature-block.reverse .container > * { direction: ltr; }
.feature-block h3 { font-size: 24px; margin-bottom: 12px; }
.feature-block p { max-width: 420px; margin-bottom: 20px; }
.feature-block img.illustration { max-width: 260px; margin: 0 auto; }

/* Pricing */
.pricing {
  padding: 80px 0;
  text-align: center;
}
.pricing h2 { font-size: 32px; margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.plan {
  border: 1px solid #eef0fa;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.plan.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(1,12,128,0.2);
  border: none;
}
.plan .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--yellow-text);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.plan h3 { font-size: 22px; margin-bottom: 8px; }
.plan .starting { font-size: 13px; opacity: 0.7; }
.plan .price {
  font-family: 'Righteous', sans-serif;
  font-size: 32px;
  margin: 4px 0;
}
.plan .for { font-size: 13px; opacity: 0.7; margin-bottom: 20px; }
.plan .btn { width: 100%; margin-bottom: 24px; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.plan.featured .btn { background: var(--yellow); color: var(--yellow-text); }
.plan ul { list-style: none; text-align: left; }
.plan li {
  font-size: 13.5px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.plan.featured li::before { color: var(--yellow); }
.plan li strong { font-weight: 800; }

/* CTA */
.cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
  border-radius: 24px;
  margin: 0 auto 80px;
  max-width: 1092px;
}
.cta h2 { font-size: 28px; margin-bottom: 12px; }
.cta p { margin-bottom: 28px; opacity: 0.85; }

/* Footer */
footer {
  background: var(--bg-footer);
  padding: 56px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-logo img { height: 30px; }
.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a8ec2;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social img { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid #e2e5f0;
  padding-top: 20px;
  font-size: 13px;
  color: #8a8ec2;
  text-align: center;
}

/* Mobile */
@media (max-width: 860px) {
  nav { display: none; }
  .hero .container,
  .discover .container,
  .harness .container,
  .feature-block .container,
  .testimonial .container {
    grid-template-columns: 1fr;
  }
  .feature-block.reverse .container { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .stats .container { justify-content: center; gap: 40px; }
}
