/* Gallery Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 4px 32px #0008;
  background: #fff;
  padding: 8px;
  animation: lightbox-zoom 0.2s cubic-bezier(.4,2,.6,1) 1;
}
@keyframes lightbox-zoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* --- FAQ Section Styles --- */
.faq-list {
  margin: 32px 0 0 0;
  padding: 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0f66c80d;
  margin-bottom: 18px;
  border: 1.5px solid #e3eaf5;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:focus-within, .faq-item:hover {
  box-shadow: 0 4px 18px #0f66c81a;
  border-color: #b3d2f7;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.13em;
  font-family: inherit;
  color: #0a4f9d;
  font-weight: 700;
  text-align: left;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}
.faq-question:after {
  content: '\25BC';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.1em;
  color: #16b39a;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-question:focus {
  background: #f2f8ff;
}
.faq-answer {
  padding: 0 18px 18px 18px;
  color: #3a4a5c;
  font-size: 1em;
  line-height: 1.6;
  border-top: 1px solid #e3eaf5;
  animation: faqExpand 0.25s cubic-bezier(.4,1.4,.6,1) both;
}
@keyframes faqExpand {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* --- Enhanced Demo Credentials UI --- */
.demo-credentials-card {
  background: #f7fbff;
  border: 1.5px solid #b3d2f7;
  border-radius: 14px;
  padding: 20px 18px 14px 18px;
  margin-top: 22px;
  box-shadow: 0 4px 18px rgba(36, 97, 168, 0.07);
}
.demo-credentials-card h4 {
  margin: 0 0 12px 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-icon {
  font-size: 1.3em;
}
.demo-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 10px;
}
.demo-label {
  font-size: 13px;
  color: #2f5e91;
  font-weight: 700;
  display: block;
}
.demo-value, .demo-link {
  font-size: 15px;
  color: #0f66c8;
  font-weight: 600;
  word-break: break-all;
}
.demo-password {
  letter-spacing: 0.04em;
}
.demo-link {
  text-decoration: underline;
  transition: color 0.2s;
}
.demo-link:hover {
  color: #16b39a;
}
.demo-note {
  margin: 10px 0 0 0;
  font-size: 13px;
  color: #4a5f79;
}

/* --- Enhanced Packages Section --- */
.price-card {
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.price-card.starter {
  border-left: 5px solid #0f66c8;
}
.price-card.growth {
  border-left: 5px solid #16b39a;
}
.price-card.enterprise {
  border-left: 5px solid #7aaee8;
}
.price-desc {
  font-size: 13px;
  color: #4a5f79;
  font-weight: 500;
  margin-left: 4px;
}
.package-detail {
  background: #f2f8ff;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  color: #0a4f9d;
  margin-bottom: 10px;
}
.package-footnote {
  margin-top: 18px;
  font-size: 13px;
  color: #4a5f79;
  text-align: center;
}
:root {
  --bg: #f3f8ff;
  --bg-strong: #ddeeff;
  --ink: #11243d;
  --muted: #4a5f79;
  --line: #cfe0f4;
  --card: #ffffff;
  --brand: #0f66c8;
  --brand-strong: #0a4f9d;
  --accent: #16b39a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6fbff 0%, #edf5ff 100%);
}

h1,
h2,
h3,
strong {
  font-family: Sora, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(246, 251, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 700;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.top-nav .cta-link {
  color: var(--brand-strong);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 50px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.35;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: #8ec4ff;
  top: -80px;
  right: -80px;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: #7be9d6;
  bottom: -90px;
  left: -70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #2f5e91;
  font-weight: 700;
}

h1 {
  margin: 12px 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

h2 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 4vw, 40px);
}

.hero-copy {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 20px;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
}

.btn-ghost {
  color: var(--brand-strong);
  border-color: #9cbfe6;
  background: #fff;
}

.hero-bullets {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(36, 76, 120, 0.12);
}

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

.snap-grid article {
  background: #f2f8ff;
  border: 1px solid #d7e6f7;
  border-radius: 12px;
  padding: 12px;
}

.snap-grid span {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.section {
  padding: 58px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.about-panel,
.demo-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.about-panel ul,
.demo-panel ul {
  margin: 0;
  padding-left: 18px;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 14px;
}

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

.feature-card,
.module-grid article,
.benefits article,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.feature-card p,
.module-grid p,
.benefits p,
.price-card p {
  color: var(--muted);
}

.module-grid,
.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing .price-card.featured {
  border-color: #7aaee8;
  box-shadow: 0 14px 28px rgba(36, 97, 168, 0.2);
}

.tag {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 10px;
}

.price {
  margin-top: 4px;
}

.price-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.demo-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

input {
  width: 100%;
  border: 1px solid #c6dbf2;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.saas-strip {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eaf3ff;
  padding: 28px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.copy {
  text-align: center;
  color: #4e6380;
  margin: 18px 0 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid.three,
  .module-grid,
  .benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-nav {
    position: absolute;
    top: 62px;
    right: 4vw;
    left: 4vw;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }
}
