:root {
  --navy: #0f1b33;
  --navy-soft: #162544;
  --sky: #4da3ff;
  --sky-soft: #d8ebff;
  --coral: #ff6b4a;
  --white: #ffffff;
  --muted: #6b7890;
  --line: rgba(15, 27, 51, 0.1);
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--navy);
  background: #eef2f8;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, var(--navy) 0%, #0a1224 100%);
  color: var(--white);
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar-brand span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}
.sidebar-brand {
  font-weight: 700;
  line-height: 1.25;
  font-size: 0.95rem;
}
.sidebar nav {
  display: grid;
  gap: 0.35rem;
}
.sidebar nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
}
.sidebar nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.sidebar nav a.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-left: 2px solid var(--coral);
}
.nav-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.5rem;
  padding-left: 0.75rem;
}
.nav-label:first-child { margin-top: 0; }
.sidebar-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.sidebar-foot a {
  display: block;
  margin-top: 0.45rem;
  color: var(--sky-soft);
  font-weight: 600;
  word-break: break-all;
}

.content { min-width: 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 4rem);
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(77, 163, 255, 0.18), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, #f6f9fd 100%);
  border-bottom: 1px solid var(--line);
}
.hero-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  right: -10vw;
  top: -20vw;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.15), transparent 65%);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.9rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.lede {
  margin-top: 1rem;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-note {
  margin-top: 1.25rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 10px 30px rgba(15, 27, 51, 0.05);
  animation: fadeUp 0.7s ease both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 27, 51, 0.1);
}
.stat-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
}
.stat-card.accent {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.stat-card.accent span { color: rgba(255, 255, 255, 0.7); }

.hero-btn {
  display: inline-flex;
  margin-top: 1.8rem;
  padding: 0.9rem 1.3rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s;
}
.hero-btn:hover {
  transform: translateY(-2px);
  background: #e85a3a;
}

.section {
  padding: 4rem clamp(1.2rem, 5vw, 4rem);
}
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.8rem;
}
.section-top h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}
.section-top p {
  max-width: 34ch;
  color: var(--muted);
  text-align: right;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.info-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}
.info-block h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.info-block p,
.info-block li {
  color: var(--muted);
  font-size: 0.92rem;
}
.info-block ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
.info-block li {
  padding-left: 0.9rem;
  position: relative;
}
.info-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sky);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 27, 51, 0.08);
}
.icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--sky-soft);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}
.cards h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.cards p { color: var(--muted); font-size: 0.95rem; }
.card-list {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.3rem;
}
.card-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 0.85rem;
  position: relative;
}
.card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--sky);
  font-size: 0.75rem;
}

.about {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-copy {
  max-width: 70ch;
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.about-stats div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}
.about-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.about-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.values > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}
.values h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.values ul { list-style: none; display: grid; gap: 0.35rem; }
.values li { color: var(--muted); font-size: 0.92rem; padding-left: 0.9rem; position: relative; }
.values li::before { content: "✓"; position: absolute; left: 0; color: var(--coral); font-size: 0.8rem; }
.values p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

.tech {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.tech-item {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  transition: transform 0.25s, border-color 0.25s;
}
.tech-item:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 163, 255, 0.35);
}
.tech-item h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.tech-item p { color: var(--muted); font-size: 0.9rem; }

.industries { background: #f7f9fc; border-top: 1px solid var(--line); }
.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.industry-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.industry-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(15, 27, 51, 0.08);
}
.industry-list h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.industry-list p { color: var(--muted); font-size: 0.9rem; }

.pricing {
  background: linear-gradient(180deg, #f7f9fc 0%, var(--white) 100%);
  border-top: 1px solid var(--line);
}
.pricing-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 27, 51, 0.1);
}
.price-card.featured {
  border-color: rgba(77, 163, 255, 0.45);
  box-shadow: 0 12px 35px rgba(77, 163, 255, 0.12);
}
.price-card.enterprise {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-color: var(--navy);
}
.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.plan-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.35rem;
}
.price-card.enterprise .plan-tier { color: var(--sky-soft); }
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.plan-for {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}
.price-card.enterprise .plan-for { color: rgba(255, 255, 255, 0.7); }
.plan-price {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.price-card.enterprise .plan-price { border-bottom-color: rgba(255, 255, 255, 0.15); }
.plan-price .amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.plan-price .period {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.price-card.enterprise .plan-price .period { color: rgba(255, 255, 255, 0.6); }
.plan-price.custom {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--serif);
}
.plan-features {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.plan-features li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 800;
  font-size: 0.75rem;
}
.price-card.enterprise .plan-features li {
  color: rgba(255, 255, 255, 0.78);
}
.price-card.enterprise .plan-features li::before {
  color: var(--sky-soft);
}
.plan-btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  transition: transform 0.2s, background 0.2s;
}
.plan-btn:hover { transform: translateY(-2px); }
.plan-btn.primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.plan-btn.primary:hover { background: #e85a3a; }
.plan-btn.enterprise-btn {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.plan-btn:not(.primary):not(.enterprise-btn):hover {
  background: #f7f9fc;
}

.process {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.timeline li {
  position: relative;
  padding: 1.2rem;
  border-radius: 14px;
  background: #f7f9fc;
  border: 1px solid var(--line);
}
.step {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}
.timeline h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.timeline p { color: var(--muted); font-size: 0.92rem; }

.faq {
  background: var(--white);
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.faq-list details {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  transition: border-color 0.25s, background 0.25s;
}
.faq-list details[open] {
  border-color: rgba(77, 163, 255, 0.35);
  background: var(--white);
}
.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.faq-list summary:hover { color: var(--sky); }
.faq-list a { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
.faq-list p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.contact-panel h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
  margin-bottom: 1.2rem;
}
.contact-details {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}
.contact-details dt {
  font-weight: 700;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
address {
  font-style: normal;
  align-self: end;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.4rem;
  font-size: 0.95rem;
}

footer.site-footer,
.site-footer {
  padding: 1.5rem clamp(1.2rem, 5vw, 4rem) 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.footer-links a {
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--navy); }

.legal-page {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 5vw, 4rem);
  max-width: 780px;
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.legal-meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-page section {
  margin-bottom: 1.75rem;
}
.legal-page h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}
.legal-page a { color: var(--sky); text-decoration: underline; }
.legal-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .stat-card, .hero-glow { animation: none; transition: none; opacity: 1; transform: none; }
}

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar {
    position: relative;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .sidebar nav { display: flex; flex-wrap: wrap; }
  .sidebar-foot { width: 100%; margin-top: 0; }
  .hero-cards, .cards, .timeline, .contact-panel, .section-top,
  .info-grid, .about-stats, .faq-list, .tech-grid, .industry-list, .values, .pricing-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }
  .nav-label { display: none; }
  .section-top p { text-align: left; }
  address { border-left: 0; padding-left: 0; margin-top: 1rem; }
}
