:root {
  /* Font */
  --althera-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Brand colors */
  --althera-primary: #f28c28;   /* orange ALTHERA */
  --althera-dark: #0b0b0b;
  --althera-light: #ffffff;

  /* Text */
  --althera-text-dark: #0f0f0f;
  --althera-text-light: #eaeaea;

  /* Radius & motion */
  --althera-radius: 16px;
  --althera-transition: all 0.25s ease-in-out;

   --bs-link-color: rgba(255,255,255,.88);
   --bs-link-color-rgb: 255,255,255;
  --bs-link-hover-color: var(--althera-primary);
}

body {
  font-family: var(--althera-font);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--althera-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}


/* =========================
   ALTHERA HEADER (Mockup)
   ========================= */

/* wrapper sticky + blur */
.althera-header{
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 14px 0;
}

/* top glass bar */
.althera-header .bar{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,12,12,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,.40);
  padding: 10px 14px;
  
}

/* light mode */
html[data-bs-theme="light"] .althera-header .bar{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

/* brand */
.althera-header .brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.althera-header .brand-logo{
  display:block;
  height: 34px;
  width: auto;
}
.althera-header .brand-tag{
  font-size: .78rem;
  opacity: .75;
  line-height: 1.1;
  margin-top: 2px;
}
.althera-header .brand-tag strong{
  display:block;
  font-weight: 700;
  letter-spacing: -.02em;
}

/* nav pill */
.althera-header .nav-shell{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 6px;
}
html[data-bs-theme="light"] .althera-header .nav-shell{
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
}

/* menu links */
.althera-header .nav .nav-link{
  padding: 10px 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 999px;
  opacity: .92;
  transition: var(--althera-transition);
}
.althera-header .nav .nav-link:hover,
.althera-header .nav .nav-link:focus{
  opacity: 1;
  background: rgba(255,255,255,.06);
}
html[data-bs-theme="light"] .althera-header .nav .nav-link:hover,
html[data-bs-theme="light"] .althera-header .nav .nav-link:focus{
  background: rgba(0,0,0,.06);
}

/* active (optional: add class .is-active from CMS if you have it) */
.althera-header .nav .nav-link.is-active{
  background: rgba(242,140,40,.16);
  color: var(--bs-body-color);
}

/* dropdown glass */
.althera-header .dropdown-menu{
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(20,20,20,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}
html[data-bs-theme="light"] .althera-header .dropdown-menu{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
}

.althera-header .dropdown-item{
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.althera-header .dropdown-item:hover,
.althera-header .dropdown-item:focus{
  background: rgba(242,140,40,.16);
}

/* actions */
.btn-primary-althera{
  --bs-btn-bg: var(--althera-primary);
  --bs-btn-border-color: var(--althera-primary);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: #ff9a3b;
  --bs-btn-hover-border-color: #ff9a3b;
  --bs-btn-hover-color: #111;
  --bs-btn-active-bg: #e57f1f;
  --bs-btn-active-border-color: #e57f1f;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  box-shadow: 0 16px 36px rgba(242,140,40,.22);
}

.btn-ghost-althera{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--bs-body-color);
  transition: var(--althera-transition);
}
html[data-bs-theme="light"] .btn-ghost-althera{
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}
.btn-ghost-althera:hover{
  transform: translateY(-1px);
}

/* social tiny */
.althera-header .social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: var(--althera-transition);
}
html[data-bs-theme="light"] .althera-header .social a{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}
.althera-header .social a:hover{
  transform: translateY(-1px);
  border-color: rgba(242,140,40,.45);
  box-shadow: 0 14px 30px rgba(242,140,40,.18);
}

/* mobile toggle */
.althera-header .mobile-toggle{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--bs-body-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* mobile panel (glass card) */
.althera-header .mobile-panel{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px;
  box-shadow: 0 22px 60px rgba(0,0,0,.38);
}
html[data-bs-theme="light"] .althera-header .mobile-panel{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.88);
}

.althera-header .mobile-panel .meta{
  font-size: .92rem;
  opacity: .82;
  margin-bottom: 12px;
}
.althera-header .mobile-panel .nav-link{
  padding: 12px 6px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
html[data-bs-theme="light"] .althera-header .mobile-panel .nav-link{
  border-bottom: 1px solid rgba(0,0,0,.08);
}





/* =========================
   ALTHERA HERO
   ========================= */

.althera-hero{
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}

/* background glow ca în mockup */
.althera-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 75% 35%, rgba(242,140,40,.32), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.88));
  z-index: 0;
}

/* glass container */
.althera-hero .hero-box{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,12,12,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  padding: 48px 46px;
}

/* LEFT TEXT */
.althera-hero .hero-title{
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  margin-bottom: 18px;
}

.althera-hero .hero-text{
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,.80);
  max-width: 46ch;
  margin-bottom: 26px;
}

/* CTA */
.althera-hero .hero-actions .btn{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 12px 18px;
}

.althera-hero .hero-actions .btn-primary{
  background: var(--althera-primary);
  border-color: var(--althera-primary);
  color: #111;
  box-shadow: 0 18px 44px rgba(242,140,40,.25);
}

.althera-hero .hero-actions .btn-outline{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.90);
}

/* RIGHT LOGO */
.althera-hero .hero-visual{
  display: flex;
  justify-content: center;
  align-items: center;
}

.althera-hero .hero-logo{
  width: min(420px, 100%);
  height: auto;
  filter: drop-shadow(0 28px 60px rgba(242,140,40,.28));
}

/* mobile */
@media (max-width: 991px){
  .althera-hero{
    padding: 56px 0 40px;
  }
  .althera-hero .hero-box{
    padding: 32px 24px;
  }
  .althera-hero .hero-text{
    max-width: none;
  }
}


/* =========================
   ALTHERA FOOTER
   ========================= */

.althera-footer{
  position: relative;
  padding: 64px 0 28px;
  margin-top: 0px;
  overflow: hidden;
}

/* background glow */
.althera-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 360px at 20% 100%, rgba(242,140,40,.22), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.96));
  z-index: 0;
}

/* glass wrapper */
.althera-footer .footer-box{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,12,12,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  padding: 44px 42px;
}

/* logo + brand */
.althera-footer .footer-brand img{
  height: 42px;
  width: auto;
  margin-bottom: 14px;
}

.althera-footer .footer-brand p{
  color: rgba(255,255,255,.78);
  max-width: 38ch;
  font-size: .95rem;
}

/* section titles */
.althera-footer .footer-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* links */
.althera-footer a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.althera-footer a:hover{
  color: var(--althera-primary);
}

/* list spacing */
.althera-footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.althera-footer li{
  margin-bottom: 10px;
}

/* contact items */
.althera-footer .contact-item{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.althera-footer .contact-item i{
  color: var(--althera-primary);
}

/* social */
.althera-footer .footer-social{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.althera-footer .footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transition: all .25s ease;
}

.althera-footer .footer-social a:hover{
  border-color: rgba(242,140,40,.45);
  box-shadow: 0 14px 30px rgba(242,140,40,.18);
  transform: translateY(-2px);
}

/* bottom bar */
.althera-footer .footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}

/* mobile */
@media (max-width: 991px){
  .althera-footer{
    margin-top: 56px;
  }
  .althera-footer .footer-box{
    padding: 32px 22px;
  }
}

/* =========================
   ALTHERA FOOTER
   ========================= */

.althera-footer{
  position: relative;
  padding: 64px 0 28px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.92),
    rgba(0,0,0,.98)
  );
  border-top: 1px solid rgba(255,255,255,.08);
}

/* subtle glow */
.althera-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(242,140,40,.18), transparent 60%);
  opacity: .6;
  pointer-events:none;
}

/* footer card (top part) */
.althera-footer .footer-box{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.60);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  padding: 42px 40px;
  margin-bottom: 28px;
}

/* logo */
.althera-footer .footer-brand img{
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}

/* text */
.althera-footer .footer-text{
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  max-width: 38ch;
}

/* titles */
.althera-footer .footer-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* nav links */
.althera-footer .footer-nav a{
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s ease;
}

.althera-footer .footer-nav a:hover{
  color: var(--althera-primary);
}

/* contact */
.althera-footer .footer-contact a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
}

.althera-footer .footer-contact i{
  color: var(--althera-primary);
  margin-right: 8px;
}

/* social */
.althera-footer .footer-social{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.althera-footer .footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
  transition: all .25s ease;
}

.althera-footer .footer-social a:hover{
  transform: translateY(-2px);
  border-color: rgba(242,140,40,.5);
  box-shadow: 0 14px 30px rgba(242,140,40,.22);
}

/* bottom bar */
.althera-footer .footer-bottom{
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}

/* mobile */
@media (max-width: 991px){
  .althera-footer{
    padding: 48px 0 22px;
  }
  .althera-footer .footer-box{
    padding: 28px 22px;
  }
}

/* =========================
   ALTHERA - CE FACE DIFERIT
   ========================= */
.althera-diferit{
  position: relative;
  padding: 52px 0;
  overflow: hidden;
}

.althera-diferit::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(780px 260px at 80% 50%, rgba(242,140,40,.18), transparent 60%);
  opacity: .9;
  pointer-events:none;
  z-index: 0;
}

.althera-diferit .wrap{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  padding: 40px 40px;
}

.althera-diferit .kicker{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .80rem;
  margin-bottom: 10px;
}

.althera-diferit h2{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.10;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0 0 12px;
}

.althera-diferit .lead{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 70ch;
  margin: 0 0 18px;
}

/* bullets */
.althera-diferit .points{
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.althera-diferit .points li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.82);
}

.althera-diferit .points i{
  margin-top: 3px;
  color: var(--althera-primary);
}

/* right side card + CTA */
.althera-diferit .cta{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 18px 18px;
}

.althera-diferit .cta .cta-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.althera-diferit .cta .cta-text{
  color: rgba(255,255,255,.74);
  line-height: 1.6;
  margin-bottom: 14px;
}

.althera-diferit .cta .btn{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 12px 16px;
}

.althera-diferit .cta .btn-primary{
  background: var(--althera-primary);
  border-color: var(--althera-primary);
  color: #111;
  box-shadow: 0 18px 44px rgba(242,140,40,.22);
}

.althera-diferit .cta .btn-outline{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.90);
}

@media (max-width: 991px){
  .althera-diferit{
    padding: 36px 0;
  }
  .althera-diferit .wrap{
    padding: 26px 20px;
  }
}

/* =========================
   ALTHERA 404
   ========================= */

.althera-404{
  min-height: calc(100vh - 120px); /* header + footer safe */
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

/* background glow */
.althera-404::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 300px at 50% 35%, rgba(242,140,40,.25), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.90));
  z-index: 0;
}

/* glass card */
.althera-404 .error-card{
  position: relative;
  z-index: 1;
  max-width: 520px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(14,14,14,.60);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  padding: 48px 42px;
}

/* error code */
.althera-404 .error-code{
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(
    180deg,
    #ffb46a,
    var(--althera-primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* title */
.althera-404 .error-title{
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

/* description */
.althera-404 .error-description{
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-bottom: 26px;
}

/* actions */
.althera-404 .error-actions .btn{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 12px 18px;
}

/* primary */
.althera-404 .btn-primary-hexar{
  background: var(--althera-primary);
  border-color: var(--althera-primary);
  color: #111;
  box-shadow: 0 18px 44px rgba(242,140,40,.25);
}

/* ghost */
.althera-404 .btn-ghost{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
}

/* hover polish */
.althera-404 .btn:hover{
  transform: translateY(-1px);
}

/* mobile */
@media (max-width: 575px){
  .althera-404 .error-card{
    padding: 32px 22px;
  }
}

/* =========================
   ALTHERA - SERVICII CHEIE
   ========================= */
.althera-servicii{
  position: relative;
  padding: 52px 0;
  overflow: hidden;
}

.althera-servicii::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 260px at 50% 0%, rgba(242,140,40,.14), transparent 60%);
  opacity: .9;
  pointer-events:none;
  z-index: 0;
}

.althera-servicii .head{
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.althera-servicii .kicker{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .80rem;
  margin-bottom: 8px;
}

.althera-servicii .title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0 0 10px;
}

.althera-servicii .desc{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 72ch;
  margin: 0;
}

/* cards */
.althera-servicii .cardx{
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  padding: 18px 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.althera-servicii .cardx:hover{
  transform: translateY(-4px);
  border-color: rgba(242,140,40,.40);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
}

/* icon bubble */
.althera-servicii .icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242,140,40,.12);
  border: 1px solid rgba(242,140,40,.25);
  color: var(--althera-primary);
  margin-bottom: 12px;
}

.althera-servicii .card-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.althera-servicii .card-text{
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  margin: 0;
}

/* footer actions */
.althera-servicii .actions{
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.althera-servicii .actions .btn{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 12px 16px;
}

.althera-servicii .actions .btn-outline{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
}

.althera-servicii .actions .btn-primary{
  background: var(--althera-primary);
  border-color: var(--althera-primary);
  color: #111;
  box-shadow: 0 18px 44px rgba(242,140,40,.22);
}

@media (max-width: 991px){
  .althera-servicii{
    padding: 38px 0;
  }
}

/* =========================
   ALTHERA TIKTOK
   ========================= */

.althera-tiktok{
  position: relative;
  padding: 52px 0;
  overflow: hidden;
}

.althera-tiktok::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 260px at 20% 50%, rgba(242,140,40,.16), transparent 60%);
  pointer-events:none;
  z-index: 0;
}

.althera-tiktok .wrap{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  padding: 40px 40px;
}

/* text */
.althera-tiktok .kicker{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .80rem;
  margin-bottom: 8px;
}

.althera-tiktok .title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 10px;
}

.althera-tiktok .text{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 18px;
}

/* tiktok embed container */
.althera-tiktok .video-box{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.45);
  padding: 14px;
  display: flex;
  justify-content: center;
}

/* CTA */
.althera-tiktok .actions .btn{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 12px 16px;
}

.althera-tiktok .actions .btn-outline{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
}

@media (max-width: 991px){
  .althera-tiktok{
    padding: 38px 0;
  }
  .althera-tiktok .wrap{
    padding: 26px 20px;
  }
}


/* =========================
   ALTHERA PAGE (generic)
   ========================= */

.althera-page{
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}

/* soft blobs background */
.althera-page .bg-blobs{
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(680px 260px at 18% 12%, rgba(242,140,40,.18), transparent 60%),
    radial-gradient(820px 320px at 80% 28%, rgba(255,255,255,.06), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.92));
  opacity: 1;
}

/* wrapper */
.althera-page .wrap{
  position: relative;
  z-index: 1;
}

/* Page head */
.althera-page .page-head{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  padding: 34px 34px;
  margin-bottom: 18px;
}

.althera-page .kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .80rem;
  margin-bottom: 10px;
}

.althera-page .kicker i{
  color: var(--althera-primary);
}

.althera-page .title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin: 0 0 12px;
}

/* Breadcrumb */
.althera-page .crumbs{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.68);
}

.althera-page .crumbs a{
  color: rgba(255,255,255,.80);
  text-decoration: none;
  transition: color .2s ease;
}

.althera-page .crumbs a:hover{
  color: var(--althera-primary);
}

.althera-page .crumbs .sep{
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,.22);
  display: inline-block;
}

/* Banner */
.althera-page .banner{
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.40);
  box-shadow: 0 22px 60px rgba(0,0,0,.38);
  margin-bottom: 18px;
}

.althera-page .banner .media{
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* subtle overlay for readability */
.althera-page .banner .media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55));
}

/* Content shell */
.althera-page .content{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  padding: 32px 34px;
}

/* full width option */
.althera-page .content.full{
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

/* Reader typography */
.althera-page .reader{
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* headings inside content */
.althera-page .reader h2,
.althera-page .reader h3,
.althera-page .reader h4{
  color: rgba(255,255,255,.95);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 26px;
  margin-bottom: 12px;
}

.althera-page .reader h2{ font-size: 1.6rem; }
.althera-page .reader h3{ font-size: 1.25rem; }
.althera-page .reader h4{ font-size: 1.1rem; }

/* paragraphs + links */
.althera-page .reader p{
  margin-bottom: 14px;
}

.althera-page .reader a{
  color: var(--althera-primary);
  text-decoration: none;
  font-weight: 700;
}

.althera-page .reader a:hover{
  text-decoration: underline;
}

/* lists */
.althera-page .reader ul,
.althera-page .reader ol{
  padding-left: 1.2rem;
  margin: 12px 0 16px;
}

.althera-page .reader li{
  margin: 6px 0;
}

/* images inside content */
.althera-page .reader img{
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  margin: 12px 0 18px;
}

/* blockquote */
.althera-page .reader blockquote{
  border-left: 3px solid rgba(242,140,40,.55);
  padding: 10px 14px;
  margin: 16px 0;
  background: rgba(255,255,255,.04);
  border-radius: 14px;
}

/* tables */
.althera-page .reader table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  margin: 14px 0 18px;
}

.althera-page .reader th,
.althera-page .reader td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.althera-page .reader th{
  font-weight: 800;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.04);
}

/* Mobile */
@media (max-width: 991px){
  .althera-page{
    padding: 40px 0 46px;
  }
  .althera-page .page-head{
    padding: 24px 20px;
  }
  .althera-page .content{
    padding: 22px 20px;
  }
  .althera-page .banner .media{
    min-height: 200px;
  }
}

/* =========================
   ALTHERA CONTACT
   ========================= */

.althera-contact{
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}

.althera-contact .bg-blobs{
  position:absolute;
  inset:-2px;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(760px 280px at 20% 15%, rgba(242,140,40,.18), transparent 60%),
    radial-gradient(860px 320px at 82% 28%, rgba(255,255,255,.06), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.92));
}

.althera-contact .wrap{
  position: relative;
  z-index: 1;
}

/* head */
.althera-contact .page-head{
  margin-bottom: 14px;
}

.althera-contact .kicker{
  display: inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .80rem;
  margin-bottom: 10px;
}

.althera-contact .kicker i{ color: var(--althera-primary); }

.althera-contact .title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin: 0 0 10px;
}

.althera-contact .subtitle{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin: 0;
  max-width: 70ch;
}

/* glass card */
.althera-contact .glass-card{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  padding: 26px 26px;
}

/* forms */
.althera-contact .form-label{
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.90);
}

.althera-contact .form-control{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
}

.althera-contact .form-control::placeholder{
  color: rgba(255,255,255,.50);
}

.althera-contact .form-control:focus{
  border-color: rgba(242,140,40,.55);
  box-shadow: 0 0 0 .25rem rgba(242,140,40,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.96);
}

.althera-contact textarea.form-control{
  min-height: 140px;
  resize: vertical;
}

.althera-contact .helper{
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: .92rem;
  line-height: 1.55;
}

/* buttons */
.btn-primary-althera{
  --bs-btn-bg: var(--althera-primary);
  --bs-btn-border-color: var(--althera-primary);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: #ff9a3b;
  --bs-btn-hover-border-color: #ff9a3b;
  --bs-btn-hover-color: #111;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;
  padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(242,140,40,.22);
}

.althera-contact .btn-ghost{
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
}

/* info card */
.althera-contact .info-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.althera-contact .info-title i{ color: var(--althera-primary); }

.althera-contact .info-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
}

.althera-contact .info-list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.althera-contact .info-list li i{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(242,140,40,.12);
  border: 1px solid rgba(242,140,40,.22);
  color: var(--althera-primary);
  margin-top: 2px;
}

.althera-contact .info-list .label{
  font-size: 12px;
  color: rgba(255,255,255,.60);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.althera-contact .info-list a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 800;
}

.althera-contact .info-list a:hover{
  color: var(--althera-primary);
}

/* social */
.althera-contact .social{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.althera-contact .social a{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
  transition: all .25s ease;
}

.althera-contact .social a:hover{
  transform: translateY(-2px);
  border-color: rgba(242,140,40,.45);
  box-shadow: 0 14px 30px rgba(242,140,40,.18);
}

/* quick badges */
.althera-contact .quick{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.althera-contact .quick span{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 8px 12px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}

.althera-contact .quick i{
  color: var(--althera-primary);
}

/* mobile */
@media (max-width: 991px){
  .althera-contact{
    padding: 40px 0 46px;
  }
  .althera-contact .glass-card{
    padding: 20px 18px;
  }
}


/* =========================
   ALTHERA WHATSAPP FLOAT
   ========================= */

.althera-wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 999px;

  background: var(--althera-primary);
  color: #111;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-decoration: none;

  box-shadow:
    0 18px 44px rgba(242,140,40,.35),
    0 0 0 0 rgba(242,140,40,.45);

  animation: althera-wa-pulse 2.4s infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.althera-wa-float i{
  font-size: 20px;
}

.althera-wa-float span{
  white-space: nowrap;
}

/* hover */
.althera-wa-float:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 60px rgba(242,140,40,.45),
    0 0 0 0 rgba(242,140,40,.45);
  color: #111;
}

/* pulse animation */
@keyframes althera-wa-pulse{
  0%{
    box-shadow:
      0 18px 44px rgba(242,140,40,.35),
      0 0 0 0 rgba(242,140,40,.45);
  }
  70%{
    box-shadow:
      0 18px 44px rgba(242,140,40,.35),
      0 0 0 14px rgba(242,140,40,0);
  }
  100%{
    box-shadow:
      0 18px 44px rgba(242,140,40,.35),
      0 0 0 0 rgba(242,140,40,0);
  }
}

/* mobile: doar icon */
@media (max-width: 575px){
  .althera-wa-float{
    padding: 14px;
  }
  .althera-wa-float span{
    display: none;
  }
}

/* =========================
   ALTHERA – FOR WHO
   ========================= */

.althera-forwho{
  position: relative;
  padding: 56px 0;
}

.althera-forwho .section-head{
  max-width: 720px;
  margin-bottom: 28px;
}

.althera-forwho .kicker{
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.65);
  margin-bottom: 6px;
}

.althera-forwho .title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.althera-forwho .subtitle{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

/* items */
.althera-forwho .items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.althera-forwho .item{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 18px;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);

  font-weight: 800;
  color: rgba(255,255,255,.92);
}

.althera-forwho .item i{
  width: 36px;
  height: 36px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(242,140,40,.14);
  border: 1px solid rgba(242,140,40,.28);
  color: var(--althera-primary);
  flex-shrink: 0;
}

/* CTA */
.althera-forwho .cta{
  margin-top: 28px;
}

/* responsive */
@media (max-width: 991px){
  .althera-forwho .items{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px){
  .althera-forwho{
    padding: 40px 0;
  }
  .althera-forwho .items{
    grid-template-columns: 1fr;
  }
}


/* =========================
   POSTS (list + single) — ALTHERA Minimalism (dark + glass)
   Works with existing HTML:
   .posts-page, .posts-page-detail, .blog-categories-page,
   .page-title, .post-banner, .custom-category-list, .post-card
   ========================= */

/* Page wrappers */
.posts-page,
.posts-page-detail,
.blog-categories-page{
  position: relative;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* Optional ambient background (safe, doesn't break layouts) */
/*
.posts-page::before,
.posts-page-detail::before,
.blog-categories-page::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(780px 280px at 20% 10%, rgba(242,140,40,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.88));
  opacity: .9;
  z-index: 0;
}
*/
.posts-page > .container,
.posts-page-detail > .container,
.blog-categories-page > .container{
  position: relative;
  z-index: 1;
}

/* 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: rgba(255,255,255,.95);
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
}

.posts-page .lead,
.blog-categories-page .lead{
  color: rgba(255,255,255,.74);
  max-width: 78ch;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 16px;
}

/* Generic Bootstrap card in post detail */
.posts-page-detail .card{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  overflow: hidden;
}

.posts-page-detail .card-body{
  padding: clamp(18px, 3vw, 28px);
}

.posts-page-detail .card-title{
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* Banner (background-image div) */
.posts-page-detail .post-banner{
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: rgba(255,255,255,.03);
}

.posts-page-detail .post-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.55));
}

/* Meta row under title */
.posts-page-detail .text-muted{
  color: rgba(255,255,255,.62) !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(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.posts-page-detail .custom-category-badge:hover{
  color: var(--althera-primary);
  border-color: rgba(242,140,40,.40);
  transform: translateY(-1px);
}

/* Date pill */
.posts-page-detail .post-date{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.68);
  font-weight: 800;
  font-size: 12px;
}

.posts-page-detail .post-date i{ color: var(--althera-primary); }

/* 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: rgba(255,255,255,.95);
  letter-spacing: -0.01em;
  margin-top: 22px;
  margin-bottom: 10px;
  font-weight: 800;
}

.posts-page-detail .card-text p,
.posts-page-detail .card-text li{
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  font-size: 15px;
}

.posts-page-detail .card-text a{
  color: var(--althera-primary);
  font-weight: 800;
  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: 18px;
  border: 1px solid rgba(255,255,255,.12);
}

/* Related posts block */
.related-posts{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  padding: clamp(18px, 3vw, 28px);
}

.related-posts h3{
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  color: rgba(255,255,255,.95);
  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: rgba(255,255,255,.92);
  margin-bottom: 6px;
  font-size: 18px;
}

.blog-categories-page .text-muted{
  color: rgba(255,255,255,.66) !important;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Buttons */
.posts-page .btn,
.posts-page-detail .btn,
.blog-categories-page .btn{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Primary button (Althera orange) */
.posts-page .btn-primary,
.posts-page-detail .btn-primary,
.blog-categories-page .btn-primary{
  background: var(--althera-primary);
  border-color: var(--althera-primary);
  color: #111;
  box-shadow: 0 16px 40px rgba(242,140,40,.22);
}

.posts-page .btn-primary:hover,
.posts-page-detail .btn-primary:hover,
.blog-categories-page .btn-primary:hover{
  background: #ff9a3b;
  border-color: #ff9a3b;
  color: #111;
}

/* Outline primary */
.posts-page .btn-outline-primary,
.posts-page-detail .btn-outline-primary,
.blog-categories-page .btn-outline-primary{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
}

.posts-page .btn-outline-primary:hover,
.posts-page-detail .btn-outline-primary:hover,
.blog-categories-page .btn-outline-primary:hover{
  border-color: rgba(242,140,40,.45);
  color: var(--althera-primary);
}

/* Grid cards (if posts/grid uses .card) — safe enhancement */
.posts-page .card,
.blog-categories-page .card{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 44px rgba(0,0,0,.40);
  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 22px 70px rgba(0,0,0,.55);
  border-color: rgba(242,140,40,.28);
}

/* Alerts */
.alert{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(16,16,16,.60);
  color: rgba(255,255,255,.88);
}

/* =========================
   ALTHERA Post Card (Grid) — scoped
   Parent: .post-card
   ========================= */

.post-card{
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(0,0,0,.40);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.post-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(0,0,0,.60);
  border-color: rgba(242,140,40,.30);
}

.post-card .post-card-img{
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,.03);
  position: relative;
}

.post-card .post-card-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.50));
}

.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: 900;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.94);
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.post-card .post-card-title a{
  color: inherit;
  text-decoration:none;
}

.post-card .post-card-title a:hover{
  color: var(--althera-primary);
}

.post-card .post-card-text{
  flex: 1;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.post-card .btn{
  align-self: flex-start;
  border-radius: 999px;
  font-weight: 900;
  padding: 8px 14px;
  font-size: 13px;
}

/* If you use .btn-accent for "Citește" */
.post-card .btn-accent{
  background: rgba(242,140,40,.12);
  color: var(--althera-primary);
  border: 1px solid rgba(242,140,40,.25);
}

.post-card .btn-accent:hover{
  background: rgba(242,140,40,.18);
  color: #ffb06a;
  border-color: rgba(242,140,40,.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 — ALTHERA Minimalism (dark + glass)
   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;
  overflow: hidden;
  background:
    radial-gradient(760px 380px at 18% 0%, rgba(242,140,40,.18), transparent 60%),
    radial-gradient(620px 320px at 85% 10%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.92));
}

/* optional subtle dots/grid */
.login-page::before,
.two-factor-page::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .08;
}

/* Containers */
.login-page .login-container,
.two-factor-page .two-factor-container{
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Card */
.login-page .right-container,
.two-factor-page .right-container{
  max-width: 520px;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,16,16,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  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: rgba(255,255,255,.95);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 8px 0;
}

.two-factor-page .right-container p{
  color: rgba(255,255,255,.74);
  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;
  width: auto;
  filter: drop-shadow(0 18px 40px rgba(242,140,40,.18));
}

/* 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: 800;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  margin-bottom: 6px;
}

/* Inputs */
.login-page .right-container .form-control,
.two-factor-page .right-container .form-control{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  padding: 12px 14px;
}

.login-page .right-container .form-control::placeholder,
.two-factor-page .right-container .form-control::placeholder{
  color: rgba(255,255,255,.50);
}

.login-page .right-container .form-control:focus,
.two-factor-page .right-container .form-control:focus{
  border-color: rgba(242,140,40,.55);
  box-shadow: 0 0 0 .25rem rgba(242,140,40,.18);
  background: rgba(255,255,255,.05);
}

/* Remember checkbox */
.login-page .right-container .form-check-label{
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: 13px;
}

.login-page .right-container .form-check-input{
  border-color: rgba(255,255,255,.25);
  background-color: rgba(255,255,255,.04);
}

.login-page .right-container .form-check-input:checked{
  background-color: var(--althera-primary);
  border-color: var(--althera-primary);
}

/* Buttons */
.login-page .right-container .btn.btn-primary,
.two-factor-page .right-container .btn.btn-primary{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: var(--althera-primary);
  border-color: var(--althera-primary);
  color: #111;
  box-shadow: 0 18px 44px rgba(242,140,40,.22);
}

.login-page .right-container .btn.btn-primary:hover,
.two-factor-page .right-container .btn.btn-primary:hover{
  background: #ff9a3b;
  border-color: #ff9a3b;
  color: #111;
}

/* Links */
.login-page .right-container a,
.two-factor-page .right-container a{
  color: var(--althera-primary);
  font-weight: 800;
  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: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.88);
}

/* 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: 20px;
  }
}

/* =========================
   ALTHERA TRANSCENDENCE DIVIDER
   ========================= */

.althera-divider{
  position: relative;
  height: 120px;
  margin-top: 40px;
  margin-bottom: -1px;
  pointer-events: none;
  overflow: hidden;
}

/* glow core */
.althera-divider::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      60% 120px at 50% 100%,
      rgba(242,140,40,.28),
      rgba(242,140,40,.12) 35%,
      transparent 70%
    );
}

/* dark fade */
.althera-divider::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0),
      rgba(0,0,0,.55) 60%,
      rgba(0,0,0,.85)
    );
}