@import url('https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap');

:root {
  --gold: #f6b73d;
  --gold-deep: #d58f12;
  --muted: #64748b;
  --ink: #0f172a;
  --ink-soft: #334155;
  --accent: #38bdf8;
  --accent-strong: #2563eb;
  --accent-deep: #0f4c81;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(239, 246, 255, 0.92);
  --surface-strong: #ffffff;
  --line: rgba(148, 163, 184, 0.2);
  --shadow-soft: 0 28px 80px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 18px 42px rgba(15, 23, 42, 0.1);
  --radius: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --bg-start: #020617;
  --bg-mid: #0f172a;
  --bg-end: #14213d;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body.landing-body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #dbeafe;
  background:
    radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(246, 183, 61, 0.12), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bg-start) 0%, var(--bg-mid) 48%, var(--bg-end) 100%);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.main-shell {
  flex: 1 0 auto;
  padding: 20px 0 72px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f8fafc;
  text-decoration: none;
}

.logo-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 6px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(125, 211, 252, 0.24);
  filter: drop-shadow(0 16px 28px rgba(2, 6, 23, 0.26));
}

.logo-mark img,
.logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
  color: #f8fafc;
}

.logo-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #e2e8f0;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(226, 232, 240, 0.84);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0f172a;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.98), rgba(246, 183, 61, 0.92));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 52%, #f6b73d 100%);
  color: #eff6ff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.3);
}

.btn:focus,
.nav-toggle:focus,
.faq-toggle:focus {
  outline: 3px solid rgba(56, 189, 248, 0.22);
  outline-offset: 2px;
}

.btn.secondary {
  background: rgba(15, 23, 42, 0.56);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: none;
}

.btn-sm {
  padding: 11px 16px;
  min-height: 44px;
}

.section-card,
.aside-card,
.card,
.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.section-card { padding: 36px; }
.aside-card,
.card,
.panel { padding: 24px; }

.cost-note {
  width: fit-content;
  max-width: 720px;
  margin: 20px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(224, 242, 254, 0.95));
  color: var(--ink-soft);
  font-weight: 650;
  line-height: 1.55;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

.cost-note-label {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cost-note strong {
  color: var(--accent-strong);
  font-weight: 900;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.h1 {
  margin: 14px 0 14px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.35vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
}

h2,
h3,
h4 {
  font-family: 'Sora', 'Manrope', sans-serif;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.lead {
  color: #475569;
  max-width: 760px;
  font-size: 1.05rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-heading h2,
.section-heading h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.55vw, 2.55rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
}

.contact-grid { align-items: stretch; }
.contact-aside {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.contact-aside .kv {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.contact-aside .btn-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.contact-aside .btn-group .btn {
  width: 100%;
  min-height: 52px;
  padding-inline: 16px;
}

.cards,
.cards-2 {
  display: grid;
  gap: 18px;
}

.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card h3,
.card h4 { margin-top: 0; }

.card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 28px;
}

.detail-kv {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(224, 242, 254, 0.92);
  font-weight: 800;
  color: var(--accent-deep);
  margin-bottom: 12px;
}

.kv .label {
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}

.kv .value {
  color: var(--muted);
  margin-bottom: 14px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section-actions-center { justify-content: center; }

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 30px;
  align-items: center;
}

.footer-copy {
  margin: 6px 0 0;
  max-width: 560px;
  color: rgba(226, 232, 240, 0.74);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.92rem;
}

.footer-social a {
  color: #7dd3fc;
  font-weight: 700;
  text-decoration: none;
}

.footer-social a:hover { text-decoration: underline; }

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  color: rgba(226, 232, 240, 0.74);
  font-size: 0.95rem;
  white-space: nowrap;
}

.footer-meta-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-meta a {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 700;
}

.footer-meta a:hover { text-decoration: underline; }

.footer-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  color: #042f2e !important;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.24);
}

.footer-download-link:hover {
  text-decoration: none !important;
  filter: brightness(1.03);
}

.footer-developer {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.footer-developer a { color: #475569; font-weight: 600; text-decoration: none; }
.footer-developer a:hover { text-decoration: underline; }

.form-wrap { max-width: 720px; }

.input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #fff;
  color: var(--ink);
}

textarea { min-height: 160px; }

.faq-question {
  font-weight: 700;
  color: var(--ink);
}

.faq-answer { color: var(--muted); }

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
}

.faq-toggle .faq-question { font-size: 1rem; }
.faq-panel { padding-top: 12px; }
.faq-toggle-icon { transition: transform 0.18s ease; }
.faq-toggle[aria-expanded="true"] .faq-toggle-icon { transform: rotate(45deg); }

.register-link,
.article-link-list a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: underline;
}

.register-btn {
  display: inline-block;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 8px;
}

.register-btn:hover { transform: translateY(-1px); }

.home-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.home-stack > :first-child { margin-top: 0; }

.home-stack > .section-card,
.home-stack > .cards-2,
.home-stack > .grid-2,
.home-stack > .seo-faq-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.seo-hero {
  display: grid;
  gap: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
}

.seo-hero .h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 0.97;
}

.seo-hero .lead {
  max-width: 760px;
  margin: 0;
}

.seo-hero .btn-group { margin-top: 8px; }

.seo-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.seo-hero-frame {
  margin-top: 4px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
  width: 100%;
}

.seo-hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.seo-hero-note {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
}

.seo-hero-note .card-title {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}

.seo-hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 992px) {
  .seo-hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    column-gap: 28px;
    align-items: start;
  }

  .seo-hero > .kicker { grid-column: 1; grid-row: 1; }
  .seo-hero > .h1 { grid-column: 1; grid-row: 2; }
  .seo-hero > .lead { grid-column: 1; grid-row: 3; }

  .seo-hero .h1,
  .seo-hero .lead { max-width: none; }

  .seo-hero > .seo-hero-notes {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
    align-self: start;
    position: relative;
    padding: 12px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.72), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(148, 163, 184, 0.14);
  }

  .seo-hero > .seo-hero-points {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    max-width: 360px;
  }
}

.seo-full-row {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  grid-column: 1 / -1;
  justify-self: stretch;
  align-self: stretch;
}

.seo-faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: end;
}

.seo-faq-intro { position: static; min-width: 0; }

.seo-faq-intro h2 {
  margin: 14px 0 12px;
  max-width: 620px;
  font-size: clamp(1.8rem, 2.55vw, 2.55rem);
  line-height: 1.1;
}

.seo-faq-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-faq-action {
  display: grid;
  gap: 14px;
}

.seo-faq-note {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(239, 246, 255, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.14);
  color: var(--muted);
  font-size: 0.9rem;
}

.seo-faq-note strong { color: var(--ink); }

.seo-faq-intro .btn-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.seo-faq-intro .btn {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
}

.seo-faq-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.seo-faq-grid .card {
  min-height: 100%;
  padding: 28px;
}

.seo-faq-grid h3 {
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.seo-faq-grid .faq-answer {
  margin: 0;
  line-height: 1.72;
}

.seo-faq-panel {
  width: 100%;
  max-width: none;
  min-width: 0;
  justify-self: stretch;
  align-self: stretch;
  grid-column: 1 / -1;
}

.seo-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.seo-faq-item {
  padding: 26px 28px;
  gap: 10px;
}

.seo-faq-item .card-title {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--ink);
}

.seo-faq-item p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 16%, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at 90% 16%, rgba(246, 183, 61, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(239, 246, 255, 0.97) 54%, rgba(224, 242, 254, 0.95) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.hero-copy .lead { margin: 0; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.proof-item {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(226, 232, 240, 0.8));
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.proof-item .card-title,
.mini-stat .card-title {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ink);
}

.proof-item span,
.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding: 12px 0;
}

.showcase-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, #e0f2fe, #ffffff);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.showcase-frame img,
.screenshot-card img,
.showcase-float img {
  width: 100%;
  display: block;
  height: auto;
}

.showcase-main {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.showcase-float {
  position: relative;
  width: 100%;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-card);
}

.showcase-float img {
  border-radius: 12px;
  margin-bottom: 10px;
}

.showcase-float .card-title {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.showcase-float span {
  color: var(--muted);
  font-size: 0.84rem;
}

.float-left,
.float-right { align-self: start; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.94));
  color: #e2e8f0;
}

.mini-stat { padding: 10px 6px; }

.cards-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.feature-card .card-title {
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.feature-card p,
.screenshot-copy p,
.page-lead,
.pricing-support p {
  margin: 0;
  color: var(--muted);
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(224, 242, 254, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.article-read-link::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--accent-strong);
  border-right: 2px solid var(--accent-strong);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.article-read-link:hover {
  color: var(--accent-strong);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.16);
  transform: translateY(-2px);
}

.article-read-link:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.article-read-link:focus {
  outline: 3px solid rgba(56, 189, 248, 0.18);
  outline-offset: 3px;
}

.feature-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8 55%, #38bdf8);
  color: #eff6ff;
}

.feature-callout h3,
.feature-callout .kicker,
.feature-callout p {
  color: inherit;
}

.cards .feature-callout,
.cards-2 .feature-callout {
  grid-column: span 2;
}

.feature-callout h3 {
  margin: 0;
  font-size: 1.8rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.screenshot-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, #ffffff, #eff6ff);
  box-shadow: var(--shadow-card);
}

.screenshot-copy { padding: 18px; }

.screenshot-copy h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--ink);
}

.bullet-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li { margin-bottom: 10px; }

.page-hero { text-align: center; }
.page-hero-left { text-align: left; }

.page-title {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-left .page-title,
.page-hero-left .page-lead {
  margin-left: 0;
  margin-right: 0;
}

.page-lead {
  max-width: 760px;
  margin: 0 auto;
}

.value-grid { align-items: stretch; }
.compact-frame { padding: 0; align-self: center; }
.pricing-support { align-items: center; }

.article-shell {
  display: grid;
  gap: 24px;
}

.article-hero {
  position: relative;
  overflow: hidden;
}

.article-hero::after {
  content: '';
  position: absolute;
  inset: auto -80px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 68%);
}

.article-catalog-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.article-catalog-kicker,
.article-catalog-meta { justify-content: center; }

.article-catalog-search {
  width: min(100%, 680px);
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.article-catalog-search-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}

.article-catalog-search-input {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.article-catalog-search-input:focus {
  outline: 3px solid rgba(56, 189, 248, 0.12);
  outline-offset: 2px;
  border-color: rgba(37, 99, 235, 0.22);
}

.article-catalog-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.article-catalog-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.article-catalog-empty {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  background: rgba(248, 250, 252, 0.88);
  color: var(--muted);
  text-align: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body p,
.article-section ul,
.article-faq-item p {
  margin: 0;
  color: #475569;
}

.article-body h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.article-section {
  display: grid;
  gap: 14px;
}

.article-section ul { padding-left: 18px; }

.article-faq-list {
  display: grid;
  gap: 14px;
}

.article-faq-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.article-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.error-404-shell { position: relative; }

.error-404-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  position: relative;
  overflow: hidden;
  padding: 36px;
}

.error-404-layout::before {
  content: '';
  position: absolute;
  inset: -80px auto auto -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 68%);
  pointer-events: none;
}

.error-404-layout::after {
  content: '';
  position: absolute;
  inset: auto -70px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 183, 61, 0.16), transparent 70%);
  pointer-events: none;
}

.error-404-copy,
.error-404-panel {
  position: relative;
  z-index: 1;
}

.error-404-code {
  margin: 18px 0 12px;
  font-size: clamp(4.3rem, 12vw, 8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(37, 99, 235, 0.16);
}

.error-404-lead { color: #475569; }

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.error-404-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.error-404-stat {
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.error-404-stat strong,
.error-404-link-card strong,
.error-404-check-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.96rem;
}

.error-404-stat span,
.error-404-link-card span,
.error-404-check-item span,
.error-404-panel-head p {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.error-404-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.error-404-panel-head p { margin: 10px 0 0; }

.error-404-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.error-404-link-card,
.error-404-check-item {
  text-decoration: none;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.error-404-link-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.error-404-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

.error-404-checklist {
  display: grid;
  gap: 12px;
}

.article-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.article-card-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.article-link-list { display: grid; gap: 12px; }
.article-link-list a:hover { color: var(--accent-strong); }

.article-cta {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(29, 78, 216, 0.94));
}

.article-cta p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.article-highlight {
  padding: 18px 20px;
  border-left: 4px solid rgba(56, 189, 248, 0.9);
  background: rgba(239, 246, 255, 0.96);
  border-radius: 16px;
  color: #334155;
}

@media (max-width: 900px) {
  .container { width: min(100% - 24px, 1180px); }
  .main-shell { padding: 14px 0 56px; }
  .grid-2,
  .cards,
  .cards-2 { grid-template-columns: 1fr; }
  .article-grid,
  .seo-full-row,
  .seo-faq-section,
  .seo-hero,
  .hero-shell,
  .error-404-layout,
  .hero-proof,
  .trust-strip,
  .screenshot-grid,
  .screenshot-grid-3,
  .cards-featured { grid-template-columns: 1fr; }
  .section-card,
  .aside-card,
  .card,
  .panel { padding: 22px; }
  .showcase-main { width: 100%; margin-left: 0; }
  .showcase-main picture { display: block; }
  .showcase-main img {
    height: clamp(360px, 112vw, 520px);
    object-fit: cover;
    object-position: 14% top;
  }
  .hero-visual { gap: 14px; }
  .showcase-float {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
  .feature-callout { grid-column: auto; }
  .article-aside { position: static; }
  .seo-hero { gap: 24px; }
  .seo-hero-notes { grid-template-columns: 1fr; }
  .seo-faq-intro { position: static; }
  .seo-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .error-404-stats,
  .error-404-link-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-shell { padding: 22px; }
  .cost-note {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .seo-hero .h1 { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .seo-hero-points { display: none; }
  .seo-hero-notes,
  .seo-faq-grid,
  .seo-faq-intro .btn-group,
  .hero-visual,
  .error-404-actions,
  .error-404-stats,
  .error-404-link-grid { grid-template-columns: 1fr; }
  .error-404-layout { padding: 22px; }
  .error-404-actions { display: grid; }
  .showcase-float { display: none; }
}

@media (max-width: 860px) {
  .navbar-inner { min-height: 72px; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.96);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-meta-links { flex-wrap: wrap; }
}

/* Keep typography light and practical, matching the Integratix information density. */
body.landing-body,
.btn,
.nav-links a,
.site-footer { font-family: 'Figtree', sans-serif; }

.logo,
.h1,
h2,
h3,
h4,
.section-heading h2 { font-family: 'Figtree', sans-serif; font-weight: 600; }

.h1 { font-size: clamp(2.1rem, 3.55vw, 3.15rem); font-weight: 600; letter-spacing: -0.04em; }
.nav-links a { font-weight: 500; }
.btn { font-weight: 600; }
.card-title,
.feature-card h3,
.proof-item .card-title { font-weight: 600; }
.footer-copy { color: #64748b; }
.footer-meta { color: #64748b; }
.footer-meta a { color: #475569; font-weight: 500; }
.footer-social a { color: #0f766e; font-weight: 500; }

/* JECO public pages use distinct compositions instead of a shared landing template. */
.public-page--features .feature-header,
.public-page--info .info-opening,
.public-page--pricing .pricing-intro,
.public-page--contact .contact-intro {
  position: relative;
  display: grid !important;
  overflow: hidden;
  border: 1px solid #d6e8e6 !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f2fbfa 100%) !important;
  box-shadow: 0 24px 54px -40px rgba(15, 118, 110, 0.42) !important;
}
.public-page--features .feature-header,
.public-page--info .info-opening,
.public-page--contact .contact-intro {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.44fr);
  padding: 52px 56px !important;
  text-align: left !important;
}
.public-page--features .feature-header > *,
.public-page--info .info-opening > *,
.public-page--contact .contact-intro > * { grid-column: 1; }
.public-page--features .feature-header::after,
.public-page--info .info-opening::after,
.public-page--contact .contact-intro::after {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  min-height: 210px;
  border: 1px solid rgba(13, 148, 136, 0.14);
  border-radius: 22px;
  background: radial-gradient(circle at 27% 24%, rgba(20, 184, 166, 0.4) 0 5px, transparent 6px), radial-gradient(circle at 68% 36%, rgba(201, 151, 53, 0.65) 0 7px, transparent 8px), radial-gradient(circle at 41% 76%, rgba(13, 148, 136, 0.28) 0 22px, transparent 23px), linear-gradient(145deg, #e8fbf8, #fbfdfb);
  content: '';
}
.public-page--features .feature-header .page-title,
.public-page--info .info-opening .page-title,
.public-page--contact .contact-intro .page-title,
.public-page--features .feature-header .page-lead,
.public-page--info .info-opening .page-lead,
.public-page--contact .contact-intro .page-lead {
  max-width: 650px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.public-page--features > .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px !important; }
.public-page--features > .cards > .card { min-height: 0; padding: 28px !important; }
.public-page--info .cards-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.public-page--info .cards-featured .feature-card:last-child { grid-column: span 2; }

.public-page--pricing .pricing-intro {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.62fr);
  align-items: center;
  gap: 28px 48px;
  padding: 46px 52px !important;
  text-align: left !important;
}
.public-page--pricing .pricing-intro > :not(.cost-note) { grid-column: 1; }
.public-page--pricing .pricing-intro .page-title,
.public-page--pricing .pricing-intro .page-lead { max-width: 620px; margin-right: 0 !important; margin-left: 0 !important; }
.public-page--pricing .pricing-intro .cost-note {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
  align-self: stretch;
  justify-content: flex-start;
  border-left-width: 1px;
  border-top: 5px solid #c99735;
  border-radius: 18px;
}
.public-page--pricing > .cards-2 { gap: 30px !important; }

.public-page--contact .contact-intro { background: linear-gradient(135deg, #effcf9 0%, #ffffff 72%) !important; }
.public-page--contact .contact-grid { grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); }
.public-page--contact .contact-aside { background: #0f766e !important; color: #ffffff; }
.public-page--contact .contact-aside .label,
.public-page--contact .contact-aside .value,
.public-page--contact .contact-aside .detail-kv { color: inherit; }

@media (max-width: 900px) {
  .public-page--features .feature-header,
  .public-page--info .info-opening,
  .public-page--contact .contact-intro,
  .public-page--pricing .pricing-intro { grid-template-columns: 1fr; padding: 30px 24px !important; }
  .public-page--features .feature-header::after,
  .public-page--info .info-opening::after,
  .public-page--contact .contact-intro::after { display: none; }
  .public-page--features > .cards,
  .public-page--info .cards-featured,
  .public-page--contact .contact-grid { grid-template-columns: 1fr; }
  .public-page--info .cards-featured .feature-card:last-child { grid-column: auto; }
  .public-page--pricing .pricing-intro .cost-note { grid-column: 1; grid-row: auto; margin-top: 4px; }
}

/* Final alignment for centered public-page heroes and feature grids. */
.public-page > .page-hero:not(.page-hero-left) .page-title,
.public-page > .page-hero:not(.page-hero-left) .h1 {
  max-width: 780px;
  margin-right: auto !important;
  margin-left: auto !important;
}
.public-page > .page-hero:not(.page-hero-left) .page-lead {
  margin-right: auto !important;
  margin-left: auto !important;
}
.public-page--features > .cards {
  gap: 24px;
  margin-top: 28px !important;
}
.public-page--features > .cards > .card { min-height: 214px; }

@media (max-width: 900px) {
  .public-page--features > .cards { gap: 16px; margin-top: 22px !important; }
  .public-page--features > .cards > .card { min-height: 0; }
}

/* One spacing scale for every public-page card group. */
.public-page { gap: 36px !important; }
.public-page .cards,
.public-page .cards-2,
.public-page .grid-2 { gap: 24px !important; }
.public-page > .section-card:not(.page-hero),
.public-page .cards-2 > .section-card,
.public-page .grid-2 > .section-card,
.public-page .grid-2 > .aside-card,
.public-page .cards > .section-card {
  padding: 30px !important;
  border: 1px solid #dbe4e8 !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 18px 42px -32px rgba(15, 23, 42, 0.38) !important;
}
.public-page:not(.public-page--faq) .cards > .card,
.public-page:not(.public-page--faq) .cards-2 > .card {
  padding: 24px;
  border: 1px solid #dbe4e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px -32px rgba(15, 23, 42, 0.32);
}
.public-page--faq { gap: 24px !important; }
.public-page--faq .cards-2 { gap: 14px !important; }
.public-page--guide .section-heading { margin-bottom: 6px; }

@media (max-width: 900px) {
  .public-page { gap: 24px !important; }
  .public-page .cards,
  .public-page .cards-2,
  .public-page .grid-2 { gap: 16px !important; }
  .public-page > .section-card:not(.page-hero),
  .public-page .cards-2 > .section-card,
  .public-page .grid-2 > .section-card,
  .public-page .grid-2 > .aside-card,
  .public-page .cards > .section-card { padding: 22px !important; }
}

/* JECO public pages use distinct compositions instead of a shared landing template. */
.public-page--features .feature-header,
.public-page--info .info-opening,
.public-page--pricing .pricing-intro,
.public-page--contact .contact-intro {
  position: relative;
  display: grid !important;
  overflow: hidden;
  border: 1px solid #d6e8e6 !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f2fbfa 100%) !important;
  box-shadow: 0 24px 54px -40px rgba(15, 118, 110, 0.42) !important;
}
.public-page--features .feature-header,
.public-page--info .info-opening,
.public-page--contact .contact-intro {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.44fr);
  padding: 52px 56px !important;
  text-align: left !important;
}
.public-page--features .feature-header > *,
.public-page--info .info-opening > *,
.public-page--contact .contact-intro > * { grid-column: 1; }
.public-page--features .feature-header::after,
.public-page--info .info-opening::after,
.public-page--contact .contact-intro::after {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  min-height: 210px;
  border: 1px solid rgba(13, 148, 136, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 27% 24%, rgba(20, 184, 166, 0.4) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 36%, rgba(201, 151, 53, 0.65) 0 7px, transparent 8px),
    radial-gradient(circle at 41% 76%, rgba(13, 148, 136, 0.28) 0 22px, transparent 23px),
    linear-gradient(145deg, #e8fbf8, #fbfdfb);
  content: '';
}
.public-page--features .feature-header .page-title,
.public-page--info .info-opening .page-title,
.public-page--contact .contact-intro .page-title {
  max-width: 650px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.public-page--features .feature-header .page-lead,
.public-page--info .info-opening .page-lead,
.public-page--contact .contact-intro .page-lead {
  max-width: 620px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.public-page--features > .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px !important;
}
.public-page--features > .cards > .card {
  min-height: 0;
  padding: 28px !important;
}
.public-page--info .cards-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.public-page--info .cards-featured .feature-card:last-child { grid-column: span 2; }

.public-page--pricing .pricing-intro {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.62fr);
  align-items: center;
  gap: 28px 48px;
  padding: 46px 52px !important;
  text-align: left !important;
}
.public-page--pricing .pricing-intro > :not(.cost-note) { grid-column: 1; }
.public-page--pricing .pricing-intro .page-title,
.public-page--pricing .pricing-intro .page-lead {
  max-width: 620px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.public-page--pricing .pricing-intro .cost-note {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
  align-self: stretch;
  justify-content: flex-start;
  border-left-width: 1px;
  border-top: 5px solid #c99735;
  border-radius: 18px;
}
.public-page--pricing > .cards-2 { gap: 30px !important; }

.public-page--contact .contact-intro { background: linear-gradient(135deg, #effcf9 0%, #ffffff 72%) !important; }
.public-page--contact .contact-grid { grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); }
.public-page--contact .contact-aside { background: #0f766e !important; color: #ffffff; }
.public-page--contact .contact-aside .label,
.public-page--contact .contact-aside .value,
.public-page--contact .contact-aside .detail-kv { color: inherit; }

@media (max-width: 900px) {
  .public-page--features .feature-header,
  .public-page--info .info-opening,
  .public-page--contact .contact-intro,
  .public-page--pricing .pricing-intro {
    grid-template-columns: 1fr;
    padding: 30px 24px !important;
  }
  .public-page--features .feature-header::after,
  .public-page--info .info-opening::after,
  .public-page--contact .contact-intro::after { display: none; }
  .public-page--features > .cards,
  .public-page--info .cards-featured,
  .public-page--contact .contact-grid { grid-template-columns: 1fr; }
  .public-page--info .cards-featured .feature-card:last-child { grid-column: auto; }
  .public-page--pricing .pricing-intro .cost-note {
    grid-column: 1;
    grid-row: auto;
    margin-top: 4px;
  }
}

/* Final public-page polish. This must follow legacy landing rules. */
.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.hero-proof .proof-item,
.hero-proof .proof-item:last-child {
  padding: 16px !important;
  border: 1px solid #dbe4e8 !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px -22px rgba(15, 23, 42, 0.3);
}
.public-page { gap: 28px; }
.public-page > .section-card,
.public-page .cards-2 > .section-card,
.public-page .cards > .section-card,
.public-page .section-card.cards-2 {
  padding: 28px !important;
  border: 1px solid #dbe4e8 !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--shadow-card) !important;
}
.public-page > .page-hero {
  padding: 20px 0 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.public-page .section-heading { margin-bottom: 0; }
.public-page .feature-card { min-height: 0; }
.public-page--pricing .cards-2 > .card { padding: 28px !important; }
.public-page--faq .card { background: #ffffff; }
.public-page--contact .btn-group { gap: 10px; }

@media (max-width: 900px) {
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof .proof-item,
  .hero-proof .proof-item:last-child { border-bottom: 1px solid #dbe4e8 !important; }
  .public-page > .section-card,
  .public-page .cards-2 > .section-card,
  .public-page .cards > .section-card,
  .public-page .section-card.cards-2 { padding: 22px !important; }
}

/* Keep the brand clear of the viewport edge on every desktop width. */
.navbar .container.navbar-inner {
  width: min(1320px, 100%);
  padding-right: 28px;
  padding-left: 28px;
}

.public-page--pricing > .page-hero {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.public-page--pricing .cost-note {
  width: 100%;
  max-width: 720px;
  padding: 14px 18px;
  text-align: left;
}
.public-page--pricing .cards-2 > .card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.public-page--pricing .cards-2 > .card > :last-child { margin-top: auto !important; }
.public-page--pricing .cards-2 > .card .btn { width: 100%; justify-content: center; }

@media (max-width: 640px) {
  .navbar .container.navbar-inner { padding-right: 16px; padding-left: 16px; }
  .public-page--pricing .cost-note { padding: 14px; }
}

/* Final hero summary layout: three separate cards with no shared borders. */
.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.proof-item,
.proof-item:last-child {
  padding: 16px;
  border: 1px solid #dbe4e8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px -22px rgba(15, 23, 42, 0.3);
}
@media (max-width: 900px) {
  .hero-proof { grid-template-columns: 1fr; }
}

/* Shared layout for the public information pages. */
.public-page {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 46px 0 72px;
  display: grid;
  gap: 28px;
}
.public-page > .section-card,
.public-page .cards-2 > .section-card,
.public-page .cards > .section-card,
.public-page .section-card.cards-2 {
  padding: 28px;
  border: 1px solid #dbe4e8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px -32px rgba(15, 23, 42, 0.34);
}
.public-page > .page-hero {
  padding: 22px 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.public-page > .page-hero .h1,
.public-page > .page-hero .page-title { max-width: 680px; }
.public-page > .page-hero .page-lead { max-width: 660px; }
.public-page > .page-hero-left { text-align: left; }
.public-page > .page-hero-left .page-title,
.public-page > .page-hero-left .page-lead { margin-left: 0; margin-right: 0; }
.public-page .cards,
.public-page .cards-2,
.public-page .grid-2 { gap: 18px; }
.public-page .feature-card { min-height: 0; }
.public-page .card { border-color: #dbe4e8; border-radius: 16px; box-shadow: 0 14px 32px -28px rgba(15, 23, 42, 0.28); }
.public-page--features > .cards > .card { padding: 22px; }
.public-page--features > .cards > .card h4 { font-size: 1rem; font-weight: 600; }
.public-page--features > .cards > .card p { color: #64748b !important; line-height: 1.65; }
.public-page--pricing .cards-2 > .card { padding: 28px; }
.public-page--pricing .pricing-support { align-items: center; }
.public-page--faq .cards-2 { align-items: start; }
.public-page--faq .card { padding: 0; overflow: hidden; }
.public-page--faq .faq-toggle { padding: 18px 20px; background: #ffffff; }
.public-page--faq .faq-panel { padding: 0 20px 20px; }
.public-page--contact .contact-grid > .section-card,
.public-page--contact .contact-grid > .aside-card { padding: 28px; }
.public-page--contact .contact-grid .h1 { font-size: clamp(1.8rem, 2.5vw, 2.45rem); }
@media (max-width: 900px) {
  .public-page { padding: 30px 0 52px; gap: 20px; }
  .public-page > .section-card,
  .public-page .cards-2 > .section-card,
  .public-page .cards > .section-card,
  .public-page .section-card.cards-2 { padding: 22px; }
}

/* Replace the old dark-gradient callout with a readable JECO invitation panel. */
.feature-callout {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 54%, #ffffff 100%);
  border: 1px solid #99f6e4;
  color: #0f172a;
  box-shadow: 0 20px 42px -32px rgba(15, 118, 110, 0.45);
}
.feature-callout h3,
.feature-callout p { color: #0f172a; }
.feature-callout p { color: #475569; }
.feature-callout .kicker {
  color: #0f766e;
  background: #ccfbf1;
  border-color: #99f6e4;
}
.feature-callout .btn { background: #0f766e; }
.nav-links .btn { color: #ffffff; }

/* Keep the three hero summaries as independent cards to prevent joined borders. */
.hero-proof {
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.proof-item,
.proof-item:last-child {
  padding: 16px;
  border: 1px solid #dbe4e8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px -22px rgba(15, 23, 42, 0.3);
}

/* JECO uses the same calm, editorial SaaS rhythm as the Integratix product site. */
:root {
  --gold: #c99735;
  --gold-deep: #a9791d;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --accent-deep: #0f5f5a;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --line: #dbe4e8;
  --shadow-soft: 0 22px 54px -36px rgba(15, 23, 42, 0.42);
  --shadow-card: 0 18px 45px -32px rgba(15, 23, 42, 0.38);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body.landing-body {
  color: var(--ink);
  background: radial-gradient(circle at top, rgba(13, 148, 136, 0.10), transparent 32%), linear-gradient(180deg, #f8fbfb 0%, #f3f6f8 100%);
}

.container { width: min(1280px, calc(100% - 40px)); }
.main-shell { padding: 0 0 72px; }
.navbar { background: rgba(255, 255, 255, 0.82); border-color: rgba(219, 228, 232, 0.85); }
.navbar-inner { min-height: 74px; }
.brand { color: var(--ink); gap: 11px; }
.logo-mark { width: 42px; height: 42px; padding: 4px; border-radius: 12px; background: #f0fdfa; border-color: #ccfbf1; filter: none; }
.logo { color: #0f172a; font-family: 'Manrope', sans-serif; font-size: 1rem; letter-spacing: 0.16em; }
.logo-subtitle { color: #64748b; font-size: 0.65rem; letter-spacing: 0.08em; }
.nav-links { gap: 2px; }
.nav-links a { padding: 8px 11px; color: #64748b; font-size: 0.875rem; font-weight: 700; }
.nav-links a:hover, .nav-links a.active { color: #0f766e; background: #f0fdfa; }
.btn { padding: 12px 17px; border-radius: 12px; background: #0f766e; box-shadow: 0 16px 30px -20px rgba(15, 118, 110, 0.9); }
.btn:hover { background: #115e59; box-shadow: 0 20px 36px -22px rgba(15, 118, 110, 0.9); }
.btn.secondary { color: #334155; background: #ffffff; border-color: #dbe4e8; }
.btn.secondary:hover { background: #f8fafc; }
.btn-sm { min-height: auto; padding: 9px 13px; }

.home-stack { gap: 0; }
.hero-shell { min-height: 0; padding: 84px 0 76px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.hero-shell::before, .hero-shell::after { display: none; }
.hero-copy { padding: 12px 0; }
.kicker { padding: 7px 12px; color: #0f766e; background: #f0fdfa; border: 1px solid #ccfbf1; font-size: 0.72rem; }
.h1 { max-width: 760px; margin: 18px 0; font-family: 'Manrope', sans-serif; font-size: clamp(2.45rem, 5vw, 4.25rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.055em; }
.lead { color: #475569; font-size: 1.08rem; line-height: 1.75; }
.btn-group { margin-top: 28px; }
.hero-proof { margin-top: 30px; gap: 0; border: 1px solid #dbe4e8; border-radius: 16px; background: rgba(255,255,255,0.72); box-shadow: var(--shadow-card); }
.proof-item { padding: 15px 17px; border-right: 1px solid #e8eef0; }
.proof-item:last-child { border-right: 0; }
.proof-item span:last-child { color: #64748b; font-size: 0.8rem; }
.hero-visual { align-self: center; }
.showcase-main { border-radius: 24px; border: 1px solid #dbe4e8; box-shadow: 0 30px 80px -46px rgba(15,23,42,0.6); }
.showcase-float { display: none; }

.trust-strip, .section-card, .aside-card, .card, .panel { background: rgba(255,255,255,0.9); border-color: #dbe4e8; box-shadow: var(--shadow-card); }
.trust-strip { margin: 0 auto 64px; padding: 0; border-radius: 18px; overflow: hidden; }
.mini-stat { padding: 22px; border-right: 1px solid #e5edef; }
.mini-stat:last-child { border-right: 0; }
.section-card { padding: 56px 0; border-width: 0; border-radius: 0; box-shadow: none; background: transparent; }
.section-card:nth-of-type(even) { border-top: 1px solid #dbe4e8; border-bottom: 1px solid #dbe4e8; background: rgba(255,255,255,0.7); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2 { font-family: 'Manrope', sans-serif; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.15; }
.section-heading p { color: #64748b; }
.cards.cards-featured { gap: 18px; }
.feature-card { padding: 24px; border-radius: 16px; background: #ffffff; }
.feature-card p { color: #64748b; }
.feature-callout { background: #0f172a; border-color: #0f172a; }
.feature-callout h3, .feature-callout p { color: #ffffff; }
.feature-callout p { color: #cbd5e1; }
.feature-callout .btn { background: #14b8a6; }
.screenshot-card { border-radius: 18px; border-color: #dbe4e8; box-shadow: var(--shadow-card); }
.screenshot-copy { background: #ffffff; }
.site-footer { background: #ffffff; border-color: #dbe4e8; color: #64748b; }
.site-footer strong { color: #0f172a; }

@media (max-width: 900px) {
  .hero-shell { padding: 52px 0 42px; }
  .hero-proof { grid-template-columns: 1fr; }
  .proof-item, .mini-stat { border-right: 0; border-bottom: 1px solid #e8eef0; }
  .proof-item:last-child, .mini-stat:last-child { border-bottom: 0; }
  .section-card { padding: 42px 0; }
}

@media (max-width: 860px) {
  .nav-toggle { background: #ffffff; border-color: #dbe4e8; }
  .nav-toggle span { background: #334155; }
  .nav-links { background: #ffffff; border-color: #dbe4e8; box-shadow: var(--shadow-soft); }
}

/* Final type scale: this block intentionally follows every legacy rule. */
body.landing-body,
.logo,
.nav-links a,
.btn,
.site-footer,
.h1,
h2,
h3,
h4,
.section-heading h2 { font-family: 'Figtree', 'Segoe UI', sans-serif; }

.h1 { font-size: clamp(2rem, 3.15vw, 3rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.04em; }
.section-heading h2 { font-weight: 600; }
.nav-links a { font-weight: 500; }
.btn { font-weight: 600; }
.card-title,
.feature-card h3,
.proof-item .card-title { font-weight: 600; }
.footer-copy { color: #64748b; }
.footer-meta { color: #64748b; }
.footer-meta a { color: #475569; font-weight: 500; }
.footer-social a { color: #0f766e; font-weight: 500; }

/* Final alignment for centered public-page heroes and feature grids. */
.public-page > .page-hero:not(.page-hero-left) .page-title,
.public-page > .page-hero:not(.page-hero-left) .h1 {
  max-width: 780px;
  margin-right: auto !important;
  margin-left: auto !important;
}
.public-page > .page-hero:not(.page-hero-left) .page-lead {
  margin-right: auto !important;
  margin-left: auto !important;
}
.public-page--features > .cards {
  gap: 24px;
  margin-top: 28px !important;
}
.public-page--features > .cards > .card { min-height: 214px; }

@media (max-width: 900px) {
  .public-page--features > .cards { gap: 16px; margin-top: 22px !important; }
  .public-page--features > .cards > .card { min-height: 0; }
}
