:root {
  --black: #050505;
  --black-2: #101010;
  --blue: #0d62d9;
  --jtax: #0b5ed7;
  --jtax-dark: #0849a4;
  --text: #111827;
  --muted: #5f6b7f;
  --line: rgba(255,255,255,0.12);
  --white: #ffffff;
  --bg: #f6f8fc;
  --shadow: 0 16px 40px rgba(3, 26, 69, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
  padding-top: 86px;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

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

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--black) 0%, var(--black-2) 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0,0,0,0.30);
}

.topbar__inner {
  width: min(1280px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 270px) 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.topbar__title {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: block;
  text-align: center;
}

.topbar__center {
  display: flex;
  justify-content: center;
}

.topbar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.logo {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.22));
}

.logo--crc { max-height: 34px; }
.logo--vocare { max-height: 36px; }
.logo--diamond { max-height: 38px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  cursor: pointer;
}

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

.topbar .btn--primary,
.topbar .btn--ghost {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 4px 10px rgba(0,0,0,0.22);
}

.btn--primary {
  background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
  color: #111827;
  border: 1px solid rgba(255,255,255,0.7);
}

.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.btn--ghost-dark {
  color: #111827;
  border: 1px solid rgba(17,24,39,0.12);
  background: transparent;
  box-shadow: none;
}

.btn--ghost-light {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.hero {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(13,98,217,0.10), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, #f3f7fc 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 380px);
  gap: 28px;
  align-items: center;
}

.hero__tag,
.section-tag,
.panel__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(13,98,217,0.08);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel__label--light {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero__lead {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero__bullets {
  display: grid;
  gap: 10px;
  margin: 24px 0 24px;
}

.bullet {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  border: 1px solid #e6edf8;
  font-size: 0.94rem;
  font-weight: 500;
  color: #22304d;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__cta .btn--primary {
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
  box-shadow: 0 8px 20px rgba(17,24,39,0.14);
}

.hero__panel {
  background: rgba(255,255,255,0.94);
  border: 1px solid #e1e9f4;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(3, 26, 69, 0.10);
}

.hero__panel--jtax,
.feature-card--jtax {
  background: linear-gradient(180deg, var(--jtax) 0%, var(--jtax-dark) 100%);
  border-color: rgba(9, 71, 164, 0.55);
  color: var(--white);
}

.jtax-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 12px;
}

.jtax-head--feature {
  margin: 0 0 14px;
}

.jtax-head__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 52px;
}

.jtax-head__logo--feature {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.hero__panel h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.hero__panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.hero__panel--jtax p,
.feature-card--jtax p,
.feature-card--jtax h3,
.hero__panel--jtax h2 {
  color: var(--white);
}

.text-link {
  color: var(--blue);
  font-weight: 600;
}

.text-link--light {
  color: var(--white);
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section--light {
  background: var(--bg);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

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

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

.card,
.feature-card {
  background: var(--white);
  border: 1px solid #e3eaf4;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(3, 26, 69, 0.05);
}

.card h3,
.feature-card h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.feature-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-card--accent {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border-color: #d8e5fb;
}

.feature-card .btn {
  margin-top: 18px;
}

.coming-soon {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #eef3fb;
  color: #32415e;
  font-weight: 600;
  font-size: 0.82rem;
}

@media (max-width: 1180px) {
  body { padding-top: 132px; }

  .topbar__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 12px 0;
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .cards,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 42px; }

  .topbar__logos {
    flex-wrap: wrap;
    gap: 14px;
  }

  .logo--crc { max-height: 30px; }
  .logo--vocare { max-height: 32px; }
  .logo--diamond { max-height: 34px; }
}

@media (max-width: 640px) {
  body { padding-top: 170px; }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .topbar__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.8rem;
  }

  .jtax-head {
    gap: 12px;
  }

  .jtax-head__logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero__lead,
  .card p,
  .feature-card p {
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  body { padding-top: 202px; }

  .topbar__logos {
    flex-direction: column;
    gap: 10px;
  }

  .logo--crc { max-height: 28px; }
  .logo--vocare { max-height: 30px; }
  .logo--diamond { max-height: 32px; }

  .topbar__actions {
    width: 100%;
  }

  .topbar__actions .btn {
    min-width: 142px;
  }

  .jtax-head {
    align-items: center;
  }
}