/* ===== NAVIGATION ===== */
.nav-outer {
  position: sticky;
  top: 20px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.nav-pill {
  width: 100%;
  max-width: 1100px;
  background: var(--surface);
  border: 1.5px solid var(--lavender);
  box-shadow: 0 4px 24px rgba(33, 31, 46, 0.06);
  border-radius: var(--radius-full);
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.2px;
}
.brand img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--text-sm);
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}
.nav-links a.is-active {
  font-weight: 700;
}
.nav-cta {
  background: var(--mint);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-full);
  padding: 11px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(152, 255, 152, 0.3);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--text-xl);
  cursor: pointer;
  color: var(--ink);
  padding: 4px 8px;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--lavender);
    box-shadow: var(--shadow-lg);
    gap: 12px;
    margin-top: 12px;
  }
  .nav-pill { position: relative; flex-wrap: wrap; }
}

/* ===== HERO ===== */
.hero {
  background: var(--lavender);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 100px 0 64px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-h1);
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 .underline-wrap {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-wrap svg {
  position: absolute;
  left: -2%;
  bottom: -8px;
  width: 104%;
  height: 16px;
}
.hero-sub {
  max-width: 540px;
  margin: 26px auto 0;
  font-size: var(--text-md);
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-compact .hero h1 {
  font-size: var(--text-h2);
  max-width: 700px;
}
.hero-compact .hero-sub {
  max-width: 480px;
  font-size: var(--text-base);
}

/* ===== RIBBON ===== */
.ribbon-wrap {
  position: relative;
  width: 124px;
  height: 124px;
  margin: 40px auto 0;
}
.ribbon-spin {
  width: 100%;
  height: 100%;
  animation: ribbon-rotate 16s linear infinite;
}
@keyframes ribbon-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ribbon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: var(--mint);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ribbon-center svg {
  width: 17px;
  height: 17px;
}
@media (prefers-reduced-motion: reduce) {
  .ribbon-spin { animation: none; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 44px 0 76px;
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-item svg {
  width: 19px;
  height: 19px;
  stroke: var(--baby-blue);
}

/* ===== PROBLEM / SOLUTION ===== */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.ps-card {
  border-radius: var(--radius-lg);
  padding: 40px;
}
.ps-problem {
  background: var(--surface);
  border: 1.5px solid var(--lavender);
}
.ps-problem h3 {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.ps-problem p {
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.6;
}
.ps-solution {
  background: var(--lavender);
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}
.checklist li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
  font-weight: 500;
}
.check-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-dot svg {
  width: 12px;
  height: 12px;
}
@media (max-width: 860px) {
  .ps-grid { grid-template-columns: 1fr; }
}

/* ===== PLANS ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--lavender);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(33, 31, 46, 0.08);
}
.plan-card.featured {
  background: var(--lavender);
  border-color: var(--lavender);
  transform: translateY(-14px);
}
.plan-card.featured:hover {
  transform: translateY(-18px);
}
.popular-badge {
  position: absolute;
  top: -14px;
  right: 26px;
  background: var(--peach);
  color: var(--ink);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: var(--text-xs);
  font-weight: 700;
}
.plan-name {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-desc {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: 2px;
}
.plan-price span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
}
.plan-cadence {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.plan-features li {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: var(--text-sm);
  align-items: flex-start;
}
.plan-features li svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 3px;
}
.plan-btn-primary,
.plan-btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-full);
  padding: 13px;
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.15s, box-shadow 0.15s;
}
.plan-btn-primary {
  background: var(--mint);
  color: var(--ink);
  border: none;
}
.plan-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(152, 255, 152, 0.35);
}
.plan-btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.plan-btn-outline:hover {
  background: var(--ink);
  color: var(--surface);
}
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
}

/* ===== STEPS ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-num {
  width: 38px;
  height: 38px;
  background: var(--baby-blue);
  color: var(--ink);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 700;
}
.step h4 {
  font-size: var(--text-base);
  font-weight: 700;
}
.step p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 820px) {
  .steps-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
}

/* ===== INDUSTRIES ===== */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ind-card {
  background: var(--lavender);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.ind-card:hover {
  background: var(--baby-blue);
  transform: translateY(-4px);
}
.ind-card svg {
  width: 26px;
  height: 26px;
  margin: 0 auto 12px;
  stroke: var(--ink);
}
.ind-card span {
  font-size: var(--text-sm);
  font-weight: 600;
}
@media (max-width: 900px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ind-grid { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--baby-blue);
  line-height: 1;
  margin-bottom: -14px;
}
.testimonial-card p.quote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--text-lg);
  line-height: 1.45;
}
.testimonial-attr {
  margin-top: 20px;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 600;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--lavender);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.12;
  max-width: 720px;
  margin: 0 auto 30px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--lavender);
  padding: 56px 0 28px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(33, 31, 46, 0.12);
}
.footer-brand {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-tag {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  max-width: 250px;
  line-height: 1.5;
}
.footer-col h5 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink);
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--ink-soft);
}
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 404 ===== */
.page-404 {
  text-align: center;
  padding: var(--space-7) 0;
}
.page-404 .code {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--lavender);
  opacity: 0.3;
  line-height: 1;
}
.page-404 h1 {
  font-family: var(--font-head);
  font-size: var(--text-h1);
  font-weight: 700;
  margin-top: var(--space-2);
}
.page-404 p {
  color: var(--ink-soft);
  max-width: 400px;
  margin: var(--space-2) auto var(--space-4);
}

/* ===== PORTAL ===== */
.portal-box {
  max-width: 400px;
  margin: 0 auto;
  padding: var(--space-6) 0;
}
.portal-box h1 {
  font-family: var(--font-head);
  font-size: var(--text-h2);
  text-align: center;
}
.portal-box .sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.form-group {
  margin-bottom: var(--space-3);
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--lavender);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(33, 31, 46, 0.06);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.forgot-link {
  display: block;
  text-align: center;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  text-decoration: none;
}
.forgot-link:hover {
  color: var(--ink);
}