﻿/* ===================================================
   Venthra – main.css
   =================================================== */

/* ---------- Font ---------- */
@font-face {
  font-family: 'Sora';
  src: url('../fonts/Sora/Sora-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 800;
  font-style: normal;
}

/* ---------- Base ---------- */

:root {
  --blue:        #115FD4;
  --blue-dark:   #0D4FBC;
  --blue-light:  #E7F0FF;
  --text:        #111827;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --bg:          #FFFFFF;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.12);

  /* Spacing tokens */
  --section-py:      7rem;     /* standard section vertical padding */
  --section-gap:     7rem;     /* gap between consecutive sections (margin-top) */
  --block-gap:       4rem;     /* gap between heading block and content */
  --heading-mb:      2rem;     /* margin below headings */
  --text-mb:         3rem;     /* margin below body text before buttons */
  --card-pad:        3rem;     /* card inner padding */
  --card-gap:        2.5rem;   /* gap between cards in a grid */
  --split-col-gap:   7rem;     /* gap between two columns in split layouts */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- Navbar ---------- */
#navbar {
  min-height: 84px;
  box-shadow: 0 1px 0 rgba(17, 24, 39, .06);
  transition: min-height .3s ease, box-shadow .3s ease, padding .3s ease;
}

#navbar.navbar--scrolled {
  min-height: 60px;
  box-shadow: 0 2px 16px rgba(17, 24, 39, .10);
  padding-top: 0;
  padding-bottom: 0;
}

#navbar.navbar--scrolled .navbar-brand img {
  height: 36px;
  transition: height .3s ease;
}

#navbar.navbar--scrolled .nav-link {
  font-size: .95rem;
}

#navbar.navbar--scrolled .btn {
  height: 36px;
  min-width: 0;
  padding: 0 12px;
  font-size: .85rem;
}

#navbar .navbar-brand {
  color: #233b63;
  font-size: 1.05rem;
  font-weight: 700;
}

#navbar .navbar-brand img { height: 58px; transition: height .3s ease; }

#navbar .nav-link {
  color: #617394;
  font-weight: 500;
  font-size: 1.1rem;
  padding-inline: .85rem;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus,
#navbar .nav-link.is-active,
#navbar .nav-link[aria-current="page"] {
  color: var(--blue);
}

#navbar .btn {
  min-width: 156px;
  height: 44px;
  border-radius: 11px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
  border-width: 2px;
  box-shadow: none;
}

#navbar .navbar__auth-actions {
  gap: 10px;
}

#navbar .btn-outline-primary {
  border: 2px solid #1f2937;
  background: #fff;
  color: #111827;
}

#navbar .btn-outline-primary:hover,
#navbar .btn-outline-primary:focus {
  border-color: #111827;
  background: #f8fafc;
  color: #111827;
}

#navbar .btn-primary {
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

#navbar .btn-primary:hover,
#navbar .btn-primary:focus {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}


/* About page uses its own class namespace with the Community visual language. */
.about-hero__layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.about-hero__copy { max-width: 100%; }
.about-hero__eyebrow { margin: 0 0 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.about-hero__title { max-width: 760px; font-size: 3rem; font-weight: 300; line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 2rem; color: var(--text); }
.about-hero__title em { display: block; font-style: italic; font-weight: 700; color: #131b2e; }
.about-hero__text { max-width: 760px; font-size: 1.0625rem; line-height: 1.55; color: var(--muted); margin: 0; }
.about-hero__text-secondary { margin-top: 1.2rem; }
.about-hero__actions { gap: 12px; margin-top: 2rem; }
.about-hero__actions .btn { min-width: 228px; height: 52px; border-radius: 11px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1.15; font-weight: 600; border-width: 2px; box-shadow: none; }
.about-hero__actions .btn-primary { border-color: var(--blue); background: var(--blue); color: #fff; }
.about-hero__actions .btn-primary:hover, .about-hero__actions .btn-primary:focus { border-color: var(--blue-dark); background: var(--blue-dark); color: #fff; }
.about-hero__actions .btn-outline-primary { border-color: #1f2937; background: #fff; color: #111827; }
.about-hero__actions .btn-outline-primary:hover, .about-hero__actions .btn-outline-primary:focus { border-color: #111827; background: #f8fafc; color: #111827; }
.about-hero__visual { display: flex; justify-content: center; }
.about-hero__device { width: min(100%, 470px); background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(17, 95, 212, 0.2); border-radius: 18px; box-shadow: 0 20px 48px rgba(17, 24, 39, 0.06); overflow: hidden; }
.about-hero__device-header { display: flex; align-items: center; gap: 0.55rem; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(17, 95, 212, 0.1); background: rgba(245, 248, 255, 0.55); }
.about-hero__dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.about-hero__dot--red { background: #ec6b6b; }
.about-hero__dot--yellow { background: #f3bf59; }
.about-hero__dot--green { background: #52c48e; }
.about-hero__device-body { padding: 1.5rem 1.4rem 1.8rem; display: grid; gap: 0.9rem; }
.about-hero__panel-head-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0 0.35rem; }
.about-hero__mini-chart { width: 44px; height: 44px; object-fit: contain; display: block; flex-shrink: 0; }
.about-hero__status { display: inline-flex; align-items: center; justify-content: center; padding: 0.38rem 0.8rem; border-radius: 999px; background: rgba(82, 196, 142, 0.18); color: #16835e; font-size: 0.72rem; font-weight: 700; }
.about-hero__panel { border: 1px solid rgba(17, 95, 212, 0.12); border-radius: 14px; background: linear-gradient(180deg, #f9fbff 0%, #f3f8ff 100%); padding: 0.9rem 1rem; }
.about-hero__panel--muted { background: linear-gradient(180deg, #f2f7ff 0%, #edf3ff 100%); }
.about-hero__panel-row { display: grid; grid-template-columns: 2.2rem minmax(0, 1fr); gap: 0.85rem; align-items: center; }
.about-hero__badge { width: 2.1rem; height: 2.1rem; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), #6ea3ff); color: #fff; font-size: 0.92rem; font-weight: 700; }
.about-hero__badge--alt { background: linear-gradient(135deg, #3a6ef5, #6a8fff); }
.about-hero__badge--success { background: linear-gradient(135deg, #2eb880, #56c896); }
.about-hero__panel-text { display: grid; gap: 0.15rem; }
.about-hero__panel-text strong { font-size: 0.95rem; color: var(--text); line-height: 1.3; }
.about-hero__panel-text span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.about-page { padding: var(--section-py) 0; background: #fff; }
.about-stack { display: grid; gap: 1.2rem; }
.about-item { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 1rem; align-items: flex-start; padding: 2.35rem 2.75rem 2.1rem; border: 1px solid #dfe7f4; border-radius: 14px; background: #edf5ff; box-shadow: 0 8px 24px rgba(17, 24, 39, 0.03); }
.about-item--odd { border-color: #e2e8f0; border-radius: 16px; background: #fbfcff; box-shadow: none; }
.about-item__icon { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), #3b82f6); color: #fff; display: grid; place-items: center; font-size: 0.68rem; font-weight: 700; line-height: 1; }
.about-item__content h3 { margin: 0 0 1rem; font-size: 1.55rem; line-height: 1.25; letter-spacing: -0.02em; color: var(--text); }
.about-item__content h4 { margin: 1.35rem 0 0.55rem; font-size: 1.15rem; line-height: 1.35; font-weight: 700; color: var(--text); }
.about-item__content p { margin: 0 0 1.1rem; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.about-item__content p:last-child { margin-bottom: 0; }
.about-cta { margin-top: 3.5rem; padding: 2rem 2.2rem; border-radius: 18px; background: linear-gradient(135deg, #0f5ad8 0%, #3c7ef5 100%); display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.about-cta__eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); }
.about-cta__content h2 { margin: 0.75rem 0 0.65rem; font-size: clamp(2rem, 2.4vw, 2.8rem); line-height: 1.12; letter-spacing: -0.03em; color: #fff; max-width: 620px; }
.about-cta__content p { max-width: 620px; margin: 0; font-size: 0.98rem; color: rgba(255, 255, 255, 0.8); line-height: 1.6; }
.about-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; align-items: center; }
.about-cta__actions .btn,
.about-cta__actions .btn-primary,
.about-cta__actions .btn-outline-primary { min-width: 214px; height: 46px; border-radius: 12px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; line-height: 1.15; font-weight: 600; letter-spacing: 0; border-width: 2px; box-shadow: none; }
.about-cta__actions .btn-primary,
.about-cta__actions .btn-primary.btn-lg { border-color: #fff; background: #fff; color: var(--blue); }
.about-cta__actions .btn-primary:hover,
.about-cta__actions .btn-primary:focus,
.about-cta__actions .btn-primary.btn-lg:hover,
.about-cta__actions .btn-primary.btn-lg:focus { border-color: #eaf2ff; background: #eaf2ff; color: var(--blue-dark); }
.about-cta__actions .btn-outline-primary,
.about-cta__actions .btn-outline-primary.btn-lg { border-color: rgba(255, 255, 255, 0.8); background: transparent; color: #fff; }
.about-cta__actions .btn-outline-primary:hover,
.about-cta__actions .btn-outline-primary:focus,
.about-cta__actions .btn-outline-primary.btn-lg:hover,
.about-cta__actions .btn-outline-primary.btn-lg:focus { border-color: #fff; background: rgba(255, 255, 255, 0.06); color: #fff; }

@media (max-width: 991.98px) {
  .about-hero__layout { grid-template-columns: 1fr; }
  .about-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767.98px) {
  .about-item { grid-template-columns: 1fr; padding: 1.5rem; }
  .about-cta { padding: 1.5rem; }
  .about-cta__actions { justify-content: flex-start; }
}

/* Career page */
.career-hero {
  padding: 9.25rem 0 var(--section-py);
  background:
    radial-gradient(circle at 82% 22%, rgba(17, 95, 212, 0.12), transparent 26%),
    linear-gradient(140deg, #ffffff 0%, #f2f7ff 56%, #dfeeff 100%);
  overflow: hidden;
}

.career-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.career-hero__eyebrow,
.career-page__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.career-hero__title {
  max-width: 700px;
  margin: 0 0 2rem;
  color: var(--text);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.career-hero__title em {
  display: block;
  color: #131b2e;
  font-style: italic;
  font-weight: 700;
}

.career-hero__text {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.career-hero__actions {
  gap: 12px;
  margin-top: 2rem;
}

.career-hero__actions .btn {
  min-width: 228px;
  height: 52px;
  padding: 0 20px;
  border-width: 2px;
  border-radius: 11px;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
}

.career-hero__actions .btn-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.career-hero__actions .btn-primary:hover,
.career-hero__actions .btn-primary:focus {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.career-hero__actions .btn-outline-primary {
  border-color: #1f2937;
  background: #fff;
  color: #111827;
}

.career-hero__actions .btn-outline-primary:hover,
.career-hero__actions .btn-outline-primary:focus {
  border-color: #111827;
  background: #f8fafc;
  color: #111827;
}

.career-hero__visual {
  display: flex;
  justify-content: center;
}

.career-hero__card {
  width: min(100%, 470px);
  padding: 1.6rem 1.4rem 1.3rem;
  border: 1px solid rgba(74, 141, 255, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.06);
}

.career-hero__card-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.career-hero__card h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.3;
}

.career-hero__areas {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-hero__area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  padding: 0.55rem 0.7rem;
  border-radius: 11px;
  background: #f2f6fc;
}

.career-hero__area-number {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.career-hero__area strong {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.3;
}

.career-page {
  padding: var(--section-py) 0;
  background: #fff;
}

.career-values__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.career-values__copy {
  max-width: 540px;
}

.career-values__eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-values__copy h2 {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: 2.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.career-values__copy p:not(.career-values__eyebrow) {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.career-values__copy p:last-child {
  margin-bottom: 0;
}

.career-values__cards {
  display: grid;
  gap: 0.9rem;
}

.career-values__card {
  padding: 1.25rem 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f3f7fd;
}

.career-values__card--active {
  border-color: #5c99ff;
  background: #f4f8ff;
}

.career-values__card h3 {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.35;
}

.career-values__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .career-hero__layout {
    grid-template-columns: 1fr;
  }

  .career-values__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .career-hero {
    padding: 6.5rem 0 var(--section-py);
  }

  .career-hero__title {
    font-size: 2.5rem;
  }

  .career-hero__actions .btn {
    min-width: 0;
    width: 100%;
  }

  .career-hero__card {
    padding: 1.4rem 1rem 1.1rem;
  }
}

.career-openings {
  padding: var(--section-py) 0;
  background: #f5f8fc;
}

.career-openings__eyebrow,
.career-process__eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-openings h2,
.career-process h2 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.career-openings__intro,
.career-process__intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.career-openings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.career-opening {
  min-height: 280px;
  padding: 1.25rem 1.35rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.career-opening--active {
  border-color: #5c99ff;
}

.career-opening__status {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.career-opening__status--active {
  background: #dcf8eb;
  color: #16835e;
}

.career-opening h3 {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
}

.career-opening__meta {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.career-opening > p:not(.career-opening__meta) {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.career-opening .btn {
  margin-top: auto;
  min-height: 38px;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 600;
}

.career-process {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #1261dc 0%, #2f78ee 100%);
}

.career-process__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.career-process h2 {
  color: #fff;
}

.career-process__intro {
  color: rgba(255, 255, 255, 0.8);
}

.career-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.career-process__card {
  min-height: 170px;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  background: #fff;
}

.career-process__number {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 700;
}

.career-process__card h3 {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.35;
}

.career-process__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

@media (max-width: 767.98px) {
  .career-openings__grid,
  .career-process__grid {
    grid-template-columns: 1fr;
  }

  .career-openings h2,
  .career-process h2 {
    font-size: 1.9rem;
  }
}

.career-apply {
  padding: var(--section-py) 0;
  background: #fff;
}

.career-apply__panel {
  padding: 2rem 2.2rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #f3f7fd;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 2rem;
  align-items: center;
}

.career-apply__content {
  max-width: 760px;
}

.career-apply h2 {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: 2.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.career-apply p {
  max-width: 620px;
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.career-apply__side {
  display: grid;
  gap: 1rem;
}

.career-apply__snapshot {
  padding: 1rem 1.1rem;
  border: 1px solid #dbe7f7;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}

.career-apply__snapshot-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-apply__snapshot strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
}

.career-apply__steps {
  display: grid;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.78rem;
}

.career-apply__steps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.career-apply__steps span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
}

.career-apply .btn {
  min-width: 214px;
  height: 46px;
  margin-top: 0.8rem;
  border-radius: 12px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 600;
  border-width: 2px;
  box-shadow: none;
}

.career-apply .btn-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.career-apply .btn-primary:hover,
.career-apply .btn-primary:focus {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

@media (max-width: 767.98px) {
  .career-apply__panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .career-apply h2 {
    font-size: 1.9rem;
  }

  .career-apply .btn {
    width: 100%;
  }
}
/* ---------- Section label pill ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: transparent;
  padding: 0;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ===================================================
   STATS
   =================================================== */
.stats {
  background: #f5f7fa;
  padding: var(--section-py) 0;
  margin-top: 0;
}

.stats__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.stats__heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0 0 var(--block-gap) 0;
}

.stats__grid {
  display: flex;
  gap: 0;
}

.stats__item {
  flex: 1;
  padding-right: 2.5rem;
  border-right: 1px solid var(--border);
  padding-left: 2.5rem;
}

.stats__item:first-child {
  padding-left: 0;
}

.stats__item:last-child {
  border-right: none;
}

.stats__item strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stats__item span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  padding-top: 9.25rem;
  padding-bottom: var(--section-py);
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 58%, #d8e7ff 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: none;
}

.hero .container {
  margin-top: .35rem;
}

.hero .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2.25rem;
  margin-bottom: 0;
}

.hero__kicker { margin-bottom: 1rem; }

.hero__title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: var(--heading-mb);
  margin-top: 0;
}
.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: #131b2e;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: var(--text-mb);
  max-width: 520px;
}

.hero__actions .btn,
.btn-primary.btn-lg,
.btn-outline-primary.btn-lg {
  min-width: 228px;
  height: 52px;
  border-radius: 11px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
  border-width: 2px;
  box-shadow: none;
}

.hero__actions .btn-primary,
.btn-primary.btn-lg {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.hero__actions .btn-primary:hover,
.hero__actions .btn-primary:focus,
.btn-primary.btn-lg:hover,
.btn-primary.btn-lg:focus {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.hero__actions .btn-outline-primary,
.btn-outline-primary.btn-lg {
  border-color: #1f2937;
  background: #fff;
  color: #111827;
}

.hero__actions .btn-outline-primary:hover,
.btn-outline-primary.btn-lg:hover {
  border-color: #111827;
  background: #f8fafc;
  color: #111827;
}

.hero__actions {
  gap: 12px;
  margin-bottom: var(--text-mb);
}

/* Social proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.hero__avatars { display: flex; }
.hero__avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  background: var(--blue-light);
}

.hero__avatars .avatar-1 { object-position: 30% 35%; }
.hero__avatars .avatar-2 { object-position: 55% 30%; }
.hero__avatars .avatar-3 { object-position: 78% 38%; }
.hero__avatars img:first-child { margin-left: 0; }

.hero__count {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  flex-shrink: 0;
}

.hero__social-text { font-size: 14px; color: var(--muted); line-height: 1.4; }
.hero__social-text strong { color: var(--blue); }

/* Hero visual */
.hero__visual { position: relative; }

.hero__img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin-left: auto;
  background: var(--blue-light);
  position: relative;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Floating stat card */
.hero__card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.hero__card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__card-icon-image {
  width: 48px;
  height: 48px;
  max-width: none;
}
.hero__card-text strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 700;
  color: #111a2e;
  letter-spacing: -.3px;
}
.hero__card-text span {
  font-size: .85rem;
  line-height: 1.2;
  color: #111a2e;
}

/* ===================================================
   FEATURES GRID
   =================================================== */
.features {
  background: #f5f7fa;
  padding: var(--section-py) 0;
}

.features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--block-gap);
}

.features__header .section-label {
  justify-content: center;
}

.features__title {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: var(--heading-mb);
}

.features__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--text);
}

.features__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.features__card {
  background: #fff;
  border-radius: 16px;
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.features--reveal-ready .features__card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease, box-shadow 220ms ease;
}

.features--reveal-ready .features__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features--reveal-ready .features__card.is-visible:hover {
  transform: translateY(-5px);
}

.features__card:hover {
  transform: translateY(-5px);
}

.features__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  transition: transform 650ms ease;
}

.features--reveal-ready .features__icon {
  transform: scale(0.85);
}

.features--reveal-ready .features__card.is-visible .features__icon {
  transform: scale(1);
}

.features__icon img {
  width: 56px;
  height: 56px;
}

.features__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.features__card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ===================================================
   CTA
   =================================================== */
.cta {
  background-color: #1a6af5;
  background-image:
    url('/assets/icons/CTA_detail_1.svg'),
    url('/assets/icons/CTA_detail_2.svg'),
    linear-gradient(135deg, #1a6af5 0%, #3b82f6 50%, #6fa8ff 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right top, left bottom, center;
  background-size: 280px auto, 280px auto, cover;
  padding: var(--section-py) 0 0;
  position: relative;
  overflow: hidden;
  margin: var(--section-gap) 0;
  border-radius: 20px;
  transition: background-position 900ms ease;
}

.cta--reveal-ready {
  background-position: calc(100% + 14px) -10px, -14px calc(100% + 10px), center;
}

.cta--reveal-ready.is-visible {
  background-position: right top, left bottom, center;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta__header {
  text-align: center;
  margin-bottom: var(--block-gap);
}

.cta__title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: var(--heading-mb);
}

.cta__title em {
  font-style: italic;
  font-weight: 700;
  color: #fff;
}

.cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.cta__card {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 2.5rem 3rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.cta__pricing {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta--reveal-ready .cta__pricing,
.cta--reveal-ready .cta__card .btn {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.cta--reveal-ready.is-visible .cta__pricing,
.cta--reveal-ready.is-visible .cta__card .btn {
  opacity: 1;
  transform: translateY(0);
}

.cta--reveal-ready.is-visible .cta__card .btn {
  transition-delay: 140ms;
}

.cta__card .btn.is-pulsing {
  animation: ctaButtonPulse 700ms ease-out 1;
}

@keyframes ctaButtonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45), 0 0 0 0 rgba(26, 106, 245, 0.28);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0), 0 0 0 18px rgba(26, 106, 245, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(26, 106, 245, 0);
  }
}

.cta__price strong {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}

.cta__price span {
  font-size: 1rem;
  color: var(--muted);
}

.cta__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.cta__note {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* ===================================================
   PUBLIC CONTENT PAGES
   =================================================== */
.page-hero {
  padding: 9.25rem 0 var(--section-py);
  background: linear-gradient(140deg, #ffffff 0%, #eef5ff 58%, #d8e7ff 100%);
  overflow: hidden;
}

.page-hero--compact {
  padding-bottom: var(--section-py);
}

.page-hero--contact {
  background:
    radial-gradient(circle at 82% 22%, rgba(17, 95, 212, 0.14), transparent 28%),
    linear-gradient(140deg, #ffffff 0%, #f4f8ff 56%, #d8e7ff 100%);
}

.page-hero--community {
  background:
    radial-gradient(circle at 80% 22%, rgba(17, 95, 212, 0.12), transparent 26%),
    linear-gradient(140deg, #ffffff 0%, #f2f7ff 56%, #dfeeff 100%);
}

.community-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.community-hero__copy {
  max-width: 100%;
}

.community-hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.community-hero__title {
  max-width: 760px;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
  color: var(--text);
}

.community-hero__title em {
  display: block;
  font-style: italic;
  font-weight: 700;
  color: #131b2e;
}

.about-hero__text-secondary {
  margin-top: 1.2rem;
}

.community-hero__text {
  max-width: 760px;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.community-hero__actions {
  gap: 12px;
  margin-top: 2rem;
}

.community-hero__actions .btn,
.community-hero__actions .btn-primary,
.community-hero__actions .btn-outline-primary {
  min-width: 228px;
  height: 52px;
  border-radius: 11px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
  border-width: 2px;
  box-shadow: none;
}

.community-hero__actions .btn-primary,
.community-hero__actions .btn-primary.btn-lg {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.community-hero__actions .btn-primary:hover,
.community-hero__actions .btn-primary:focus,
.community-hero__actions .btn-primary.btn-lg:hover,
.community-hero__actions .btn-primary.btn-lg:focus {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.community-hero__actions .btn-outline-primary,
.community-hero__actions .btn-outline-primary.btn-lg {
  border-color: #1f2937;
  background: #fff;
  color: #111827;
}

.community-hero__actions .btn-outline-primary:hover,
.community-hero__actions .btn-outline-primary:focus,
.community-hero__actions .btn-outline-primary.btn-lg:hover,
.community-hero__actions .btn-outline-primary.btn-lg:focus {
  border-color: #111827;
  background: #f8fafc;
  color: #111827;
}

.community-hero__visual {
  display: flex;
  justify-content: center;
}

.community-hero__device {
  width: min(100%, 470px);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 95, 212, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.community-hero__device-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(17, 95, 212, 0.1);
  background: rgba(245, 248, 255, 0.55);
}

.community-hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.community-hero__dot--red { background: #ec6b6b; }
.community-hero__dot--yellow { background: #f3bf59; }
.community-hero__dot--green { background: #52c48e; }

.community-hero__device-body {
  padding: 1.5rem 1.4rem 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.community-hero__panel-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.35rem;
}

.community-hero__mini-chart {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.community-hero__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(82, 196, 142, 0.18);
  color: #16835e;
  font-size: 0.72rem;
  font-weight: 700;
}

.community-hero__panel {
  border: 1px solid rgba(17, 95, 212, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f8ff 100%);
  padding: 0.9rem 1rem;
}

.community-hero__panel--muted {
  background: linear-gradient(180deg, #f2f7ff 0%, #edf3ff 100%);
}

.community-hero__panel-row {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.community-hero__badge {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), #6ea3ff);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.community-hero__badge--alt {
  background: linear-gradient(135deg, #3a6ef5, #6a8fff);
}

.community-hero__badge--success {
  background: linear-gradient(135deg, #2eb880, #56c896);
}

.community-hero__panel-text {
  display: grid;
  gap: 0.15rem;
}

.community-hero__panel-text strong {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
}

.community-hero__panel-text span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.community-page {
  padding: var(--section-py) 0;
  background: #fff;
}

.community-stack {
  display: grid;
  gap: 1.2rem;
}

.community-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem 1.1rem;
  border: 1px solid #dfe7f4;
  border-radius: 14px;
  background: #edf5ff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.03);
}

.community-item--even {
  background: #edf5ff;
}

.community-item--odd {
  grid-template-columns: 30px minmax(0, 1fr);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fbfcff;
  box-shadow: none;
}

.community-item__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.05rem;
}

.community-item__content h3 {
  margin: 0 0 1rem;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.community-item__content h4 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}

.community-item__content p {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.community-item__content p:last-child {
  margin-bottom: 0;
}

.community-item--even .community-item__content h3 {
  margin-bottom: 1rem;
}

.community-item--even .community-item__content p {
  line-height: 1.7;
}

.community-cta {
  margin-top: 3.5rem;
  padding: 2rem 2.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f5ad8 0%, #3c7ef5 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.community-cta__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.community-cta__content h2 {
  margin: 0.75rem 0 0.65rem;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 620px;
}

.community-cta__content p {
  max-width: 620px;
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.community-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.community-cta__side {
  display: grid;
  gap: 1rem;
  min-width: min(100%, 430px);
}

.community-cta__snapshot {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.community-cta__snapshot-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-cta__snapshot strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
}

.community-cta__snapshot-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.community-cta__snapshot-stats b {
  margin-right: 0.2rem;
  color: #fff;
  font-size: 0.9rem;
}

.community-cta__actions .btn,
.community-cta__actions .btn-primary,
.community-cta__actions .btn-outline-primary {
  min-width: 214px;
  height: 46px;
  border-radius: 12px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
  border-width: 2px;
  box-shadow: none;
}

.community-cta__actions .btn-primary,
.community-cta__actions .btn-primary.btn-lg {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

.community-cta__actions .btn-primary:hover,
.community-cta__actions .btn-primary:focus,
.community-cta__actions .btn-primary.btn-lg:hover,
.community-cta__actions .btn-primary.btn-lg:focus {
  border-color: #eaf2ff;
  background: #eaf2ff;
  color: var(--blue-dark);
}

.community-cta__actions .btn-outline-primary,
.community-cta__actions .btn-outline-primary.btn-lg {
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #fff;
}

.community-cta__actions .btn-outline-primary:hover,
.community-cta__actions .btn-outline-primary:focus,
.community-cta__actions .btn-outline-primary.btn-lg:hover,
.community-cta__actions .btn-outline-primary.btn-lg:focus {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.page-hero__title {
  max-width: 780px;
  font-size: 4.25rem;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 1.25rem 0 1.5rem;
}

.page-hero__title em {
  font-style: italic;
  font-weight: 700;
}

.page-hero__text {
  max-width: 680px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.faq-page,
.contact-page {
  padding: var(--section-py) 0;
  background: #fff;
}

.contact-page .container > * + * {
  margin-top: var(--block-gap);
}

.faq-page__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.6fr);
  gap: var(--split-col-gap);
  align-items: start;
}

.faq-page__layout > *,
.contact-page__grid > *,
.contact-page__form-section > *,
.contact-page__panel > * {
  min-width: 0;
}

.faq-page__intro {
  position: sticky;
  top: 110px;
}

.faq-page__intro h2,
.contact-page__panel h2 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  color: var(--text);
}

.faq-page__intro p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.faq-page__list {
  display: grid;
  gap: 1rem;
}

.faq-page__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  overflow: hidden;
}

.faq-page__item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.faq-page__item summary::-webkit-details-marker {
  display: none;
}

.faq-page__item summary::after {
  content: '+';
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-page__item summary h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.faq-page__item[open] summary::after {
  content: '-';
}

.faq-page__item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding: 0 1.5rem 1.35rem;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.contact-page__card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
}

.contact-page__eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.contact-page__card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.contact-page__card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.contact-page__card a {
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-page__card a:hover {
  color: var(--blue-dark);
}

.contact-page__form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: var(--card-gap);
  align-items: start;
}

.contact-page__form-copy {
  padding: 2rem 0;
}

.contact-page__form-copy h2 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 1rem 0;
}

.contact-page__form-copy p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.contact-page__form {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.07);
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
}

.contact-page__bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-page__required-hint {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.contact-page__field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-page__field {
  display: grid;
  gap: 0.5rem;
}

.contact-page__field span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.contact-page__field abbr {
  color: var(--blue);
  text-decoration: none;
}

.contact-page__field small {
  color: #b42318;
  font-size: 0.8rem;
}

.contact-page__field input,
.contact-page__field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f9fbff;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-page__field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-page__field input:focus,
.contact-page__field textarea:focus {
  border-color: rgba(17, 95, 212, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 95, 212, 0.12);
}

.contact-page__form .btn {
  justify-self: start;
}

.contact-page__success {
  border: 1px solid rgba(17, 95, 212, 0.18);
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--text);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-page__panel {
  padding: 2.5rem;
  border-radius: 16px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-page__panel h2 {
  max-width: 640px;
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

/* ===================================================
   FEATURE SPLIT
   =================================================== */
.feature-split {
  padding: var(--section-py) 0;
}

.feature-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--split-col-gap);
  align-items: center;
  margin-top: var(--block-gap);
}

.feature-split__inner--reverse {
  margin-top: var(--section-py);
}

.feature-split__visual {
  background: #f5f7fa;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-split__visual img {
  width: 100%;
  height: auto;
  max-width: 340px;
}

.feature-split__title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: var(--heading-mb);
}

.feature-split__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--text);
}

.feature-split__text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--text-mb);
  max-width: 440px;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-it-works {
  background-color: #1a6af5;
  background-image:
    url('/assets/icons/CTA_detail_1.svg'),
    url('/assets/icons/CTA_detail_2.svg'),
    linear-gradient(135deg, #1a6af5 0%, #3b82f6 50%, #6fa8ff 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right top, left bottom, center;
  background-size: 280px auto, 280px auto, cover;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.how-it-works__label {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--heading-mb);
}

.how-it-works__label::before {
  background: rgba(255, 255, 255, 0.85);
}

.how-it-works__title {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: var(--block-gap);
}

.how-it-works__title em {
  font-style: italic;
  font-weight: 700;
  color: #fff;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.how-it-works__card {
  background: #fff;
  border-radius: 16px;
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-it-works--reveal-ready .how-it-works__card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.how-it-works--reveal-ready .how-it-works__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works__step {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
}

.how-it-works__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-it-works__icon img {
  width: 56px;
  height: 56px;
}

.how-it-works__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.how-it-works__card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.how-it-works__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  margin-top: auto;
}

.how-it-works__link:hover {
  color: var(--blue);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  padding-top: var(--section-py);
  padding-bottom: 16rem;
  margin-top: 0;
  position: relative;
  overflow: visible;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(17,95,212,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 400px;
  background: url('/assets/icons/Venthra.svg') center bottom no-repeat;
  background-size: clamp(520px, 88vw, 1000px) auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 2;
}

.footer__watermark-wrapper {
  display: none;
}

.footer__watermark-svg {
  display: none;
}

.footer .container {
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(17, 95, 212, 0.1);
}

.footer__brand {
  grid-column: auto;
}

.footer__brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text);
  text-transform: capitalize;
  letter-spacing: 0;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 0.7rem;
}

.footer__col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__col a:hover,
.footer__col a:focus {
  color: var(--blue);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--muted);
  gap: 2rem;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(17, 95, 212, 0.1);
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer__bottom a:hover,
.footer__bottom a:focus {
  color: var(--blue);
}

@media (max-width: 768px) {
  .footer {
    padding-top: var(--section-py);
    padding-bottom: 11.5rem;
  }

  .footer::before,
  .footer::after {
    height: 280px;
  }

  .footer::after {
    background-size: clamp(320px, 92vw, 560px) auto;
    background-position: center bottom;
    opacity: 0.72;
  }

  .footer .container {
    padding-bottom: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer__bottom-links {
    width: 100%;
  }
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* --- Tablet & below (< 992px) --- */
@media (max-width: 991.98px) {

  /* Navbar */
  .hero { min-height: auto !important; }
  .hero {
    padding-top: 6.25rem;
    padding-bottom: 2.25rem;
    background: linear-gradient(170deg, #ffffff 0%, #ffffff 62%, #deebff 100%);
  }
  .hero .container { margin-top: 0; }
  .hero .row { --bs-gutter-x: 1.5rem; --bs-gutter-y: 2rem; }
  .hero__title { font-size: clamp(2.15rem, 9vw, 3rem); line-height: 1.04; }
  #navbar .navbar-brand img { height: 46px; }
  #navbar .btn { min-width: 0; height: 44px; padding: 0 14px; font-size: .95rem; }
  .hero__actions .btn { min-width: 0; width: 100%; height: 52px; font-size: 1rem; }
  .hero__card { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; gap: 12px; }
  .hero__card-text strong { font-size: 1.25rem; }
  .hero__card-text span { font-size: .9rem; }

  /* Stats */
  .stats__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats__heading { font-size: 1.6rem; }

  /* How it works */
  .how-it-works__grid { grid-template-columns: 1fr 1fr; }
  .how-it-works__title { font-size: 2.2rem; }

  /* Feature split */
  .feature-split__inner,
  .feature-split__inner--reverse { grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
  .feature-split__inner--reverse .feature-split__visual { order: -1; }
  .feature-split__title { font-size: 2rem; }

  /* Features grid */
  .features__grid { grid-template-columns: 1fr 1fr; }
  .features__title { font-size: 2.2rem; }

  /* CTA */
  .cta__title { font-size: 2.2rem; }
  .cta__card { padding: 2rem 1.5rem; }
  .cta__pricing { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .cta__divider { display: none; }

  /* Public content pages */
  .page-hero { padding-top: 8.5rem; }
  .page-hero__title { font-size: 3.35rem; }
  .page-hero__text { font-size: 1.05rem; }
  .faq-page__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-page__intro { position: static; }
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-page__form-section { grid-template-columns: 1fr; }
  .contact-page__form-copy { padding: 0; }
  .contact-page__panel { flex-direction: column; align-items: flex-start; }
  .community-hero__layout { grid-template-columns: 1fr; }
  .community-cta { flex-direction: column; align-items: flex-start; }
  .community-cta__side { width: 100%; min-width: 0; }
  .community-item--even { grid-template-columns: 30px minmax(0, 1fr); }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 767.98px) {

  :root {
    --section-py: 3rem;
    --section-gap: 3rem;
    --block-gap:  2rem;
    --card-gap: 1.5rem;
    --split-col-gap: 2rem;
  }

  /* Hero */
  .hero { padding-top: 6.5rem; padding-bottom: 2rem; }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero__sub { font-size: 1rem; }
  .btn-primary.btn-lg, .btn-outline-primary.btn-lg { min-width: 0; width: 100%; }

  /* Stats */
  .stats__grid { flex-direction: column; gap: 1.5rem; }
  .stats__grid { align-items: center; }
  .stats__item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 1.5rem 0; }
  .stats__item { text-align: center; }
  .stats__item:last-child { border-bottom: none; padding-bottom: 0; }
  .stats__item strong { font-size: 1.75rem; }

  /* How it works */
  .how-it-works__grid { grid-template-columns: 1fr; }
  .how-it-works__title { font-size: 1.9rem; }
  .how-it-works {
    background-size: 140px auto, 140px auto, cover;
  }

  /* Feature split */
  .feature-split__visual { padding: 1.5rem; }
  .feature-split__title { font-size: 1.75rem; }
  .feature-split__text { max-width: 100%; }

  /* Features grid */
  .features__grid { grid-template-columns: 1fr; }
  .features__title { font-size: 1.9rem; }
  .features__header { margin-bottom: 2rem; }

  /* CTA */
  .cta { border-radius: 12px; margin: 2rem 0; }
  .cta { background-size: 140px auto, 140px auto, cover; }
  .cta__title { font-size: 1.75rem; }
  .cta__price strong { font-size: 2rem; }
  .cta__card { padding: 1.5rem 1rem; }

  /* Public content pages */
  .page-hero { padding: 6.5rem 0 var(--section-py); }
  .page-hero__title { font-size: 2.5rem; }
  .page-hero__text,
  .faq-page__intro p,
  .contact-page__form-copy p { font-size: 0.98rem; }
  .faq-page__intro h2,
  .contact-page__form-copy h2,
  .contact-page__panel h2 { font-size: 1.65rem; }
  .faq-page__item summary,
  .contact-page__card h3 { font-size: 1rem; }
  .faq-page__item p,
  .contact-page__card p,
  .contact-page__card a,
  .contact-page__field input,
  .contact-page__field textarea { font-size: 0.95rem; }
  .contact-page__form .btn { justify-self: stretch; }
  .community-cta { padding: 1.5rem; }
  .community-item { grid-template-columns: 1fr; }
  .community-item--odd { padding: 1.5rem; }
  .community-item--even { padding: 1.5rem; }
  .community-item--even .community-item__icon { width: 30px; height: 30px; }

  /* Footer */
  .footer__bottom { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
  .footer__bottom-links { flex-direction: column; gap: 0.5rem; }
}

/* --- Small mobile (< 480px) --- */
@media (max-width: 479.98px) {
  .hero__title { font-size: 1.75rem; }
  .how-it-works__title,
  .features__title,
  .cta__title { font-size: 1.6rem; }
  .feature-split__title { font-size: 1.5rem; }
  .stats__item strong { font-size: 1.5rem; }

  /* Public content pages */
  .page-hero__title { font-size: 1.85rem; }
  .page-hero__text,
  .faq-page__intro p,
  .contact-page__form-copy p { font-size: 0.95rem; }
  .faq-page__intro h2,
  .contact-page__form-copy h2,
  .contact-page__panel h2 { font-size: 1.45rem; }
  .faq-page__item summary,
  .contact-page__card h3 { font-size: 0.95rem; }
  .faq-page__item p,
  .contact-page__card p,
  .contact-page__card a,
  .contact-page__field input,
  .contact-page__field textarea { font-size: 0.9rem; }
  .contact-page__required-hint,
  .contact-page__field span,
  .contact-page__field small { font-size: 0.8rem; }
  .faq-page__item summary { padding: 1rem 1.125rem; }
  .faq-page__item p { padding: 0 1.125rem 1.125rem; }
  .contact-page__card,
  .contact-page__form,
  .contact-page__panel { padding: 1.5rem; }
  .contact-page__field-grid { grid-template-columns: 1fr; }
  .stats__heading { font-size: 1.3rem; }

  .footer {
    padding-bottom: 9.5rem;
  }

  .footer::before,
  .footer::after {
    height: 220px;
  }

  .footer::after {
    background-size: clamp(260px, 94vw, 380px) auto;
    opacity: 0.68;
  }
}

/* Community, About, and Career responsive refinements */
@media (max-width: 991.98px) {
  .community-hero__layout,
  .about-hero__layout,
  .career-hero__layout {
    gap: 2.5rem;
  }

  .community-hero__copy,
  .about-hero__copy,
  .career-hero__copy {
    max-width: 720px;
  }

  .community-hero__visual,
  .about-hero__visual,
  .career-hero__visual {
    width: 100%;
  }

  .community-hero__device,
  .about-hero__device,
  .career-hero__card {
    width: min(100%, 620px);
  }

  .career-openings__grid,
  .career-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .community-hero__layout,
  .about-hero__layout,
  .career-hero__layout {
    gap: 2rem;
  }

  .community-hero__title,
  .about-hero__title,
  .career-hero__title {
    font-size: 2.5rem;
    line-height: 1.05;
  }

  .community-hero__text,
  .about-hero__text,
  .career-hero__text {
    font-size: 0.98rem;
  }

  .community-hero__actions,
  .about-hero__actions,
  .career-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .community-hero__actions .btn,
  .about-hero__actions .btn,
  .career-hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .community-hero__device,
  .about-hero__device,
  .career-hero__card {
    width: 100%;
  }

  .community-item__content h3,
  .about-item__content h3 {
    font-size: 1.35rem;
  }

  .community-item,
  .about-item {
    gap: 0.85rem;
  }

  .career-values__copy h2,
  .career-openings h2,
  .career-process h2,
  .career-apply h2 {
    font-size: 1.85rem;
  }

  .career-openings__grid,
  .career-process__grid {
    grid-template-columns: 1fr;
  }

  .career-opening,
  .career-process__card {
    min-height: 0;
  }

  .career-apply__panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .career-apply__side {
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .community-hero__title,
  .about-hero__title,
  .career-hero__title {
    font-size: 1.85rem;
  }

  .community-hero__eyebrow,
  .about-hero__eyebrow,
  .career-hero__eyebrow {
    font-size: 0.7rem;
  }

  .community-hero__device-body,
  .about-hero__device-body {
    padding: 1rem;
  }

  .community-hero__panel,
  .about-hero__panel {
    padding: 0.75rem;
  }

  .community-cta,
  .about-cta,
  .career-apply__panel {
    border-radius: 12px;
  }

  .community-cta__actions .btn,
  .about-cta__actions .btn,
  .career-apply .btn {
    width: 100%;
    min-width: 0;
  }
}
