:root {
  --navy: #061D3A;
  --navy-2: #092B55;
  --green: #05A857;
  --green-2: #16C36A;
  --yellow: #FFC928;
  --blue: #2367E8;
  --ink: #0B1E35;
  --muted: #637083;
  --soft: #F3F7FC;
  --soft-2: #EAF2FB;
  --white: #FFFFFF;
  --line: #DDE7F3;
  --shadow: 0 20px 55px rgba(6, 29, 58, .14);
  --shadow-soft: 0 12px 35px rgba(6, 29, 58, .08);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,231,243,.72);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--navy);
}
.brand-stack { display: grid; gap: 3px; }
.brand-name { line-height: 1; white-space: nowrap; }
.brand-flag { margin-left: 4px; }
.brand-location { font-size: .72rem; font-weight: 800; color: var(--muted); letter-spacing: 0; }
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}
.brand strong { color: var(--green); }
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  font-weight: 700;
  color: #20324B;
}
.nav a:not(.nav-cta):not(.nav-login) { opacity: .82; transition: .2s ease; }
.nav a:not(.nav-cta):not(.nav-login):hover { opacity: 1; color: var(--green); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(6,29,58,.18);
}
.nav-login {
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid rgba(6,29,58,.18);
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(6,29,58,.08);
  transition: .2s ease;
}
.nav-login:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
}

.section { padding: 56px 0; position: relative; }
.section-soft { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.section-navy {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,201,40,.20), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(5,168,87,.20), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, #04152A 100%);
  color: #fff;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}
.section-head h2,
.split h2,
.feature-copy h2,
.solution-grid h2,
.business-grid h2,
.dashboard-grid h2,
.cta-card h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.section-head p,
.split p,
.feature-copy p,
.solution-grid p,
.business-grid p,
.dashboard-grid p,
.cta-card p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}
.section-navy p { color: rgba(255,255,255,.78); }
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: -.01em;
  box-shadow: 0 8px 24px rgba(255,201,40,.24);
}
.section-pill.light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.18); box-shadow: none; }

.hero { padding: 54px 0 56px; overflow: hidden; }
.hero::before,
.hero::after,
.faq-section::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #EAF2FB;
  filter: blur(.2px);
  z-index: 0;
}
.hero::before { width: 420px; height: 420px; right: -180px; top: -170px; }
.hero::after { width: 260px; height: 260px; left: -100px; bottom: -120px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  font-weight: 800;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: .9;
  letter-spacing: -.08em;
  color: var(--navy);
}
.hero h1::after {
  content: "";
  display: block;
  width: 78px;
  height: 6px;
  border-radius: 10px;
  margin-top: 18px;
  background: var(--yellow);
}
.lead {
  color: #4E5E73;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 650px;
  margin: 0 0 22px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 18px 32px rgba(5,168,87,.24); }
.btn-primary:hover { background: #049B51; }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-soft); }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
}
.hero-metrics div {
  padding: 14px 14px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.hero-metrics strong { display: block; color: var(--yellow); font-size: 1.05rem; }
.hero-metrics span { display: block; color: rgba(255,255,255,.72); font-size: .88rem; }
.hero-visual { position: relative; min-height: 460px; display: flex; align-items: center; }
.hero-visual .blob {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .95;
  right: 18px;
  top: 24px;
  z-index: -1;
}
.hero-visual img {
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(221,231,243,.85);
  border-radius: 22px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}
.floating-card strong { display: block; color: var(--navy); }
.floating-card span { display: block; color: var(--green); font-size: .86rem; font-weight: 800; }
.card-one { top: 32px; left: -24px; }
.card-two { right: -20px; bottom: 38px; }

.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 16px 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 34px;
}
.trust-grid span { color: rgba(255,255,255,.58); font-weight: 800; }
.trust-grid strong { color: #fff; }

.split, .feature-row, .business-grid, .dashboard-grid, .solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.visual-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
}
.visual-card.dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.visual-card img { width: 100%; height: auto; }
.pain-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.pain-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.pain-list span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 1.4rem;
}
.pain-list strong { color: var(--navy); font-size: 1.04rem; }
.pain-list p { font-size: .95rem; margin: 4px 0 0; }

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.solution-cards div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 24px;
}
.solution-cards span { font-size: 2rem; }
.solution-cards strong { display: block; margin: 12px 0 6px; font-size: 1.15rem; }
.solution-cards p { font-size: .95rem; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.module-card {
  min-height: 238px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5,168,87,.42);
  box-shadow: 0 24px 48px rgba(6,29,58,.12);
}
.module-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--soft), #fff);
  border: 1px solid var(--line);
  font-size: 1.65rem;
}
.module-card h3 { margin: 18px 0 8px; color: var(--navy); font-size: 1.16rem; letter-spacing: -.03em; }
.module-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.feature-row.reverse .visual-card { order: 2; }
.feature-copy { max-width: 560px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: .9rem;
}

.flow-wrap .section-head { color: #fff; }
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.flow-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 22px;
  position: relative;
}
.flow-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 16px;
}
.flow-step strong { display: block; font-size: 1.05rem; }
.flow-step p { margin-top: 8px; font-size: .93rem; }

.ideal-box {
  margin-top: 20px;
  padding: 24px;
  border-radius: 26px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.ideal-box strong { color: var(--yellow); font-size: 1.1rem; }
.ideal-box p { color: rgba(255,255,255,.76); margin-top: 8px; }
.business-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.business-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.business-cards span { font-size: 1.8rem; }
.business-cards h3 { margin: 12px 0 8px; color: var(--navy); }
.business-cards p { font-size: .95rem; margin: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 24px 60px rgba(5,168,87,.15);
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--yellow);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
}
.price-top span {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.price-top strong { display: block; font-size: 1.7rem; letter-spacing: -.05em; color: var(--navy); }
.price-card p { color: var(--muted); margin: 0; }
.price-amount {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--soft), #fff);
  border: 1px solid var(--line);
}
.price-amount small {
  display: block;
  color: var(--muted);
  font-weight: 850;
  margin-bottom: 2px;
}
.price-amount strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.price-amount span {
  display: block;
  color: #40516A;
  font-weight: 850;
  margin-top: 6px;
}
.price-card.featured .price-amount {
  border-color: rgba(5,168,87,.34);
  background: linear-gradient(135deg, rgba(5,168,87,.10), #fff);
}
.price-card ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.price-card li { color: #35455B; font-weight: 700; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 950; margin-right: 8px; }
.price-card .btn { margin-top: auto; }
.pricing-helper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.pricing-helper strong { display: block; color: var(--yellow); font-size: 1.12rem; }
.pricing-helper span { display: block; color: rgba(255,255,255,.74); margin-top: 4px; }
.pricing-helper .btn { flex: 0 0 auto; }
.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.pricing-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.pricing-info strong { color: var(--navy); font-size: 1.03rem; }
.pricing-info p { color: var(--muted); margin: 6px 0 0; font-size: .94rem; }
.pricing-examples {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  box-shadow: var(--shadow-soft);
}
.examples-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.examples-head strong { color: var(--navy); font-size: 1.2rem; }
.examples-head span { color: var(--muted); font-weight: 750; }
.examples-table { display: grid; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; }
.examples-row {
  display: grid;
  grid-template-columns: .7fr 1.1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.examples-row:first-child { border-top: 0; }
.examples-title { background: var(--navy); color: #fff; font-weight: 900; }
.examples-row span { color: #40516A; font-weight: 760; }
.examples-title span { color: #fff; }
.examples-row strong { color: var(--green); }
.pricing-disclaimer { color: var(--muted); font-size: .92rem; margin: 14px 0 0; }


.pricing-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(5,168,87,.08), transparent 26%),
    radial-gradient(circle at 100% 10%, rgba(255,201,40,.14), transparent 22%),
    linear-gradient(180deg, #F8FBFF 0%, #F2F7FB 100%);
}
.pricing-head { max-width: 860px; text-align: center; }
.v4p-top-banner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}
.v4p-top-main,
.v4p-top-price,
.v4p-plan-card,
.v4p-info-card,
.v4p-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}
.v4p-top-main { padding: 34px; }
.v4p-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5,168,87,.10);
  color: var(--green);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.v4p-top-main h3 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: .96;
  letter-spacing: -.06em;
  color: var(--navy);
}
.v4p-top-main p { color: var(--muted); max-width: 58ch; }
.v4p-top-price {
  padding: 34px;
  background: linear-gradient(135deg, var(--navy) 0%, #0A2446 100%);
  color: #fff;
  display: grid;
  align-content: center;
}
.v4p-top-price small { color: var(--yellow); font-weight: 900; font-size: .95rem; }
.v4p-top-price strong {
  display: block;
  margin: 8px 0 6px;
  font-size: clamp(2.7rem, 5vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.08em;
}
.v4p-top-price span { color: rgba(255,255,255,.76); font-weight: 760; }
.v4p-card-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v4p-plan-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
}
.v4p-plan-card.featured {
  border: 2px solid rgba(5,168,87,.88);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(5,168,87,.14);
}
.v4p-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: .86rem;
  font-weight: 900;
}
.v4p-plan-top span {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .85rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.v4p-plan-top strong {
  display: block;
  color: var(--navy);
  font-size: 2.1rem;
  line-height: .96;
  letter-spacing: -.06em;
}
.v4p-plan-card p { color: var(--muted); margin: 0; }
.v4p-plan-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.v4p-plan-card li { color: #35455B; font-weight: 800; line-height: 1.45; }
.v4p-plan-card li::before { content: "✓"; color: var(--green); font-weight: 950; margin-right: 8px; }
.v4p-plan-card li b { color: var(--navy); }
.v4p-plan-card .btn { margin-top: auto; }
.v4p-info-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.v4p-info-card { padding: 22px; }
.v4p-info-card strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.v4p-info-card p { margin: 0; color: var(--muted); }
.v4p-info-card a { color: var(--green); font-weight: 900; }
.v4p-detail-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}
.v4p-detail-card { padding: 24px; }
.v4p-detail-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.v4p-detail-head strong { color: var(--navy); font-size: 1.2rem; }
.v4p-detail-head span { color: var(--muted); font-weight: 760; }
.v4p-example-table { display: grid; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.v4p-example-row { display: grid; grid-template-columns: .78fr 1fr .6fr; gap: 12px; align-items: center; padding: 14px 16px; border-top: 1px solid var(--line); background: #fff; }
.v4p-example-row:first-child { border-top: 0; }
.v4p-example-row.title { background: var(--navy); }
.v4p-example-row.title span { color: #fff; font-weight: 900; }
.v4p-example-row span { color: #40516A; font-weight: 760; }
.v4p-example-row strong { color: var(--green); text-align: right; }
.v4p-extra-list { display: grid; gap: 10px; }
.v4p-extra-list div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.v4p-extra-list div:last-child { border-bottom: 0; }
.v4p-extra-list span { color: #35455B; font-weight: 800; }
.v4p-extra-list strong { color: var(--navy); }
.v4p-footnote { margin: 18px 0 0; color: var(--muted); text-align: center; }

.v6p-main-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}
.v6p-scale-card,
.v6p-legend-card,
.v6p-extras-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}
.v6p-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.v6p-card-head strong {
  color: var(--navy);
  font-size: 1.2rem;
}
.v6p-card-head span {
  color: var(--muted);
  font-weight: 760;
  text-align: right;
}
.v6p-scale-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.v6p-scale-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.v6p-scale-row:first-child { border-top: 0; }
.v6p-scale-row:nth-child(odd) { background: rgba(248,251,255,.85); }
.v6p-scale-row span {
  color: #35455B;
  font-weight: 800;
}
.v6p-scale-row strong {
  color: var(--green);
  font-size: 1.05rem;
}
.v6p-legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.v6p-legend-list li {
  padding: 14px 16px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: #40516A;
  font-weight: 760;
  line-height: 1.5;
}
.v6p-legend-list li b { color: var(--navy); }
.v6p-bottom-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}
.v6p-extra-list {
  display: grid;
  gap: 10px;
}
.v6p-extra-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.v6p-extra-list div:last-child { border-bottom: 0; }
.v6p-extra-list span {
  color: #35455B;
  font-weight: 800;
}
.v6p-extra-list strong {
  color: var(--navy);
}
.dashboard-grid { grid-template-columns: .9fr 1.1fr; }
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 20px;
}
.kpi-row div {
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
}
.kpi-row strong { display: block; color: var(--yellow); }
.kpi-row span { color: rgba(255,255,255,.72); font-size: .9rem; }

.faq-section { background: #fff; overflow: hidden; }
.faq-section::before { width: 360px; height: 360px; right: -140px; bottom: -160px; }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 0 22px;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 900;
  color: var(--navy);
}
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: -4px 0 20px; }

.cta-section {
  padding: 56px 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,201,40,.24), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, #04152A 100%);
}
.cta-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 38px;
  padding: 36px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.cta-card h2 { color: #fff; }
.cta-card p { color: rgba(255,255,255,.76); }
.demo-form {
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}
.demo-form label { color: var(--navy); font-weight: 850; font-size: .9rem; display: grid; gap: 7px; }
.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.demo-form textarea { min-height: 104px; resize: vertical; }
.demo-form input:focus,
.demo-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(5,168,87,.12); }
.demo-form small { color: var(--muted); }

.site-footer {
  background: #04152A;
  color: rgba(255,255,255,.72);
  padding: 26px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-brand { color: #fff; }
.footer-brand img { width: 40px; height: 40px; }
.footer-links { display: flex; gap: 18px; font-weight: 800; }
.footer-links a { color: var(--yellow); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1050px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .pricing-info-grid { grid-template-columns: repeat(2, 1fr); }
  .v4p-top-banner, .v4p-detail-grid, .v6p-main-grid, .v6p-bottom-grid { grid-template-columns: 1fr; }
  .v4p-card-grid, .v4p-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 12px; }
  .nav-cta, .nav-login { text-align: center; }
  .hero-grid, .split, .feature-row, .business-grid, .dashboard-grid, .solution-grid, .cta-card { grid-template-columns: 1fr; }
  .pain-list, .multiacademy-copy .check-list { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-visual .blob { width: 300px; height: 300px; }
  .card-one { left: 10px; top: 12px; }
  .card-two { right: 10px; bottom: 16px; }
  .hero-metrics, .kpi-row { grid-template-columns: 1fr; }
  .modules-grid, .business-cards, .pricing-grid, .pricing-info-grid, .solution-cards, .pricing-tier-grid, .pricing-badges, .pricing-detail-grid, .v4p-card-grid, .v4p-info-grid, .v4p-detail-grid, .v6p-main-grid, .v6p-bottom-grid { grid-template-columns: 1fr; }
  .pricing-helper { flex-direction: column; align-items: flex-start; }
  .pricing-helper .btn { width: 100%; }
  .examples-head { align-items: flex-start; flex-direction: column; }
  .pricing-hero-actions { grid-template-columns: 1fr; }
  .pricing-detail-head { flex-direction: column; align-items: flex-start; }
  .v4p-detail-head { flex-direction: column; align-items: flex-start; }
  .v6p-card-head { flex-direction: column; align-items: flex-start; }
  .flow { grid-template-columns: 1fr; }
  .feature-row.reverse .visual-card { order: 0; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 42px 0; }
  .hero { padding: 42px 0 44px; }
  .hero h1 { font-size: clamp(2.6rem, 15vw, 4rem); }
  .section-head h2, .split h2, .feature-copy h2, .solution-grid h2, .business-grid h2, .dashboard-grid h2, .cta-card h2 { font-size: 2.15rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .floating-card { display: none; }
  .visual-card, .hero-visual img { border-radius: 26px; }
  .cta-card, .pricing-examples, .pricing-hero-copy, .pricing-hero-card, .pricing-tier-card, .pricing-detail-card, .v4p-top-main, .v4p-top-price, .v4p-plan-card, .v4p-info-card, .v4p-detail-card { padding: 22px; border-radius: 30px; }
  .examples-row, .pricing-example-row, .v4p-example-row { grid-template-columns: 1fr; gap: 4px; }
  .pricing-badge-card { border-radius: 20px; }
  .pricing-tags span { width: 100%; justify-content: center; display: inline-flex; }
  .v4p-top-main h3 { font-size: 2.2rem; }
  .v4p-plan-top strong { font-size: 1.8rem; }
  .v4p-extra-list div { flex-direction: column; align-items: flex-start; }
  .v6p-extra-list div, .v6p-scale-row { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 8px; }
  .brand-location { font-size: .68rem; }
}

.multiacademy-copy .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }


.contacto-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}


/* Páginas de estado: gracias / error */
.status-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(5,168,87,.22), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255,201,40,.20), transparent 24%),
    linear-gradient(135deg, #061D3A 0%, #092B55 55%, #04152A 100%);
  color: var(--ink);
}
.status-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}
.status-card {
  width: min(820px, 100%);
  background: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 38px;
  padding: clamp(28px, 6vw, 54px);
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
}
.status-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}
.status-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}
.status-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(6,29,58,.14);
}
.status-brand strong { color: var(--green); }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5,168,87,.12);
  color: var(--green);
  font-weight: 900;
  font-size: .85rem;
  margin-bottom: 14px;
}
.status-pill.error {
  background: rgba(255,201,40,.18);
  color: #9A6B00;
}
.status-card h1 {
  margin: 0;
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.075em;
}
.status-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 18px 0 0;
}
.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.status-actions .btn { width: auto; }
@media (max-width: 520px) {
  .status-shell { padding: 28px 14px; }
  .status-card { border-radius: 30px; }
  .status-actions .btn { width: 100%; }
}
