/* ==========================================================================
   4EDU Landing Page — modern SaaS design system (index.php only)
   Brand: navy #141482 + green #05dd5e | Sora headings, DM Sans body
   All classes are lp- prefixed to avoid collisions with css/main.css
   ========================================================================== */

:root {
  --lp-navy: #141482;
  --lp-navy-dark: #0d0d5c;
  --lp-navy-deep: #090938;
  --lp-green: #05dd5e;
  --lp-green-dark: #04c351;
  --lp-ink: #12123a;
  --lp-body: #4c4c6e;
  --lp-muted: #8a8aa8;
  --lp-bg: #f6f7fc;
  --lp-border: #e7e7f3;
  --lp-white: #ffffff;
  --lp-radius: 18px;
  --lp-radius-sm: 12px;
  --lp-shadow-sm: 0 1px 3px rgba(18, 18, 58, 0.05);
  --lp-shadow-md: 0 12px 32px -8px rgba(18, 18, 58, 0.12);
  --lp-shadow-lg: 0 24px 64px -16px rgba(18, 18, 58, 0.22);
}

/* ---------- base ---------- */
.lp {
  font-family: "DM Sans", sans-serif;
  color: var(--lp-body);
  font-size: 17px;
  line-height: 1.7;
  background: var(--lp-white);
  overflow-x: hidden;
}
.lp h1, .lp h2, .lp h3, .lp h4 {
  font-family: "Sora", sans-serif;
  color: var(--lp-ink);
  line-height: 1.15;
  margin: 0;
}
.lp p { margin: 0; }
.lp img { max-width: 100%; height: auto; }
.lp a { text-decoration: none; transition: all 0.25s ease; }
.lp-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-section { padding: 110px 0; }
.lp-section-soft { background: var(--lp-bg); }

/* ---------- shared bits ---------- */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--lp-navy);
  background: rgba(20, 20, 130, 0.07);
  border: 1px solid rgba(20, 20, 130, 0.12);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.lp-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-green);
}
.lp-eyebrow.on-dark {
  color: #cfcfff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.lp-section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.lp-section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.lp-section-head p { font-size: 17px; color: var(--lp-body); }
.lp-section-head.on-dark h2 { color: #fff; }
.lp-section-head.on-dark p { color: #b9b9dd; }
.lp-text-green { color: var(--lp-green); }

/* ---------- buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.lp-btn svg { transition: transform 0.25s ease; }
.lp-btn:hover svg { transform: translate(2px, -2px); }
.lp-btn-primary {
  background: var(--lp-green);
  color: var(--lp-navy-deep);
  box-shadow: 0 8px 24px -6px rgba(5, 221, 94, 0.45);
}
.lp-btn-primary:hover {
  background: var(--lp-green-dark);
  color: var(--lp-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(5, 221, 94, 0.55);
}
.lp-btn-dark {
  background: var(--lp-navy);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(20, 20, 130, 0.5);
}
.lp-btn-dark:hover {
  background: var(--lp-navy-dark);
  color: #fff;
  transform: translateY(-2px);
}
.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.lp-btn-outline {
  background: #fff;
  color: var(--lp-navy);
  border: 1.5px solid var(--lp-border);
}
.lp-btn-outline:hover {
  border-color: var(--lp-navy);
  background: rgba(20, 20, 130, 0.04);
  color: var(--lp-navy);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.lp-hero {
  position: relative;
  background: var(--lp-navy-deep);
  padding: 190px 0 120px;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(5, 221, 94, 0.14), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(20, 20, 130, 0.55), transparent 65%),
    radial-gradient(500px 380px at 50% 40%, rgba(80, 80, 220, 0.18), transparent 60%);
  pointer-events: none;
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.lp-hero .lp-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 221, 94, 0.1);
  border: 1px solid rgba(5, 221, 94, 0.3);
  color: var(--lp-green);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.lp-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lp-green);
  animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 221, 94, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(5, 221, 94, 0); }
}
.lp-hero h1 {
  color: #fff;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}
.lp-hero h1 .hl {
  background: linear-gradient(100deg, var(--lp-green) 0%, #4ef29a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: #b9b9dd;
  max-width: 540px;
  margin-bottom: 36px;
}
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: 13.5px;
  color: #9a9ac4;
}
.lp-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.lp-hero-trust svg { color: var(--lp-green); flex-shrink: 0; }

/* hero visual */
.lp-hero-visual { position: relative; }
.lp-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--lp-shadow-lg), 0 0 0 8px rgba(255, 255, 255, 0.04);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.6s ease;
}
.lp-hero-frame:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.lp-hero-frame img { display: block; width: 100%; }
.lp-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--lp-shadow-md);
  animation: lp-float 5s ease-in-out infinite;
  z-index: 3;
}
.lp-chip .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 221, 94, 0.14);
  color: var(--lp-green-dark);
  flex-shrink: 0;
}
.lp-chip b {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  color: var(--lp-ink);
  line-height: 1.2;
}
.lp-chip small { font-size: 12px; color: var(--lp-muted); }
.lp-chip-1 { top: 8%; left: -34px; animation-delay: 0s; }
.lp-chip-2 { bottom: 12%; right: -26px; animation-delay: 2.5s; }
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ==========================================================================
   LOGO STRIP
   ========================================================================== */
.lp-logos { padding: 56px 0; border-bottom: 1px solid var(--lp-border); }
.lp-logos p {
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 32px;
}
.lp-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 72px;
}
.lp-logos-row img {
  max-height: 44px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: all 0.3s ease;
}
.lp-logos-row img:hover { filter: none; opacity: 1; transform: translateY(-2px); }

/* ==========================================================================
   STATS
   ========================================================================== */
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-stat {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--lp-shadow-sm);
  transition: all 0.3s ease;
}
.lp-stat:hover { transform: translateY(-5px); box-shadow: var(--lp-shadow-md); border-color: rgba(5, 221, 94, 0.5); }
.lp-stat .num {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}
.lp-stat .num em { font-style: normal; color: var(--lp-green-dark); }
.lp-stat .lbl { font-size: 14px; font-weight: 500; color: var(--lp-body); }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.lp-feature {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.lp-feature::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-navy), var(--lp-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lp-feature:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow-md); }
.lp-feature:hover::after { opacity: 1; }
.lp-feature .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(20, 20, 130, 0.07);
  color: var(--lp-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}
.lp-feature:hover .ic { background: var(--lp-navy); color: var(--lp-green); }
.lp-feature h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.lp-feature p { font-size: 15px; line-height: 1.65; color: var(--lp-body); margin-bottom: 16px; }
.lp-feature .more {
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-feature .more:hover { color: var(--lp-green-dark); gap: 10px; }

/* ==========================================================================
   SHOWCASE (alternating rows)
   ========================================================================== */
.lp-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lp-showcase-row + .lp-showcase-row { margin-top: 110px; }
.lp-showcase-row.flip .lp-showcase-media { order: 2; }
.lp-showcase-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
}
.lp-showcase-media img { display: block; transition: transform 0.6s ease; }
.lp-showcase-media:hover img { transform: scale(1.03); }
.lp-showcase-body h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}
.lp-showcase-body > p { margin-bottom: 28px; font-size: 16.5px; }
.lp-checks { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 14px; }
.lp-checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; font-weight: 500; color: var(--lp-ink); }
.lp-checks svg { flex-shrink: 0; margin-top: 3px; color: var(--lp-green-dark); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.lp-service {
  position: relative;
  border-radius: var(--lp-radius);
  padding: 40px 32px;
  background: var(--lp-navy-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: all 0.3s ease;
}
.lp-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 260px at 80% 0%, rgba(5, 221, 94, 0.16), transparent 60%);
  opacity: 0.7;
}
.lp-service:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow-lg); }
.lp-service > * { position: relative; }
.lp-service .num {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-green);
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.lp-service h3 { color: #fff; font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.lp-service p { color: #a8a8d0; font-size: 15px; line-height: 1.65; flex-grow: 1; }
.lp-service .go {
  margin-top: 24px;
  color: var(--lp-green);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-service:hover .go { gap: 14px; }

/* ==========================================================================
   WHY 4EDU (dark band)
   ========================================================================== */
.lp-why {
  background: var(--lp-navy-deep);
  position: relative;
  overflow: hidden;
}
.lp-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 15% 20%, rgba(20, 20, 130, 0.5), transparent 60%);
  pointer-events: none;
}
.lp-why .lp-container { position: relative; }
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.lp-why-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius);
  padding: 36px 32px;
  display: flex;
  gap: 22px;
  transition: all 0.3s ease;
}
.lp-why-card:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(5, 221, 94, 0.4); }
.lp-why-card .n {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-navy-deep);
  background: var(--lp-green);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-why-card h3 { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.lp-why-card p { color: #a8a8d0; font-size: 14.5px; line-height: 1.65; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.lp-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-body);
}
.lp-billing-toggle .opt.active { color: var(--lp-ink); }
.lp-billing-toggle .save {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--lp-green-dark);
  background: rgba(5, 221, 94, 0.14);
  border-radius: 100px;
  padding: 4px 12px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lp-switch { position: relative; width: 58px; height: 30px; flex-shrink: 0; }
.lp-switch input { opacity: 0; width: 0; height: 0; }
.lp-switch .track {
  position: absolute; inset: 0;
  background: var(--lp-navy);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lp-switch .track::before {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  left: 4px; top: 4px;
  background: var(--lp-green);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.lp-switch input:checked + .track::before { transform: translateX(28px); }

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.lp-pricing-grid .lp-plan { grid-column: span 2; }
/* center the last two cards of the 5-plan grid (3 + 2 layout) */
.lp-pricing-grid .lp-plan:nth-child(4) { grid-column: 2 / span 2; }
.lp-pricing-grid .lp-plan:nth-child(5) { grid-column: 4 / span 2; }
.lp-plan {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 36px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.lp-plan:hover { box-shadow: var(--lp-shadow-md); }
.lp-plan.featured {
  background: var(--lp-navy-deep);
  border-color: var(--lp-navy-deep);
  box-shadow: var(--lp-shadow-lg);
  transform: scale(1.03);
}
.lp-plan.featured:hover { transform: scale(1.03) translateY(-4px); }
.lp-plan-tag {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--lp-green);
  color: var(--lp-navy-deep);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.lp-plan h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.lp-plan.featured h3 { color: #fff; }
.lp-plan .for { font-size: 14px; color: var(--lp-muted); margin-bottom: 26px; }
.lp-plan.featured .for { color: #9a9ac4; }
.lp-plan .amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.lp-plan .amount .cur { font-family: "Sora", sans-serif; font-size: 18px; font-weight: 600; color: var(--lp-body); }
.lp-plan .amount .val {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--lp-ink);
  line-height: 1;
}
.lp-plan .amount .per { font-size: 15px; color: var(--lp-muted); }
.lp-plan.featured .amount .val { color: #fff; }
.lp-plan.featured .amount .cur,
.lp-plan.featured .amount .per { color: #9a9ac4; }
.lp-plan .annual-note { font-size: 13.5px; color: var(--lp-green-dark); font-weight: 600; min-height: 22px; margin-bottom: 26px; }
.lp-plan ul { list-style: none; margin: 0 0 34px; padding: 28px 0 0; border-top: 1px solid var(--lp-border); display: grid; gap: 13px; flex-grow: 1; }
.lp-plan.featured ul { border-top-color: rgba(255, 255, 255, 0.12); }
.lp-plan li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; font-weight: 500; color: var(--lp-ink); }
.lp-plan li svg { flex-shrink: 0; margin-top: 3px; color: var(--lp-green-dark); }
.lp-plan.featured li { color: #cfcfff; }
.lp-plan.featured li svg { color: var(--lp-green); }
.lp-plan .lp-btn { width: 100%; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.lp-faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.lp-faq {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  overflow: hidden;
  transition: all 0.25s ease;
}
.lp-faq[open] { border-color: rgba(20, 20, 130, 0.35); box-shadow: var(--lp-shadow-sm); }
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary .pm {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(20, 20, 130, 0.07);
  color: var(--lp-navy);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.lp-faq[open] summary .pm { background: var(--lp-navy); color: var(--lp-green); transform: rotate(45deg); }
.lp-faq .ans { padding: 0 26px 24px; font-size: 15.5px; line-height: 1.7; color: var(--lp-body); }

/* ==========================================================================
   BLOG
   ========================================================================== */
.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.lp-post {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.lp-post:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow-md); }
.lp-post .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: #ecebf9; }
.lp-post .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.lp-post:hover .thumb img { transform: scale(1.05); }
.lp-post .body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.lp-post .meta {
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lp-muted);
  margin-bottom: 12px;
}
.lp-post h3 { font-size: 18px; font-weight: 600; line-height: 1.4; margin-bottom: 14px; }
.lp-post h3 a { color: var(--lp-ink); }
.lp-post h3 a:hover { color: var(--lp-navy); }
.lp-post .read {
  margin-top: auto;
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lp-post:hover .read { color: var(--lp-green-dark); gap: 12px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.lp-cta {
  position: relative;
  background: var(--lp-navy-deep);
  border-radius: 26px;
  padding: 88px 48px;
  text-align: center;
  overflow: hidden;
}
.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 80% 20%, rgba(5, 221, 94, 0.18), transparent 60%),
    radial-gradient(500px 300px at 15% 85%, rgba(80, 80, 220, 0.3), transparent 60%);
}
.lp-cta > * { position: relative; }
.lp-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.8px;
  max-width: 640px;
  margin: 0 auto 18px;
}
.lp-cta p { color: #b9b9dd; font-size: 17px; max-width: 520px; margin: 0 auto 38px; }
.lp-cta .row-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.lp-cta .note { margin-top: 22px; font-size: 13px; color: #8a8ab8; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
  .lp-section { padding: 80px 0; }
  .lp-hero { padding: 150px 0 90px; }
  .lp-hero .lp-container { grid-template-columns: 1fr; gap: 56px; }
  .lp-hero-visual { max-width: 560px; margin: 0 auto; }
  .lp-chip-1 { left: -8px; }
  .lp-chip-2 { right: -8px; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features-grid, .lp-services-grid, .lp-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-showcase-row { grid-template-columns: 1fr; gap: 36px; }
  .lp-showcase-row.flip .lp-showcase-media { order: 0; }
  .lp-showcase-row + .lp-showcase-row { margin-top: 80px; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
  .lp-pricing-grid .lp-plan,
  .lp-pricing-grid .lp-plan:nth-child(4),
  .lp-pricing-grid .lp-plan:nth-child(5) { grid-column: auto; }
  .lp-plan.featured { transform: none; }
  .lp-plan.featured:hover { transform: translateY(-4px); }
  .lp-cta { padding: 64px 32px; }
}
@media (max-width: 640px) {
  .lp-features-grid, .lp-services-grid, .lp-blog-grid { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lp-stat { padding: 26px 16px; }
  .lp-hero-cta .lp-btn { width: 100%; }
  .lp-plan { padding: 34px 26px; }
  .lp-chip { padding: 9px 13px; }
  .lp-chip b { font-size: 13px; }
  .lp-chip-1 { left: 8px; top: 5%; }
  .lp-chip-2 { right: 8px; bottom: 6%; }
  .lp-cta { padding: 52px 22px; border-radius: 20px; }
}

/* hide footer.php's built-in CTA banner on the landing page (it has its own) */
main.lp-home + .subscribe-wrap { display: none; }

/* ==========================================================================
   Inner-page components (services.php, features.php, ...)
   ========================================================================== */
/* compact page hero for inner pages */
.lp-page-hero { padding: 170px 0 100px; text-align: center; }
.lp-page-hero .lp-container { display: block; }
.lp-page-hero-inner { max-width: 720px; margin: 0 auto; }
.lp-page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.lp-page-hero p { color: #b9b9dd; font-size: 17.5px; line-height: 1.7; }
@media (max-width: 991px) {
  .lp-page-hero { padding: 140px 0 70px; }
}

/* service card with image icon */
.lp-svc { color: inherit; }
.lp-svc-img {
  max-height: 64px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 22px;
}

/* numbered step cards */
.lp-step { position: relative; padding-top: 46px; }
.lp-step-num {
  position: absolute;
  top: 26px; right: 28px;
  font-family: "Sora", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: rgba(20, 20, 130, 0.08);
}

/* ==========================================================================
   Article / detail pages (read-service.php, read-blog.php, read-kb.php)
   ========================================================================== */
.lp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #8a8ab8;
  margin-bottom: 26px;
}
.lp-breadcrumb a { color: #cfcfff; }
.lp-breadcrumb a:hover { color: var(--lp-green); }
.lp-breadcrumb span { color: #5a5a8a; }
.lp-breadcrumb .current { color: var(--lp-green); }

.lp-article-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  box-shadow: var(--lp-shadow-sm);
  padding: 56px 64px;
}
.lp-article-icon {
  max-height: 84px;
  width: auto;
  border-radius: 16px;
  margin-bottom: 34px;
}
.lp-article { font-size: 16.5px; line-height: 1.8; color: var(--lp-body); }
.lp-article h2, .lp-article h3, .lp-article h4 {
  font-family: "Sora", sans-serif;
  color: var(--lp-ink);
  margin: 1.6em 0 0.55em;
  line-height: 1.3;
}
.lp-article h2 { font-size: 26px; }
.lp-article h3 { font-size: 21px; }
.lp-article h4 { font-size: 17px; }
.lp-article h2:first-child, .lp-article h3:first-child,
.lp-article p:first-child { margin-top: 0; }
.lp-article p { margin: 0 0 1.1em; }
.lp-article ul, .lp-article ol { margin: 0 0 1.2em; padding-left: 22px; }
.lp-article li { margin-bottom: 0.45em; }
.lp-article li::marker { color: var(--lp-green-dark); }
.lp-article a { color: var(--lp-navy); font-weight: 600; text-decoration: underline; }
.lp-article a:hover { color: var(--lp-green-dark); }
.lp-article img { max-width: 100%; height: auto; border-radius: 14px; margin: 10px 0; }
.lp-article blockquote {
  margin: 1.4em 0;
  padding: 18px 24px;
  border-left: 3px solid var(--lp-green);
  background: var(--lp-bg);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.lp-article table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 15px; }
.lp-article th, .lp-article td { border: 1px solid var(--lp-border); padding: 10px 14px; text-align: left; }
.lp-article th { background: var(--lp-bg); font-family: "Sora", sans-serif; }
.lp-article-cta {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.lp-article-cta p {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--lp-ink);
  margin: 0;
}
@media (max-width: 767px) {
  .lp-article-card { padding: 34px 24px; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-chip, .lp-hero-badge .dot { animation: none; }
  .lp * { transition: none !important; }
}

/* ==========================================================================
   Comparison tables (pricing-comparision.php)
   ========================================================================== */
.lp-table-wrap {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lp-table { width: 100%; min-width: 920px; border-collapse: collapse; font-size: 15px; }
.lp-table th, .lp-table td {
  padding: 15px 18px;
  text-align: center;
  border-bottom: 1px solid var(--lp-border);
  vertical-align: middle;
  font-weight: 500;
  color: var(--lp-body);
}
.lp-table tbody tr:last-child th, .lp-table tbody tr:last-child td { border-bottom: none; }
.lp-table thead th {
  font-family: "Sora", sans-serif;
  color: var(--lp-ink);
  background: var(--lp-bg);
  padding: 22px 18px;
  font-weight: 600;
}
.lp-table .row-head {
  text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--lp-ink);
  font-size: 14.5px;
  min-width: 210px;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}
.lp-table thead .row-head { background: var(--lp-bg); z-index: 2; }
.lp-table .plan-name { display: block; font-size: 17px; font-weight: 700; }
.lp-table .plan-scale {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lp-muted);
  margin-top: 4px;
  line-height: 1.4;
}
/* highlighted "best" column (Campus) */
.lp-table td.best { background: #f2fdf7; }
.lp-table thead th.best { background: #e2fbee; }
.lp-table .best-tag {
  display: inline-block;
  background: var(--lp-green);
  color: var(--lp-navy-deep);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
/* check / dash markers */
.lp-table .yes {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-green);
  position: relative;
}
.lp-table .yes::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--lp-navy-deep);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.lp-table .no { color: var(--lp-muted); font-size: 13.5px; font-weight: 500; }
/* price rows */
.lp-table .price-row td b,
.lp-table .edu-row td b {
  font-family: "Sora", sans-serif;
  color: var(--lp-ink);
  font-size: 16px;
}
.save-pill, .lowest-pill {
  display: inline-block;
  background: var(--lp-green);
  color: var(--lp-navy-deep);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 100px;
  padding: 2px 9px;
  margin-left: 6px;
  vertical-align: middle;
}
/* 4EDU row inside the competitor table */
.lp-table .edu-row td { background: #f2fdf7; }
.lp-table .edu-row .row-head { background: #e2fbee; }
.lp-table .edu-row td b { color: var(--lp-green-dark); }
/* competitor table helpers */
.lp-table .comp-model {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: var(--lp-muted);
}
.lp-table .comp-note { display: block; font-size: 12px; color: var(--lp-muted); }
.lp-table .cta-row .lp-btn { padding: 10px 18px; font-size: 13.5px; white-space: nowrap; }
.lp-table-note {
  max-width: 820px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--lp-muted);
}
@media (max-width: 640px) {
  .lp-table { font-size: 13.5px; }
  .lp-table .row-head { min-width: 150px; font-size: 13px; }
  .lp-table th, .lp-table td { padding: 12px 14px; }
}
