/* =========================
   HEXAR Tokens (root)
   ========================= */
:root{
  --hexar-blue:#1F6AFF;
  --hexar-blue-600:#1A56DB;
  --hexar-deep:#0B2C5D;

  --hexar-ink:#111827;
  --hexar-graphite:#374151;
  --hexar-muted:#6B7280;

  --hexar-bg:#F9FAFB;
  --hexar-white:#FFFFFF;
  --hexar-border:#E5E7EB;
}

/* Optional: map to Bootstrap 5.3 CSS vars (recommended) */
:root{
  --bs-primary:var(--hexar-blue);
  --bs-body-bg:var(--hexar-bg);
  --bs-body-color:var(--hexar-ink);
  --bs-border-color:var(--hexar-border);
  --bs-link-color:var(--hexar-blue);
  --bs-link-hover-color:var(--hexar-blue-600);
}


/* =========================
   HEXAR Base / Body
   Minimalism 3.0
   ========================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;

  color: var(--hexar-ink);
  background-color: var(--hexar-bg);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  overflow-x: hidden;
}

/* =========================
   Typography defaults
   ========================= */

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--hexar-ink);
  line-height: 1.25;
  margin-bottom: 0.6em;
}

body h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

body h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

body p {
  margin-bottom: 1em;
  color: var(--hexar-graphite);
}

body strong {
  font-weight: 600;
  color: var(--hexar-ink);
}

/* =========================
   Links
   ========================= */

body a {
  color: var(--hexar-blue);
  text-decoration: none;
  transition: color 150ms ease, opacity 150ms ease;
}

body a:hover {
  color: var(--hexar-blue-600);
  opacity: 0.95;
}

/* =========================
   Selection & focus
   ========================= */

::selection {
  background: rgba(31, 106, 255, 0.18);
  color: var(--hexar-ink);
}

:focus-visible {
  outline: 2px solid rgba(31, 106, 255, 0.6);
  outline-offset: 2px;
}

/* =========================
   Layout helpers
   ========================= */

main {
  position: relative;
  z-index: 1;
}

section {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

/* =========================
   Cards (generic)
   ========================= */

.card {
  border-radius: 16px;
  border: 1px solid var(--hexar-border);
  background-color: var(--hexar-white);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}

.card.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* =========================
   Lists
   ========================= */

body ul,
body ol {
  padding-left: 1.2rem;
}

body li {
  margin-bottom: 0.4rem;
  color: var(--hexar-graphite);
}

/* =========================
   Images
   ========================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Utility (safe to use)
   ========================= */

.text-muted {
  color: var(--hexar-muted) !important;
}

.bg-soft {
  background-color: var(--hexar-bg);
}

.bg-white {
  background-color: var(--hexar-white);
}


/* =========================
   HEXAR Header (Minimalism 3.0)
   All custom selectors are hierarchical: .parent .child ...
   ========================= */
.hexar-header{
  position:sticky;
  top:0;
  z-index:1030;
  background:rgba(249,250,251,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(229,231,235,.9);
}

.hexar-header .header-inner{
  padding-top:14px;
  padding-bottom:14px;
}

.hexar-header .brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.hexar-header .brand .mark{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:var(--hexar-white);
  border:1px solid var(--hexar-border);
  box-shadow:0 1px 2px rgba(17,24,39,.06);
}

.hexar-header .brand .mark .x{
  width:18px;
  height:18px;
  position:relative;
}

.hexar-header .brand .mark .x::before,
.hexar-header .brand .mark .x::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:2px;
  transform-origin:center;
}

.hexar-header .brand .mark .x::before{
  background:var(--hexar-ink);
  transform:rotate(45deg);
}

.hexar-header .brand .mark .x::after{
  background:var(--hexar-blue);
  transform:rotate(-45deg);
}

.hexar-header .brand .name{
  font-family:"Plus Jakarta Sans", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  letter-spacing:.06em;
  color:var(--hexar-ink);
  line-height:1;
  font-size:18px;
  text-transform:uppercase;
}

.hexar-header .brand .tagline{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:500;
  color:var(--hexar-graphite);
  line-height:1.2;
  font-size:13px;
  margin-top:2px;
}

.hexar-header .nav{
  gap:6px;
}

.hexar-header .nav .nav-link{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:500;
  color:var(--hexar-ink);
  border-radius:10px;
  padding:10px 12px;
  transition:background 160ms ease, color 160ms ease;
}

.hexar-header .nav .nav-link:hover{
  background:rgba(31,106,255,.08);
  color:var(--hexar-deep);
}

.hexar-header .nav .nav-link.active{
  background:rgba(31,106,255,.12);
  color:var(--hexar-deep);
}

.hexar-header .actions{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.hexar-header .actions .btn{
  border-radius:12px;
  padding:10px 14px;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:600;
}

.hexar-header .actions .btn-outline-hexar{
  background:rgba(255,255,255,.75);
  border:1px solid var(--hexar-border);
  color:var(--hexar-ink);
  box-shadow:0 1px 2px rgba(17,24,39,.05);
}

.hexar-header .actions .btn-outline-hexar:hover{
  background:var(--hexar-white);
  border-color:#D1D5DB;
}

.hexar-header .actions .btn-primary-hexar{
  background:var(--hexar-blue);
  border:1px solid var(--hexar-blue);
  color:var(--hexar-white);
  box-shadow:0 8px 18px rgba(31,106,255,.18);
}

.hexar-header .actions .btn-primary-hexar:hover{
  background:var(--hexar-blue-600);
  border-color:var(--hexar-blue-600);
}

.hexar-header .mobile-toggle{
  border-radius:12px;
  border:1px solid var(--hexar-border);
  background:rgba(255,255,255,.75);
  width:44px;
  height:44px;
  display:inline-grid;
  place-items:center;
  color:var(--hexar-ink);
}

.hexar-header .mobile-toggle:hover{
  background:var(--hexar-white);
  border-color:#D1D5DB;
}

.hexar-header .mobile-panel{
  background:rgba(255,255,255,.68);
  border:1px solid rgba(229,231,235,.9);
  border-radius:16px;
  padding:10px;
  box-shadow:0 18px 40px rgba(17,24,39,.10);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.hexar-header .mobile-panel .nav-link{
  padding:12px 12px;
  border-radius:12px;
}

.hexar-header .mobile-panel .meta{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--hexar-muted);
  font-size:12px;
  padding:10px 12px 2px;
}

.hexar-header .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hexar-header .brand .brand-logo {
  display: block;
  height: 24px;      /* control vizual */
  width: auto;       /* păstrează proporțiile */
}

/* Header social icons */
.header-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  transition: all .2s ease;
}

.header-social a:hover {
  background: rgba(37,99,235,.15);
  transform: translateY(-1px);
}

.header-social i {
  font-size: 14px;
}
/* =========================
   HEXAR Footer – Light / Color
   ========================= */

.hexar-footer {
  position: relative;
  background:
    radial-gradient(700px 380px at 15% -25%, rgba(31,106,255,.18), transparent 60%),
    radial-gradient(650px 320px at 85% 0%, rgba(14,165,233,.16), transparent 58%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-top: 1px solid rgba(203,213,225,.7);
  color: #334155;
}

.hexar-footer .footer-inner {
  padding: 64px 0 26px;
}

/* Brand */
.hexar-footer .brand img {
  height: 42px;
  margin-bottom: 14px;
}

.hexar-footer .description {
  margin: 0 0 14px 0;
  max-width: 46ch;
  line-height: 1.7;
  font-size: 14px;
  color: #475569;
}

.hexar-footer .description i {
  margin-right: 10px;
  color: rgba(31,106,255,.95);
}

/* Badges */
.hexar-footer .footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.hexar-footer .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(203,213,225,.8);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 700;
  font-size: 12px;
  color: #0f172a;
}

.hexar-footer .badge-pill i {
  color: rgba(31,106,255,.95);
}

/* Titles */
.hexar-footer .footer-title {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* Nav */
.hexar-footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hexar-footer .footer-nav li {
  margin-bottom: 10px;
}

.hexar-footer .footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}

.hexar-footer .footer-nav a i {
  color: rgba(31,106,255,.95);
  font-size: 13px;
}

.hexar-footer .footer-nav a:hover {
  color: #0f172a;
  transform: translateX(2px);
}

/* CTA link in footer */
.hexar-footer .footer-cta {
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31,106,255,.22);
  background: rgba(31,106,255,.10);
  color: #0f172a;
}

.hexar-footer .footer-cta:hover {
  border-color: rgba(31,106,255,.35);
  background: rgba(31,106,255,.14);
}

/* Mini trustline */
.hexar-footer .footer-mini {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.hexar-footer .footer-mini .mini-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hexar-footer .footer-mini .mini-item i {
  color: rgba(31,106,255,.95);
}

.hexar-footer .footer-mini .mini-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(100,116,139,.6);
}

/* Meta */
.hexar-footer .meta {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(203,213,225,.7);
  font-size: 13px;
  color: #64748b;
}

.hexar-footer .location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-weight: 700;
}

.hexar-footer .location i {
  color: rgba(31,106,255,.95);
}


/* =========================
   FOOTER – Mobile optimization
   ========================= */

@media (max-width: 991px) {
  .hexar-footer .footer-inner {
    padding: 44px  22px;
  }

  .hexar-footer .description {
    max-width: 60ch;
  }

  .hexar-footer .footer-title {
    margin-top: 4px;
    margin-bottom: 10px;
  }

  .hexar-footer .footer-nav li {
    margin-bottom: 8px;
  }

  .hexar-footer .meta {
    margin-top: 28px;
  }
}

@media (max-width: 576px) {
  .hexar-footer .footer-inner {
    padding: 34px  18px;
  }

  /* Logo a bit smaller */
  .hexar-footer .brand img {
    height: 36px;
    margin-bottom: 12px;
  }

  /* Copy a touch tighter */
  .hexar-footer .description {
    font-size: 13.5px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 12px;
  }

  /* Badges: nicer wrap */
  .hexar-footer .footer-badges {
    gap: 6px;
  }

  .hexar-footer .badge-pill {
    padding: 7px 10px;
    font-size: 11.5px;
  }

  /* Make links easier to tap */
  .hexar-footer .footer-nav a {
    padding: 8px 10px;
    border-radius: 12px;
    width: 100%;
  }

  .hexar-footer .footer-nav a:hover {
    transform: none; /* avoid jump on mobile */
  }

  /* Optional: subtle hover/tap bg */
  .hexar-footer .footer-nav a:active {
    background: rgba(31,106,255,.08);
  }

  /* Meta stack */
  .hexar-footer .meta {
    margin-top: 22px;
    padding-top: 14px;
    gap: 10px;
  }

  .hexar-footer .location {
    font-size: 13px;
  }

  /* If you use mini trustline in footer, hide dots on mobile */
  .hexar-footer .footer-mini .mini-dot {
    display: none;
  }
}


/* =========================
   HEXAR Homepage (Minimalism 3.0 + Glass)
   Uses your tokens from :root
   ========================= */

/* Soft background blobs (subtle, premium) */
.hexar-home .hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hexar-home .hero .bg-blobs {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  opacity: 0.55;
}

.hexar-home .hero .bg-blobs::before,
.hexar-home .hero .bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hexar-home .hero .bg-blobs::before {
  width: 420px;
  height: 420px;
  left: 0;
  top: 40px;
  background: rgba(31, 106, 255, 0.22);
}

.hexar-home .hero .bg-blobs::after {
  width: 520px;
  height: 520px;
  right: 0;
  top: -40px;
  background: rgba(11, 44, 93, 0.12);
}

/* Hero content */
.hexar-home .hero .hero-inner {
  position: relative;
  z-index: 1;
}

.hexar-home .hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--hexar-graphite);
  font-size: 13px;
  font-weight: 500;
}

.hexar-home .hero .kicker i {
  color: var(--hexar-blue);
}

.hexar-home .hero h1 {
  margin-top: 16px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hexar-home .hero .lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--hexar-graphite);
  max-width: 56ch;
  margin-bottom: 22px;
}

.hexar-home .hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hexar-home .hero .cta .btn {
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
}

.hexar-home .hero .cta .btn-primary-hexar {
  background: var(--hexar-blue);
  border: 1px solid var(--hexar-blue);
  color: var(--hexar-white);
  box-shadow: 0 12px 26px rgba(31, 106, 255, 0.20);
}

.hexar-home .hero .cta .btn-primary-hexar:hover {
  background: var(--hexar-blue-600);
  border-color: var(--hexar-blue-600);
}

.hexar-home .hero .cta .btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(229, 231, 235, 1);
  color: var(--hexar-ink);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.hexar-home .hero .cta .btn-ghost:hover {
  background: var(--hexar-white);
  border-color: #D1D5DB;
}

.hexar-home .hero .trustline {
  margin-top: 18px;
  color: var(--hexar-muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hexar-home .hero .trustline .dot {
  width: 4px;
  height: 4px;
  background: var(--hexar-border);
  border-radius: 999px;
}

/* Hero side card (glass) */
.hexar-home .hero .glass-card {
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
  padding: 18px;
}

.hexar-home .hero .glass-card .card-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--hexar-ink);
  margin-bottom: 12px;
}

.hexar-home .hero .glass-card .mini {
  display: grid;
  gap: 10px;
}

.hexar-home .hero .glass-card .mini .item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.85);
  background: rgba(255, 255, 255, 0.55);
}

.hexar-home .hero .glass-card .mini .item i {
  color: var(--hexar-blue);
  margin-top: 2px;
  font-size:24px;
}

.hexar-home .hero .glass-card .mini .item .t {
  font-weight: 600;
  color: var(--hexar-ink);
  font-size: 14px;
  margin-bottom: 2px;
}

.hexar-home .hero .glass-card .mini .item .d {
  color: var(--hexar-graphite);
  font-size: 13px;
  line-height: 1.45;
}


.hexar-home .hero .logo-right-what{
  text-align:center;
  padding:20px;

}
.hexar-home .logo-right-what img{
  max-width: 250px;
  height: auto;
  display:inline-block;

}


/* =========================
   HERO – Mobile optimization
   ========================= */

/* tablets down */
@media (max-width: 991px) {
  .hexar-home .hero {
    padding-top: clamp(2.75rem, 6vw, 4.5rem);
    padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
  }

  .hexar-home .hero .bg-blobs {
    inset: -40% -25% auto -25%;
    height: 420px;
    filter: blur(34px);
    opacity: 0.5;
  }

  .hexar-home .hero .bg-blobs::before {
    width: 360px;
    height: 360px;
    top: 40px;
  }

  .hexar-home .hero .bg-blobs::after {
    width: 420px;
    height: 420px;
    top: -60px;
  }

  .hexar-home .hero .lead {
    font-size: 16px;
    max-width: 62ch;
  }
}

/* phones */
@media (max-width: 576px) {
  .hexar-home .hero {
    padding-top: 2.4rem;
    padding-bottom: 2.1rem;
  }

  .hexar-home .hero .kicker {
    font-size: 12px;
    padding: 7px 10px;
    gap: 8px;
  }

  .hexar-home .hero h1 {
    margin-top: 14px;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: clamp(1.95rem, 7vw, 2.35rem);
  }

  .hexar-home .hero .lead {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 100%;
  }

  /* CTA -> full width buttons */
  .hexar-home .hero .cta {
    gap: 10px;
  }

  .hexar-home .hero .cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

  /* trustline: no dots on mobile */
  .hexar-home .hero .trustline {
    margin-top: 14px;
    gap: 10px 14px;
  }

  .hexar-home .hero .trustline .dot {
    display: none;
  }

  /* glass card compact */
  .hexar-home .hero .glass-card {
    padding: 14px;
    border-radius: 18px;
  }

  .hexar-home .hero .glass-card .card-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .hexar-home .hero .glass-card .mini .item {
    padding: 10px;
    border-radius: 14px;
  }

  .hexar-home .hero .glass-card .mini .item i {
    font-size: 20px;
  }

  .hexar-home .hero .glass-card .mini .item .t {
    font-size: 13px;
  }

  .hexar-home .hero .glass-card .mini .item .d {
    font-size: 12.5px;
  }

  /* blobs smaller so they don't overwhelm */
  .hexar-home .hero .bg-blobs {
    inset: -55% -35% auto -35%;
    height: 340px;
    filter: blur(28px);
    opacity: 0.45;
  }

  .hexar-home .hero .bg-blobs::before {
    width: 300px;
    height: 300px;
  }

  .hexar-home .hero .bg-blobs::after {
    width: 340px;
    height: 340px;
  }
}




/* Sections */
.hexar-home .section-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  color: var(--hexar-ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.hexar-home .section-subtitle {
  color: var(--hexar-graphite);
  max-width: 70ch;
  margin: 0;
}

.hexar-home .features {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}



/* =========================
   HEXAR – Feature cards (upgraded)
   ========================= */

.hexar-home .features .feature-card {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(203, 213, 225, 0.70);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.05),
    0 12px 30px rgba(17, 24, 39, 0.06);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

/* subtle highlight layer */
.hexar-home .features .feature-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(31, 106, 255, 0.14), transparent 55%),
    radial-gradient(420px 220px at 90% 10%, rgba(14, 165, 233, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.hexar-home .features .feature-card.glass {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* hover */
.hexar-home .features .feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 106, 255, 0.28);
  box-shadow:
    0 2px 6px rgba(17, 24, 39, 0.08),
    0 22px 60px rgba(17, 24, 39, 0.12);
}

.hexar-home .features .feature-card:hover::before {
  opacity: 1;
}

/* icon container */
.hexar-home .features .feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 14px;

  /* layered glass + accent */
  background:
    linear-gradient(180deg, rgba(31,106,255,.16), rgba(31,106,255,.08));
  border: 1px solid rgba(31, 106, 255, 0.22);
  box-shadow:
    0 10px 22px rgba(31, 106, 255, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

/* ring */
.hexar-home .features .feature-card .icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid rgba(31, 106, 255, 0.14);
  opacity: 0.9;
}

/* icon */
.hexar-home .features .feature-card .icon i {
  color: var(--hexar-blue);
  font-size: 19px;
  transform: translateZ(0);
  transition: transform 220ms ease, color 220ms ease;
}

.hexar-home .features .feature-card:hover .icon i {
  transform: translateY(-1px) scale(1.03);
  color: var(--hexar-blue-600);
}

/* text styling (optional but recommended) */
.hexar-home .features .feature-card .t {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hexar-ink);
  margin-bottom: 6px;
}

.hexar-home .features .feature-card .d {
  color: var(--hexar-graphite);
  line-height: 1.65;
  margin: 0;
}

/* accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hexar-home .features .feature-card,
  .hexar-home .features .feature-card::before,
  .hexar-home .features .feature-card .icon i {
    transition: none !important;
  }
}

/* Coverage strip */
.hexar-home .coverage {
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hexar-home .coverage .coverage-card {
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  padding: 18px;
}

.hexar-home .coverage .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  color: var(--hexar-graphite);
  font-size: 13px;
  font-weight: 600;
}

.hexar-home .coverage .badge i {
  color: var(--hexar-blue);
}

/* CTA bottom */
.hexar-home .cta-bottom {
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hexar-home .cta-bottom .cta-card {
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
  padding: clamp(18px, 3vw, 26px);
}

.hexar-home .cta-bottom .cta-card .t {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
  color: var(--hexar-ink);
}

.hexar-home .cta-bottom .cta-card .d {
  margin: 0 0 16px 0;
  color: var(--hexar-graphite);
  max-width: 70ch;
}

.hexar-home .cta-bottom .cta-card .btn {
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
}

.hexar-home .cta-bottom .cta-card .btn-primary-hexar {
  background: var(--hexar-blue);
  border: 1px solid var(--hexar-blue);
  color: var(--hexar-white);
  box-shadow: 0 12px 26px rgba(31, 106, 255, 0.20);
}

.hexar-home .cta-bottom .cta-card .btn-primary-hexar:hover {
  background: var(--hexar-blue-600);
  border-color: var(--hexar-blue-600);
}

.hexar-home .cta-bottom .cta-card .btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(229, 231, 235, 1);
  color: var(--hexar-ink);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.hexar-home .cta-bottom .cta-card .btn-ghost:hover {
  background: var(--hexar-white);
  border-color: #D1D5DB;
}

/* =========================
   HEXAR 404 Page
   ========================= */

.hexar-404 {
  min-height: 70vh;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--hexar-bg);
}

.hexar-404 .error-card {
  max-width: 520px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
}

.hexar-404 .error-code {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(64px, 12vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--hexar-blue);
  margin-bottom: 6px;
}

.hexar-404 .error-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hexar-ink);
  margin-bottom: 10px;
}

.hexar-404 .error-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--hexar-graphite);
  margin-bottom: 20px;
}

.hexar-404 .error-actions .btn {
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
}



/* =========================
   HEXAR Contact Page
   ========================= */

.hexar-contact {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--hexar-bg);
}

.hexar-contact .bg-blobs {
  position: absolute;
  inset: -35% -10% auto -10%;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  filter: blur(42px);
  opacity: 0.55;
}

.hexar-contact .bg-blobs::before,
.hexar-contact .bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hexar-contact .bg-blobs::before {
  width: 460px;
  height: 460px;
  left: 0;
  top: 40px;
  background: rgba(31, 106, 255, 0.20);
}

.hexar-contact .bg-blobs::after {
  width: 560px;
  height: 560px;
  right: 0;
  top: -60px;
  background: rgba(11, 44, 93, 0.12);
}

/* Header */
.hexar-contact .page-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.hexar-contact .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--hexar-graphite);
  font-size: 13px;
  font-weight: 600;
}

.hexar-contact .kicker i {
  color: var(--hexar-blue);
}

.hexar-contact .title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  color: var(--hexar-ink);
  letter-spacing: -0.02em;
  margin: 14px 0 10px 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.hexar-contact .subtitle {
  margin: 0;
  color: var(--hexar-graphite);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

/* Glass cards */
.hexar-contact .glass-card {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
  padding: clamp(18px, 3vw, 26px);
}

/* Form */
.hexar-contact .form-label {
  font-weight: 600;
  color: var(--hexar-ink);
  font-size: 13px;
}

.hexar-contact .form-control {
  border-radius: 14px;
  border: 1px solid var(--hexar-border);
  padding: 12px 14px;
  box-shadow: none;
}

.hexar-contact .form-control:focus {
  border-color: rgba(31, 106, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 106, 255, 0.12);
}

.hexar-contact .helper {
  font-size: 12px;
  color: var(--hexar-muted);
  margin-top: 8px;
}

/* Buttons */
.hexar-contact .btn {
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
}

.hexar-contact .btn-primary-hexar {
  background: var(--hexar-blue);
  border: 1px solid var(--hexar-blue);
  color: var(--hexar-white);
  box-shadow: 0 12px 26px rgba(31, 106, 255, 0.20);
}

.hexar-contact .btn-primary-hexar:hover {
  background: var(--hexar-blue-600);
  border-color: var(--hexar-blue-600);
}

.hexar-contact .btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(229, 231, 235, 1);
  color: var(--hexar-ink);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.hexar-contact .btn-ghost:hover {
  background: var(--hexar-white);
  border-color: #D1D5DB;
}

/* Right side info */
.hexar-contact .info-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  color: var(--hexar-ink);
  margin: 0 0 10px 0;
  font-size: 16px;
}

.hexar-contact .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hexar-contact .info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.hexar-contact .info-list li:last-child {
  border-bottom: 0;
}

.hexar-contact .info-list i {
  color: var(--hexar-blue);
  margin-top: 2px;
}

.hexar-contact .info-list a {
  color: var(--hexar-ink);
  text-decoration: none;
  font-weight: 600;
}

.hexar-contact .info-list a:hover {
  color: var(--hexar-blue);
}

/* Social */
.hexar-contact .social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hexar-contact .social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  color: var(--hexar-graphite);
  text-decoration: none;
  transition: transform 150ms ease, color 150ms ease, border-color 150ms ease;
}

.hexar-contact .social a:hover {
  transform: translateY(-1px);
  color: var(--hexar-blue);
  border-color: rgba(31, 106, 255, 0.35);
}

/* Quick bullets */
.hexar-contact .quick {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--hexar-muted);
  font-size: 12px;
}

.hexar-contact .quick span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.85);
  background: rgba(255, 255, 255, 0.55);
}

.hexar-contact .quick i {
  color: var(--hexar-blue);
}



/* =========================
   HEXAR – Cum lucrăm
   ========================= */

.hexar-work {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--hexar-bg);
}

.hexar-work .section-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  color: var(--hexar-ink);
  margin-bottom: 8px;
}

.hexar-work .section-subtitle {
  color: var(--hexar-graphite);
  max-width: 70ch;
  margin: 0;
}

/* Card base */
.hexar-work .work-card {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hexar-work .work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.18);
}

.hexar-work .work-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 14px;
}

.hexar-work .work-card .icon i {
  font-size: 18px;
}

.hexar-work .work-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color:#fff;
}

.hexar-work .work-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
  color:#fff;
}

/* Gradients */
.hexar-work .gradient-1 {
  background: linear-gradient(135deg, #5B7CFA, #6F9CFF);
}

.hexar-work .gradient-2 {
  background: linear-gradient(135deg, #4C7A8A, #6FB3A2);
}

.hexar-work .gradient-3 {
  background: linear-gradient(135deg, #7B5CF0, #B98BFF);
}

.hexar-work .gradient-4 {
  background: linear-gradient(135deg, #3F7DF4, #4FB8FF);
}


/* =========================
   HERO social proof
   ========================= */

.hero-proof {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--hexar-muted);
}

.hero-proof .proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof .proof-item i {
  color: var(--hexar-blue);
}

.hero-proof .proof-divider {
  width: 1px;
  height: 14px;
  background: var(--hexar-border);
}

.hero-proof .stars {
  display: inline-flex;
  gap: 2px;
}

.hero-proof .stars i {
  color: #F5C451; /* gold discret */
  font-size: 12px;
}



/* =========================
   HEXAR Solutions / Cases
   ========================= */

.hexar-solutions {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--hexar-bg);
  position: relative;
  overflow: hidden;
}

.hexar-solutions .bg-blobs {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  filter: blur(44px);
  opacity: 0.45;
}

.hexar-solutions .bg-blobs::before,
.hexar-solutions .bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hexar-solutions .bg-blobs::before {
  width: 460px;
  height: 460px;
  left: 0;
  top: 40px;
  background: rgba(31, 106, 255, 0.16);
}

.hexar-solutions .bg-blobs::after {
  width: 560px;
  height: 560px;
  right: 0;
  top: -60px;
  background: rgba(11, 44, 93, 0.10);
}

.hexar-solutions .wrap {
  position: relative;
  z-index: 1;
}

.hexar-solutions .head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hexar-solutions .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--hexar-graphite);
  font-size: 13px;
  font-weight: 600;
}

.hexar-solutions .kicker i {
  color: var(--hexar-blue);
}

.hexar-solutions .title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--hexar-ink);
  margin: 10px 0 6px 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.hexar-solutions .subtitle {
  margin: 0;
  color: var(--hexar-graphite);
  max-width: 72ch;
  line-height: 1.65;
  font-size: 15px;
}

/* Card */
.hexar-solutions .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hexar-solutions .card {
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hexar-solutions .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.14);
  border-color: rgba(31, 106, 255, 0.22);
}

/* Image */
.hexar-solutions .card .media {
  position: relative;
  height: 190px;
  background-size: cover;
  background-position: center;
}

.hexar-solutions .card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.00),
    rgba(17, 24, 39, 0.18)
  );
}

/* Content */
.hexar-solutions .card .body {
  padding: 18px;
}

.hexar-solutions .card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--hexar-muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.hexar-solutions .card .meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.85);
  background: rgba(255, 255, 255, 0.60);
}

.hexar-solutions .card .meta .pill i {
  color: var(--hexar-blue);
}

.hexar-solutions .card .h {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  color: var(--hexar-ink);
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.35;
}

.hexar-solutions .card .p {
  margin: 0;
  color: var(--hexar-graphite);
  font-size: 14px;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer link */
.hexar-solutions .card .more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hexar-blue);
}

.hexar-solutions .card:hover .more i {
  transform: translateX(2px);
}

.hexar-solutions .card .more i {
  transition: transform 160ms ease;
}

/* View all */
.hexar-solutions .actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.hexar-solutions .actions .btn {
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
}

.hexar-solutions .actions .btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(229, 231, 235, 1);
  color: var(--hexar-ink);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.hexar-solutions .actions .btn-ghost:hover {
  background: var(--hexar-white);
  border-color: #D1D5DB;
}

/* =========================
   HEXAR Default Page
   ========================= */

.hexar-page {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--hexar-bg);
}

.hexar-page .bg-blobs {
  position: absolute;
  inset: -35% -10% auto -10%;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  filter: blur(44px);
  opacity: 0.45;
}

.hexar-page .bg-blobs::before,
.hexar-page .bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hexar-page .bg-blobs::before {
  width: 460px;
  height: 460px;
  left: 0;
  top: 40px;
  background: rgba(31, 106, 255, 0.16);
}

.hexar-page .bg-blobs::after {
  width: 560px;
  height: 560px;
  right: 0;
  top: -60px;
  background: rgba(11, 44, 93, 0.10);
}

.hexar-page .wrap {
  position: relative;
  z-index: 1;
}

/* Header */
.hexar-page .page-head {
  text-align: center;
  margin-bottom: 18px;
}

.hexar-page .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--hexar-graphite);
  font-size: 13px;
  font-weight: 600;
}

.hexar-page .kicker i {
  color: var(--hexar-blue);
}

.hexar-page .title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hexar-ink);
  margin: 14px 0 8px 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.hexar-page .crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--hexar-muted);
  font-size: 13px;
}

.hexar-page .crumbs a {
  color: var(--hexar-graphite);
  text-decoration: none;
  font-weight: 600;
}

.hexar-page .crumbs a:hover {
  color: var(--hexar-blue);
}

.hexar-page .crumbs .sep {
  width: 4px;
  height: 4px;
  background: var(--hexar-border);
  border-radius: 999px;
  display: inline-block;
}

/* Banner */
.hexar-page .banner {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
  margin: 22px auto 26px auto;
  max-width: 1100px;
}

.hexar-page .banner .media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  background-size: cover;
  background-position: center;
}

.hexar-page .banner .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.05),
    rgba(17, 24, 39, 0.25)
  );
}

/* Content card */
.hexar-page .content {
  max-width: 860px;
  margin: 0 auto;
}

.hexar-page .content.full {
  max-width: 1100px;
}

.hexar-page .reader {
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  padding: clamp(18px, 3vw, 28px);
}

/* Typography inside editor content */
.hexar-page .reader h2,
.hexar-page .reader h3 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  color: var(--hexar-ink);
  letter-spacing: -0.01em;
  margin-top: 22px;
  margin-bottom: 10px;
}

.hexar-page .reader p,
.hexar-page .reader li {
  color: var(--hexar-graphite);
  line-height: 1.75;
  font-size: 15px;
}

.hexar-page .reader a {
  color: var(--hexar-blue);
  font-weight: 700;
  text-decoration: none;
}

.hexar-page .reader a:hover {
  text-decoration: underline;
}

.hexar-page .reader ul {
  padding-left: 18px;
}

.hexar-page .reader img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}




/* =========================
   POSTS (list + single) – HEXAR Minimalism 3.0
   Works with your existing HTML:
   .posts-page, .posts-page-detail, .blog-categories-page,
   .page-title, .post-banner, .custom-category-list, etc.
   ========================= */

/* Page wrappers */
.posts-page,
.posts-page-detail,
.blog-categories-page {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* Headings */
.posts-page .page-title,
.blog-categories-page .page-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hexar-ink);
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
}

.posts-page .lead,
.blog-categories-page .lead {
  color: var(--hexar-graphite);
  max-width: 78ch;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 16px;
}

/* Generic Bootstrap card in post detail */
.posts-page-detail .card {
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
  overflow: hidden;
}

.posts-page-detail .card-body {
  padding: clamp(18px, 3vw, 26px);
}

.posts-page-detail .card-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hexar-ink);
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* Banner (background-image div) */
.posts-page-detail .post-banner {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.posts-page-detail .post-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.05),
    rgba(17, 24, 39, 0.25)
  );
}

/* Meta row under title */
.posts-page-detail .text-muted {
  color: var(--hexar-muted) !important;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

/* Categories as pills */
.posts-page-detail .custom-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.posts-page-detail .custom-category-list .list-inline-item {
  margin: 0;
}

.posts-page-detail .custom-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.65);
  color: var(--hexar-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.posts-page-detail .custom-category-badge:hover {
  color: var(--hexar-blue);
  border-color: rgba(31, 106, 255, 0.30);
}

/* Date */
.posts-page-detail .post-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.55);
  color: var(--hexar-muted);
  font-weight: 600;
  font-size: 12px;
}

.posts-page-detail .post-date i {
  color: var(--hexar-blue);
}

/* Article body typography */
.posts-page-detail .card-text {
  margin-top: 10px;
}

.posts-page-detail .card-text h2,
.posts-page-detail .card-text h3 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  color: var(--hexar-ink);
  letter-spacing: -0.01em;
  margin-top: 22px;
  margin-bottom: 10px;
}

.posts-page-detail .card-text p,
.posts-page-detail .card-text li {
  color: var(--hexar-graphite);
  line-height: 1.75;
  font-size: 15px;
}

.posts-page-detail .card-text a {
  color: var(--hexar-blue);
  font-weight: 700;
  text-decoration: none;
}

.posts-page-detail .card-text a:hover {
  text-decoration: underline;
}

.posts-page-detail .card-text img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

/* Related posts block */
.related-posts {
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  padding: clamp(18px, 3vw, 26px);
}

.related-posts h3 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  color: var(--hexar-ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-size: 18px;
}

/* Categories page */
.blog-categories-page .category-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hexar-ink);
  margin-bottom: 6px;
  font-size: 18px;
}

.blog-categories-page .text-muted {
  color: var(--hexar-muted) !important;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Buttons */
.posts-page .btn,
.posts-page-detail .btn,
.blog-categories-page .btn {
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
}

/* Make primary match HEXAR if you use .btn-primary default */
.btn-primary {
  background: var(--hexar-blue);
  border-color: var(--hexar-blue);
}

.btn-primary:hover {
  background: var(--hexar-blue-600);
  border-color: var(--hexar-blue-600);
}

.btn-outline-primary {
  border-radius: 14px;
  font-weight: 700;
}

/* Grid cards (if Template::render posts/grid uses .card) – safe enhancement */
.posts-page .card,
.blog-categories-page .card {
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.posts-page .card:hover,
.blog-categories-page .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.12);
  border-color: rgba(31, 106, 255, 0.22);
}

/* Alerts */
.alert {
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}



/* =========================
   HEXAR Post Card (Grid) – scoped
   Parent: 
   ========================= */

 .post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

 .post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
  border-color: rgba(31, 106, 255, 0.30);
}

 .post-card .post-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: rgba(17, 24, 39, 0.04);
  position: relative;
}

 .post-card .post-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.05),
    rgba(17, 24, 39, 0.22)
  );
}

 .post-card .post-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px 18px;
}

 .post-card .post-card-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hexar-ink);
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
}

 .post-card .post-card-title a {
  color: inherit;
}

 .post-card .post-card-title a:hover {
  color: var(--hexar-blue);
}

 .post-card .post-card-text {
  flex: 1;
  color: var(--hexar-graphite);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}

 .post-card .btn {
  align-self: flex-start;
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 14px;
  font-size: 13px;
}

/* If you use .btn-accent for "Read Article" */
 .post-card .btn-accent {
  background: rgba(31, 106, 255, 0.12);
  color: var(--hexar-blue);
  border: 1px solid rgba(31, 106, 255, 0.25);
}

 .post-card .btn-accent:hover {
  background: rgba(31, 106, 255, 0.18);
  color: var(--hexar-blue-600);
  border-color: rgba(31, 106, 255, 0.40);
}

/* Optional clamp on small screens */
@media (max-width: 576px) {
   .post-card .post-card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* =========================
   Login + 2FA – HEXAR Minimalism 3.0 (Bootstrap 5.3)
   Scoped to .login-page and .two-factor-page
   ========================= */

.login-page,
.two-factor-page {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background:
    radial-gradient(700px 380px at 15% -25%, rgba(31,106,255,.18), transparent 60%),
    radial-gradient(650px 320px at 85% 0%, rgba(14,165,233,.16), transparent 58%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

/* Containers */
.login-page .login-container,
.two-factor-page .two-factor-container {
  width: 100%;
}

.login-page .right-container,
.two-factor-page .right-container {
  max-width: 520px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(203,213,225,.75);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
  padding: clamp(18px, 3vw, 28px);
}

/* Title */
.login-page .right-container h1,
.two-factor-page .right-container h1 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hexar-ink);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 8px 0;
}

.two-factor-page .right-container p {
  color: var(--hexar-graphite);
  line-height: 1.7;
  margin: 0 0 14px 0;
  font-size: 14px;
}

/* Logo in 2FA */
.two-factor-page .right-container .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.two-factor-page .right-container .logo img {
  height: 44px;
}

/* Forms spacing */
.login-page .login-form,
.two-factor-page .two-factor-form {
  margin-top: 12px;
}

/* Labels */
.login-page .right-container .form-label,
.two-factor-page .right-container .form-label {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
  margin-bottom: 6px;
}

/* Inputs */
.login-page .right-container .form-control,
.two-factor-page .right-container .form-control {
  border-radius: 14px;
  border: 1px solid rgba(203,213,225,.85);
  background: rgba(255,255,255,.86);
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(17,24,39,.06);
}

.login-page .right-container .form-control:focus,
.two-factor-page .right-container .form-control:focus {
  border-color: rgba(31,106,255,.45);
  box-shadow: 0 0 0 .2rem rgba(31,106,255,.12);
}

/* Remember checkbox */
.login-page .right-container .form-check-label {
  color: var(--hexar-graphite);
  font-weight: 600;
  font-size: 13px;
}

.login-page .right-container .form-check-input {
  border-color: rgba(148,163,184,.8);
}

.login-page .right-container .form-check-input:checked {
  background-color: var(--hexar-blue);
  border-color: var(--hexar-blue);
}

/* Buttons */
.login-page .right-container .btn.btn-primary,
.two-factor-page .right-container .btn.btn-primary {
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: var(--hexar-blue);
  border-color: var(--hexar-blue);
}

.login-page .right-container .btn.btn-primary:hover,
.two-factor-page .right-container .btn.btn-primary:hover {
  background: var(--hexar-blue-600);
  border-color: var(--hexar-blue-600);
}

/* Links */
.login-page .right-container a,
.two-factor-page .right-container a {
  color: var(--hexar-blue);
  font-weight: 700;
  text-decoration: none;
}

.login-page .right-container a:hover,
.two-factor-page .right-container a:hover {
  text-decoration: underline;
}

/* Alerts in card */
.login-page .right-container .alert,
.two-factor-page .right-container .alert {
  border-radius: 16px;
  border: 1px solid rgba(203,213,225,.75);
}

/* Recaptcha spacing (if needed) */
.login-page .right-container .g-recaptcha,
.login-page .right-container [id*="recaptcha"],
.two-factor-page .right-container .g-recaptcha,
.two-factor-page .right-container [id*="recaptcha"] {
  margin: 12px 0;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .login-page .right-container,
  .two-factor-page .right-container {
    border-radius: 18px;
  }
}

/* =========================
   HEXAR – Strip (Premium)
   ========================= */

.hexar-strip {
  margin: 0;
}

.hexar-strip .strip-inner {
  position: relative;
  width: 100%;
  padding: clamp(18px, 2.4vw, 34px) clamp(16px, 4vw, 64px);

  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;

  /* premium gradient */
  background:
    radial-gradient(900px 320px at 15% -40%, rgba(31,106,255,.22), transparent 55%),
    radial-gradient(900px 320px at 85% -40%, rgba(14,165,233,.18), transparent 55%),
    linear-gradient(120deg,
      rgba(31,106,255,0.10),
      rgba(99,102,241,0.08),
      rgba(14,165,233,0.10)
    );

  border-top: 1px solid rgba(31,106,255,0.18);
  border-bottom: 1px solid rgba(31,106,255,0.18);
  border-left: none;
  border-right: none;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 10px 26px rgba(17, 24, 39, 0.06);
}

/* subtle shine */
.hexar-strip .strip-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  opacity: .25;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* LEFT */
.hexar-strip .strip-left {
  max-width: 720px;
}

.hexar-strip .badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31,106,255,0.25);
  color: var(--hexar-blue);

  box-shadow: 0 10px 22px rgba(31,106,255,0.10);
}

.hexar-strip .badge-strip i {
  color: var(--hexar-blue);
}

.hexar-strip .strip-left h3 {
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
  color: var(--hexar-ink);
  line-height: 1.15;
}

/* RIGHT */
.hexar-strip .strip-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hexar-strip .strip-metric {
  text-align: center;
  min-width: 140px;

  padding: 12px 14px;
  border-radius: 16px;

  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow:
    0 12px 28px rgba(17,24,39,0.06),
    inset 0 1px 0 rgba(255,255,255,0.65);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hexar-strip .strip-metric strong {
  display: block;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--hexar-blue);
  line-height: 1;
}

.hexar-strip .strip-metric span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hexar-graphite);
}

.hexar-strip .strip-divider {
  width: 1px;
  height: 42px;
  background: rgba(31,106,255,0.22);
  opacity: .9;
}

/* MOBILE – foarte curat */
@media (max-width: 992px) {
  .hexar-strip .strip-left {
    max-width: 100%;
  }

  .hexar-strip .strip-right {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .hexar-strip .strip-divider {
    display: none;
  }

  .hexar-strip .strip-metric {
    min-width: 0;
    flex: 1 1 160px;
  }
}

@media (max-width: 576px) {
  .hexar-strip .strip-left h3 {
    font-size: 18px;
  }

  .hexar-strip .strip-metric strong {
    font-size: 24px;
  }

  .hexar-strip .strip-inner {
    padding: 18px 16px;
  }
}

.hexar-wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  text-decoration: none;

  box-shadow:
    0 12px 30px rgba(37, 211, 102, 0.45);

  border: 1px solid rgba(255,255,255,.35);

  animation: hexar-wa-pulse 2.8s infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.hexar-wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 44px rgba(37, 211, 102, 0.65);
    color: #fff;
}

.hexar-wa-float i {
  font-size: 24px;
  line-height: 1;
  z-index: 2;
}

/* GLOW RING */
.hexar-wa-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(37,211,102,.55),
    rgba(37,211,102,0) 70%
  );
  opacity: 0;
  animation: hexar-wa-glow 2.8s infinite;
  z-index: 0;
}

/* Animations */
@keyframes hexar-wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

@keyframes hexar-wa-glow {
  0% {
    transform: scale(.85);
    opacity: .0;
  }
  40% {
    opacity: .45;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}


/* =========================
   GLOBAL – Dropdown Bootstrap
   ========================= */

.dropdown-menu {
  margin-top: 10px;
  padding: 10px;

  min-width: 200px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(17, 24, 39, 0.08);

  box-shadow:
    0 18px 36px rgba(17, 24, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  
}

/* Items */
.dropdown-menu .dropdown-item {
  border-radius: 12px;
  padding: 10px 14px;

  font-weight: 600;
  font-size: 14px;

  color: var(--hexar-ink);
  transition:
    background .15s ease,
    color .15s ease,
    transform .15s ease;
}

/* Hover / focus */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: rgba(31, 106, 255, 0.08);
  color: var(--hexar-blue);
  transform: translateX(2px);
}

/* Active */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background: rgba(31, 106, 255, 0.14);
  color: var(--hexar-blue);
}

/* Disabled */
.dropdown-menu .dropdown-item.disabled,
.dropdown-menu .dropdown-item:disabled {
  opacity: .45;
  pointer-events: none;
}

/* Divider */
.dropdown-menu .dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

/* Dropdown arrow (global) */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;

  width: 12px;
  height: 12px;

  background: rgba(255, 255, 255, 0.94);
  transform: rotate(45deg);

  border-left: 1px solid rgba(17, 24, 39, 0.06);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}



/* =========================
   HEXAR – Top loading bar
   ========================= */

.hexar-top-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 99999;

  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.hexar-top-loader .bar {
  display: block;
  height: 100%;
  width: 0%;

  background: linear-gradient(90deg, rgba(31,106,255,1), rgba(14,165,233,1));
  box-shadow: 0 0 14px rgba(31,106,255,.35);

  transition: width .25s ease;
}

.hexar-top-loader.is-active {
  opacity: 1;
}