/*--------------------------------------------------------------
# Landing page — JP Nagar SEO
--------------------------------------------------------------*/

.landing-hero {
  background: linear-gradient(135deg, #37517e 0%, #283a5a 60%, #1e2d45 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(71, 178, 228, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.landing-hero .container {
  position: relative;
  z-index: 1;
}

.landing-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 820px;
}

.landing-hero .landing-subhead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}

.landing-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.landing-hero .cta-btn-primary {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #47b2e4;
  color: #fff;
  border: 2px solid #47b2e4;
  transition: all 0.35s;
  text-decoration: none;
}

.landing-hero .cta-btn-primary:hover {
  background: #209dd8;
  border-color: #209dd8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(71, 178, 228, 0.4);
}

.landing-hero .cta-btn-secondary {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: all 0.35s;
  text-decoration: none;
}

.landing-hero .cta-btn-secondary:hover {
  background: #fff;
  color: #37517e;
  border-color: #fff;
  transform: translateY(-2px);
}

.landing-hero .cta-btn-whatsapp {
  background: #128c4a;
  border-color: #128c4a;
}

.landing-hero .cta-btn-whatsapp:hover {
  background: #0e6f3b;
  border-color: #0e6f3b;
  color: #fff;
}

.landing-trust {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
}

.landing-trust i {
  color: #47b2e4;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Online callout */
.landing-callout {
  padding: 0 0 8px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.landing-callout-inner {
  background: #f3f5fa;
  border-left: 4px solid #47b2e4;
  padding: 18px 24px;
  color: #37517e;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.landing-callout-inner i {
  color: #47b2e4;
  margin-right: 8px;
}

/* Content sections */
.landing-section {
  padding: 72px 0;
}

.landing-section.section-bg {
  background: #f3f5fa;
}

.landing-section .section-title {
  padding-bottom: 28px;
}

.landing-section .section-lead {
  color: #444;
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.landing-section .landing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-section .landing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.landing-section .landing-list li i {
  color: #47b2e4;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.landing-module h3 {
  color: #37517e;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.landing-module p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.landing-module + .landing-module {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e8edf5;
}

.landing-steps {
  counter-reset: landing-step;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.landing-steps li {
  counter-increment: landing-step;
  position: relative;
  padding: 0 0 28px 56px;
  color: #444;
  font-size: 16px;
  line-height: 1.75;
}

.landing-steps li:last-child {
  padding-bottom: 0;
}

.landing-steps li::before {
  content: counter(landing-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #37517e;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-steps li strong {
  color: #37517e;
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.landing-faq {
  padding: 72px 0;
}

.landing-faq .section-title {
  text-align: center;
  padding-bottom: 28px;
}

.landing-faq .blog-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.landing-links {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.landing-links a {
  color: #47b2e4;
  text-decoration: none;
  font-weight: 500;
}

.landing-links a:hover {
  color: #209dd8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .landing-hero {
    padding: 120px 0 56px;
  }

  .landing-hero h1 {
    font-size: 28px;
  }

  .landing-hero .landing-subhead {
    font-size: 16px;
  }

  .landing-hero-ctas {
    flex-direction: column;
  }

  .landing-hero .cta-btn-primary,
  .landing-hero .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .landing-section,
  .landing-faq {
    padding: 56px 0;
  }

  .landing-callout {
    margin-top: -20px;
  }
}

/* WCAG 2.2 AA contrast overrides */
.landing-links a {
  color: #1a6f8c;
}

.landing-links a:hover {
  color: #0d5872;
}

.landing-list i,
.landing-trust i,
.landing-callout i {
  color: #147a9c;
}

.landing-hero .cta-btn-primary:not(.cta-btn-whatsapp),
.cta-btn-primary:not(.cta-btn-whatsapp) {
  background: #147a9c;
  border-color: #147a9c;
  color: #fff;
}

.landing-hero .cta-btn-primary:not(.cta-btn-whatsapp):hover,
.cta-btn-primary:not(.cta-btn-whatsapp):hover {
  background: #0f5f7a;
  border-color: #0f5f7a;
  color: #fff;
}

.cta-btn-whatsapp {
  color: #fff;
}

.cta-btn-secondary {
  color: #1a6f8c;
  border-color: #147a9c;
  background: transparent;
}

.cta-btn-secondary:hover {
  background: #147a9c;
  color: #fff;
}
