/* Desigeno - New design/rebranding */
:root {
  --bg-dark: #0a0a0a;
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-card: rgba(30, 30, 30, 0.4);
  --glass-card-hover: rgba(40, 40, 40, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-bright: #ffffff;
  --accent: #91148F;
  --accent-light: #b01aad;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Ubuntu', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-bright);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Fonts */
.font-serif-display {
  font-family: 'Ubuntu', sans-serif;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

h1, h2, h3, h4, h5, h6, .serif {
  font-family: 'Ubuntu', sans-serif;
}

/* Background image fixed + overlay â€“ urmÄƒreÈ™te la scroll pe tot layout-ul (ca la rebranding) */
.bg-image-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url('../images/homepage-Banner.jpg');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.92) 100%);
}

/* Homepage: body transparent ca bannerul fix sÄƒ se vadÄƒ pe tot conÈ›inutul la scroll */
body.page-home {
  background-color: transparent;
}

body.page-home .section,
body.page-home .section-inner {
  background: transparent;
}

/* Glass panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
}

.glass-card {
  background: var(--glass-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.glass-card:hover {
  background: var(--glass-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.text-gradient {
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Meniu identic pe homepage și pe paginile interioare */
.main-header .header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 5rem;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


body.page-inner .main-header .header-inner,
body.page-home .main-header .header-inner {
  height: 5rem;
  min-height: 5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-bright);
  background: transparent !important;
  padding: 0;
  border: none;
}

.logo-img {
  height: 2.25rem;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border: none;
  padding: 0;
  vertical-align: middle;
}

body.page-inner .main-header .logo-img,
body.page-home .main-header .logo-img {
  height: 2.25rem;
}

.main-footer .logo-img {
  height: 1.75rem;
  max-width: 140px;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.logo-mark-inner {
  width: 1rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.logo-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Desktop nav */
.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  body.page-inner .nav-desktop,
  body.page-home .nav-desktop {
    font-size: 0.8rem;
  }

  .nav-desktop a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-desktop a:hover {
    color: var(--text-bright);
  }

  .nav-item-dropdown {
    position: relative;
  }

  .nav-item-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-item-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    list-style: none;
    margin: 0;
  }

  .nav-item-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-item-dropdown .dropdown a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.05em;
  }

  .nav-item-dropdown .dropdown a:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-bright);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
  }

  .nav-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-bright);
  }
}

/* Mobile burger & overlay nav */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 60;
  width: 44px;
  height: 44px;
  /* EliminÄƒ fundal È™i bordura implicitÄƒ a butonului */
  background: transparent;
  border: none;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  box-shadow: none;
  outline: none;
  transition: background 0.2s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.burger:active {
  background: rgba(255, 255, 255, 0.1);
}

.burger:focus {
  outline: none;
}

.burger:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

.burger span {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  display: block;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.overlay-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 40;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.overlay-nav.active {
  opacity: 1;
  visibility: visible;
}

.overlay-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 600px;
}

.overlay-nav .nav-mobile-item {
  margin: 0;
  position: relative;
}

.overlay-nav .nav-mobile-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.overlay-nav .nav-mobile-item > a {
  color: var(--text-bright);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
  padding: 1.25rem 1rem;
  position: relative;
}

.overlay-nav .nav-mobile-item > a:hover {
  color: var(--accent-light);
  padding-left: 1.5rem;
}

/* Indicator pentru elemente cu submeniu */
.overlay-nav .nav-mobile-item.has-sublist > a::after,
.overlay-nav .nav-mobile-item:has(.nav-mobile-sublist) > a::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 0.875rem;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.2s;
}

.overlay-nav .nav-mobile-item.expanded > a::after {
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}

.overlay-nav .nav-mobile-item.has-sublist > a:hover::after,
.overlay-nav .nav-mobile-item:has(.nav-mobile-sublist) > a:hover::after {
  opacity: 1;
}

.overlay-nav .nav-mobile-item.expanded > a {
  color: var(--accent-light);
}

.overlay-nav .nav-mobile-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0 4px 4px 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
}

.overlay-nav .nav-mobile-item.expanded .nav-mobile-sublist {
  max-height: 1000px;
  opacity: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.overlay-nav .nav-mobile-sublist li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.overlay-nav .nav-mobile-sublist li:last-child {
  border-bottom: none;
}

.overlay-nav .nav-mobile-sublist a {
  font-size: 1rem;
  opacity: 0.75;
  color: var(--text-bright);
  display: block;
  padding: 0.875rem 1rem 0.875rem 2rem;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}

.overlay-nav .nav-mobile-sublist a::before {
  content: "—";
  position: absolute;
  left: 1rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.overlay-nav .nav-mobile-sublist a:hover {
  opacity: 1;
  color: var(--accent-light);
  padding-left: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.overlay-nav .nav-mobile-sublist a:hover::before {
  opacity: 0.7;
}

/* Separator vizual pentru secțiuni principale */
.overlay-nav .nav-mobile-item:nth-child(3),
.overlay-nav .nav-mobile-item:nth-child(5) {
  margin-top: 0.5rem;
}

.overlay-nav .nav-mobile-item:nth-child(3)::before,
.overlay-nav .nav-mobile-item:nth-child(5)::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin-bottom: 0.5rem;
}

/* Hero */
.hero-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 2rem;
}

.hero-content h1 .line2 {
  display: block;
  font-style: italic;
  opacity: 0.95;
}

.hero-content .hero-desc {
  max-width: 36rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  min-width: 200px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.cta-btn-primary {
  background: var(--text-bright);
  color: var(--bg-dark);
}

.cta-btn-primary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-bright);
  z-index: 2;
}

/* ========== Homepage layout nou (inspirat PRISMA) ========== */

/* Hero nou: text stânga, vizual dreapta */
.hero-new {
  min-height: 100vh;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-new-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: 100px 100px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  pointer-events: none;
}

/* Floating particles pe banner */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: hero-float 12s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.hero-particle:nth-child(2) { left: 22%; top: 70%; animation-delay: -2s; animation-duration: 11s; width: 3px; height: 3px; opacity: 0.6; }
.hero-particle:nth-child(3) { left: 45%; top: 40%; animation-delay: -4s; animation-duration: 16s; }
.hero-particle:nth-child(4) { left: 65%; top: 15%; animation-delay: -1s; animation-duration: 13s; width: 5px; height: 5px; opacity: 0.5; }
.hero-particle:nth-child(5) { left: 80%; top: 55%; animation-delay: -5s; animation-duration: 10s; }
.hero-particle:nth-child(6) { left: 15%; top: 50%; animation-delay: -3s; animation-duration: 15s; width: 2px; height: 2px; }
.hero-particle:nth-child(7) { left: 55%; top: 80%; animation-delay: -6s; animation-duration: 12s; }
.hero-particle:nth-child(8) { left: 35%; top: 25%; animation-delay: -2.5s; animation-duration: 11s; opacity: 0.6; }
.hero-particle:nth-child(9) { left: 90%; top: 35%; animation-delay: 0s; animation-duration: 14s; width: 3px; height: 3px; }
.hero-particle:nth-child(10) { left: 5%; top: 85%; animation-delay: -4s; animation-duration: 9s; }
.hero-particle:nth-child(11) { left: 70%; top: 45%; animation-delay: -1.5s; animation-duration: 13s; width: 4px; height: 4px; opacity: 0.45; }
.hero-particle:nth-child(12) { left: 28%; top: 60%; animation-delay: -3.5s; animation-duration: 10s; }
.hero-particle:nth-child(13) { left: 50%; top: 10%; animation-delay: -5.5s; animation-duration: 15s; width: 2px; height: 2px; }
.hero-particle:nth-child(14) { left: 85%; top: 75%; animation-delay: -2s; animation-duration: 11s; }
.hero-particle:nth-child(15) { left: 12%; top: 35%; animation-delay: -4.5s; animation-duration: 12s; opacity: 0.55; }
.hero-particle:nth-child(16) { left: 38%; top: 8%; animation-delay: -7s; animation-duration: 13s; width: 2px; height: 2px; }
.hero-particle:nth-child(17) { left: 72%; top: 62%; animation-delay: -1s; animation-duration: 10s; opacity: 0.5; }
.hero-particle:nth-child(18) { left: 8%; top: 65%; animation-delay: -3.2s; animation-duration: 14s; width: 4px; height: 4px; }
.hero-particle:nth-child(19) { left: 58%; top: 28%; animation-delay: -5.2s; animation-duration: 11s; width: 3px; height: 3px; }
.hero-particle:nth-child(20) { left: 95%; top: 50%; animation-delay: -2.8s; animation-duration: 15s; opacity: 0.45; }
.hero-particle:nth-child(21) { left: 42%; top: 72%; animation-delay: -4.8s; animation-duration: 9s; width: 2px; height: 2px; }
.hero-particle:nth-child(22) { left: 18%; top: 12%; animation-delay: -0.5s; animation-duration: 12s; }
.hero-particle:nth-child(23) { left: 78%; top: 22%; animation-delay: -6.3s; animation-duration: 13s; width: 3px; height: 3px; opacity: 0.6; }
.hero-particle:nth-child(24) { left: 5%; top: 42%; animation-delay: -3.7s; animation-duration: 10s; }
.hero-particle:nth-child(25) { left: 62%; top: 88%; animation-delay: -1.8s; animation-duration: 14s; width: 4px; height: 4px; }
.hero-particle:nth-child(26) { left: 32%; top: 48%; animation-delay: -5.5s; animation-duration: 11s; opacity: 0.55; }
.hero-particle:nth-child(27) { left: 88%; top: 8%; animation-delay: -2.2s; animation-duration: 16s; width: 2px; height: 2px; }
.hero-particle:nth-child(28) { left: 48%; top: 55%; animation-delay: -4.2s; animation-duration: 9s; }
.hero-particle:nth-child(29) { left: 25%; top: 82%; animation-delay: -6.8s; animation-duration: 12s; width: 3px; height: 3px; opacity: 0.5; }
.hero-particle:nth-child(30) { left: 92%; top: 68%; animation-delay: -0.8s; animation-duration: 13s; }

@keyframes hero-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(8px, -25px) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-5px, -50px) scale(0.95);
    opacity: 0.5;
  }
  75% {
    transform: translate(12px, -30px) scale(1.05);
    opacity: 0.65;
  }
}

.hero-new-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-new-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-new-content {
  max-width: 36rem;
}

.hero-new-moto {
  display: none;
}

@media (min-width: 1024px) {
  .hero-new-moto {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .hero-new-moto .moto-img {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 360px;
    object-fit: contain;
  }
}

.hero-new-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-new-badge {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(145, 20, 143, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.hero-new-line {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-new-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Titlu hero: 2 rânduri, stil ca în exemplul PRISMA */
.hero-new-title {
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.9;
  font-weight: 400;
  margin: 0 0 2rem;
  color: var(--text-bright);
}

.hero-new-line1 {
  display: block;
  color: var(--text-bright);
}

.hero-new-line2 {
  display: block;
  margin-top: 1rem;
  padding-left: 3rem;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-bright);
}

@media (min-width: 768px) {
  .hero-new-line2 {
    padding-left: 6rem;
    font-size: 0.55em;
  }
}

.hero-new-quote {
  border-left: 2px solid rgba(145, 20, 143, 0.5);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-new-quote p {
  margin: 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

.hero-new-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 480px) {
  .hero-new-buttons {
    flex-wrap: nowrap;
  }
  .hero-new-buttons .cta-btn {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0.875rem 1rem;
    font-size: 0.7rem;
  }
}

/* Vizual dreapta: carduri suprapuse */
.hero-new-visual {
  position: relative;
  height: 420px;
  display: none;
}

@media (min-width: 1024px) {
  .hero-new-visual {
    display: block;
    height: 520px;
  }
}

.hero-new-card {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hero-new-card-back {
  width: 280px;
  height: 380px;
  background: rgba(50, 50, 50, 0.9);
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 2rem), calc(-50% + 1.5rem)) rotate(8deg);
  border-top: 4px solid var(--accent);
}

.hero-new-visual:hover .hero-new-card-back {
  transform: translate(calc(-50% + 2rem), calc(-50% + 1.5rem)) rotate(12deg);
}

.hero-new-card-mid {
  width: 280px;
  height: 380px;
  background: rgba(40, 40, 40, 0.95);
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 1.5rem), calc(-50% + 0.5rem)) rotate(-4deg);
  border-top: 4px solid var(--accent-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-new-visual:hover .hero-new-card-mid {
  transform: translate(calc(-50% - 1.5rem), calc(-50% + 0.5rem)) rotate(-6deg);
}

.hero-new-card-front {
  width: 300px;
  height: 420px;
  background: rgba(25, 25, 25, 0.98);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(1deg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-new-visual:hover .hero-new-card-front {
  transform: translate(-50%, -50%) rotate(0) scale(1.02);
}

.hero-new-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 1;
}

.hero-new-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.5s;
}

.hero-new-visual:hover .hero-new-card-img {
  opacity: 1;
}

.hero-new-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  z-index: 2;
}

.hero-new-scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.75rem;
  height: 4rem;
  color: var(--text-bright);
}

.hero-new-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--text-bright), transparent);
}

/* Ticker strip */
.ticker-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.5);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: fit-content;
}

.ticker-item {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.ticker-muted {
  font-family: 'Ubuntu', sans-serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

.ticker-bold {
  font-weight: 600;
  color: var(--text-bright);
}

.ticker-accent {
  font-weight: 600;
  color: var(--accent-light);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Capabilities section */
.capabilities-section {
  padding: 5rem 1.5rem;
  background: rgba(10, 10, 10, 0.85);
  position: relative;
}

.capabilities-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .capabilities-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.capabilities-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.capabilities-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin: 0;
  color: var(--text-bright);
}

.capabilities-title-muted {
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.capabilities-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-bright);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.capabilities-link:hover {
  color: var(--accent-light);
}

.capabilities-link-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.capabilities-link:hover .capabilities-link-icon {
  background: var(--text-bright);
  color: var(--bg-dark);
  border-color: var(--text-bright);
}

.capability-cards {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .capability-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .capability-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  min-height: 340px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background 0.4s;
}

.capability-card:hover {
  background: rgba(30, 30, 30, 0.8);
}

.capability-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.capability-card:hover .capability-card-line {
  transform: scaleX(1);
}

.capability-card-line-1 { background: var(--accent); }
.capability-card-line-2 { background: var(--accent-light); }
.capability-card-line-3 { background: rgba(255, 255, 255, 0.6); }
.capability-card-line-4 { background: var(--text-bright); }

.capability-card-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.capability-card-content .capability-card-body {
  flex: 1;
  min-width: 0;
}

@media (max-width: 767px) {
  .capability-card-content {
    flex-direction: column;
  }
  .capability-card-img {
    width: 100%;
    max-width: 200px;
    margin-left: 0;
  }
}

.capability-card-img {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.capability-card-num {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
  display: block;
}

.capability-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  font-weight: 400;
  color: var(--text-bright);
}

.capability-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
}

.capability-card-icon {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.capability-card-icon svg {
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.4s;
}

.capability-card:hover .capability-card-icon svg {
  color: var(--accent-light);
}

/* Selected works / Portofoliu */
.selected-works {
  padding: 5rem 1.5rem;
  background: #0a0a0a;
  position: relative;
}

.selected-works-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.selected-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.selected-works-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin: 0 0 0.5rem;
  color: var(--text-bright);
}

.selected-works-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.selected-works-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .selected-works-list {
    gap: 5rem;
  }
}

.selected-work-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .selected-work-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .selected-work-row-2 .selected-work-text {
    order: 1;
  }

  .selected-work-row-2 .selected-work-img-wrap {
    order: 2;
  }
}

.selected-work-img-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.selected-work-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.6s, transform 0.6s;
}

.selected-work-row:hover .selected-work-img-wrap img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.selected-work-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-bright);
  background: rgba(0, 0, 0, 0.75);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-work-row-2 .selected-work-tag {
  left: auto;
  right: 1rem;
}

.selected-work-text {
  padding: 0 0.5rem;
}

.selected-work-text-right {
  text-align: right;
}

@media (min-width: 1024px) {
  .selected-work-text-right {
    text-align: right;
  }

  .selected-work-text-right .selected-work-link {
    margin-left: auto;
    margin-right: 0;
  }
}

.selected-work-category {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.selected-work-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
  color: var(--text-bright);
  transition: transform 0.3s;
}

.selected-work-row:hover .selected-work-text h3 {
  transform: translateX(4px);
}

.selected-work-row-2:hover .selected-work-text h3 {
  transform: translateX(-4px);
}

.selected-work-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: 28rem;
}

.selected-work-text-right p {
  margin-left: auto;
}

.selected-work-link {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-bright);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.selected-work-link:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.selected-works-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Stats strip */
.stats-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 15, 0.9);
}

.stats-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.stat-item:hover {
  background: rgba(30, 30, 30, 0.6);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
  color: var(--text-bright);
  transition: color 0.2s;
}

.stat-item:hover .stat-value {
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* CTA split */
.cta-split {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 0;
  background: rgba(20, 20, 20, 0.95);
  width: 100%;
}

.cta-split-form-wrap {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta-split-form-wrap {
    padding: 4rem 3rem;
  }
}

.cta-split-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.cta-split-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
  color: var(--text-bright);
  line-height: 1.1;
}

.cta-split-title-italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.cta-split-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 2.5rem;
  max-width: 28rem;
}

/* Formular contact ca în exemplul PRISMA (fără buget) */
.cta-split-form {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cta-split-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 900px) {
  .cta-split-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.cta-split-form-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cta-split-form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-split-form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.cta-split-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem;
  font-family: 'Ubuntu', sans-serif;
}

.cta-split-field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta-split-field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-split-field {
  width: 100%;
}

.cta-split-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-bright);
  outline: none;
  transition: border-color 0.2s;
}

.cta-split-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-split-input:focus {
  border-bottom-color: var(--accent);
}

.cta-split-consent {
  margin-top: 0.5rem;
  text-align: left;
}

.cta-split-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-split-consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
}

.cta-split-consent-label a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.cta-split-consent-label a:hover {
  color: var(--accent-light);
}

.cta-split-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.cta-split-select option {
  background: var(--bg-dark);
  color: var(--text-bright);
}

.cta-split-submit {
  width: 100%;
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
  background: var(--text-bright);
  color: var(--bg-dark);
  border: none;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cta-split-submit:hover {
  background: var(--accent-light);
  color: var(--text-bright);
}

.cta-split-input[type="textarea"],
.cta-split-input textarea,
textarea.cta-split-input {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

.cta-split-file-label {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
}

.cta-split-file-label span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 0.5rem;
}

.cta-split-file-input {
  width: 100%;
  padding: 0.75rem 0;
  font-family: inherit;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.cta-split-file-input::file-selector-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-bright);
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}

.cta-split-file-input::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-split-contact-wrap {
  position: relative;
  min-height: 320px;
}

@media (min-width: 768px) {
  .cta-split-contact-wrap {
    min-height: auto;
  }
}

.cta-split-contact-bg {
  position: absolute;
  inset: 0;
  background: url('../images/homepage-Banner.jpg') center/cover no-repeat;
  opacity: 0.25;
  filter: grayscale(1);
}

.cta-split-contact {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
}

@media (min-width: 768px) {
  .cta-split-contact {
    padding: 4rem 3rem;
    min-height: 100%;
  }
}

.cta-split-block h4 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text-bright);
}

.cta-split-block p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

.cta-split-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  max-width: 280px;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.section-link:hover {
  color: var(--text-bright);
  border-bottom-color: var(--text-bright);
}

/* Expertise / Services grid */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .expertise-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .expertise-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

.expertise-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.expertise-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.3s;
}

.expertise-card:hover .icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}

.expertise-card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.expertise-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.expertise-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.expertise-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.expertise-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* Portfolio section */
.section-portfolio {
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}

.portfolio-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .portfolio-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.portfolio-intro .portfolio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.portfolio-grid-wrap {
  max-width: 100%;
}

.portfolio-grid-layout {
  column-count: 2;
  column-gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid-layout {
    column-count: 3;
    column-gap: 0.75rem;
    padding: 0 2rem;
  }
}

@media (min-width: 1200px) {
  .portfolio-grid-layout {
    column-count: 4;
    column-gap: 1rem;
  }
}

.portfolio-grid-layout .col {
  display: contents;
}

.portfolio-grid-layout .img-wrap {
  position: relative;
  overflow: hidden;
  background: transparent;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5rem;
  break-inside: avoid;
  page-break-inside: avoid;
}

.portfolio-grid-layout .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.7s, opacity 0.3s;
}

.portfolio-grid-layout .img-wrap:hover img {
  transform: scale(1.02);
  opacity: 1;
}

/* Process section – stil aliniat cu capabilities */
.process-section {
  padding: 5rem 1.5rem;
  background: rgba(10, 10, 10, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process-intro {
  margin-bottom: 3.5rem;
  max-width: 32rem;
}

.process-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.process-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--text-bright);
}

.process-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s ease;
}

.process-step:nth-child(2) {
  border-right: none;
}

@media (min-width: 768px) {
  .process-step:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .process-step:nth-child(4) {
    border-right: none;
  }
}

@media (min-width: 1024px) {
  .process-step:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .process-step:nth-child(4) {
    border-right: none;
  }
  .process-step {
    border-bottom: none;
  }
}

.process-step:hover {
  background: rgba(30, 30, 30, 0.6);
}

.process-step-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-step:hover .process-step-line {
  transform: scaleX(1);
}

.process-step-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.process-step:hover .process-step-num {
  color: var(--accent-light);
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: var(--text-bright);
}

.process-step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

/* Process traits (Suntem Curiosi, Inventivi, Activi) */
.process-steps--traits {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .process-steps--traits {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-steps--traits .process-step:nth-child(3) {
  border-right: none;
}
.process-step-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.capabilities-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* CTA / Contact strip */
.cta-strip {
  padding: 5rem 1.5rem;
}

.cta-strip .glass-panel {
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .cta-strip .glass-panel {
    padding: 4rem 5rem;
  }
}

.cta-strip h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.cta-strip .cta-strip-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.cta-strip .cta-mail-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--text-bright);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.cta-strip .cta-mail-btn:hover {
  background: #e5e5e5;
}

/* Footer */
/* Clienții noștri - bară animată */
.clients-ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.clients-ticker--footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none;
}

.clients-ticker-inner {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: clients-ticker 80s linear infinite;
  width: fit-content;
}

@keyframes clients-ticker {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.client-logo-placeholder {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-logo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clients-ticker:hover .clients-ticker-inner {
  animation-play-state: paused;
}

.client-logo-placeholder:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.client-logo-placeholder:hover::before {
  opacity: 1;
}

.client-logo-text {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.client-logo-placeholder:hover .client-logo-text {
  color: rgba(255, 255, 255, 0.4);
}

/* Logo-uri clienți încărcate dinamic (imagine) */
.client-logo-item {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.client-logo-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.client-logo-item--error {
  background: rgba(255, 255, 255, 0.03);
}

.client-logo-item--error::after {
  content: "?";
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .client-logo-placeholder {
    width: 150px;
    height: 100px;
  }

  .client-logo-item {
    width: 150px;
    height: 100px;
  }
  
  .clients-ticker-inner {
    gap: 3rem;
  }
}

.main-footer {
  background: #000;
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 2fr;
  }
}

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-badges img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  max-width: 18rem;
  margin: 0.5rem 0 0;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-bright);
}

.footer-company-info {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-company-info p {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-company-info p:last-child {
  margin-bottom: 0;
}

.footer-company-info strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.footer-company-info a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-company-info a:hover {
  color: var(--text-bright);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--text-bright);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* Page content (inner pages) */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: var(--text-bright);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  font-weight: 500;
}

.page-content p, .page-content li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.page-content ul {
  padding-left: 1.5rem;
}

/* Pagini interioare – hero și conținut (ex. Despre noi) */
body.page-inner .bg-image-fixed,
body.page-inner .overlay {
  z-index: -2;
}

.hero-inner.hero-new {
  min-height: 100vh;
}

.hero-inner .hero-new-visual {
  display: none;
}

/* Pe pagini interioare, conținutul hero să fie poziționat la stânga ca pe homepage */
.hero-inner .hero-new-inner {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .hero-inner .hero-new-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-inner .hero-new-content {
    max-width: 36rem;
  }
}

/* Pagini dedicate servicii/signalistică: text stânga, imagine dreapta */
.page-content-with-image {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .page-content-with-image {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .page-content-with-image .page-intro-block {
    flex: 1;
    min-width: 0;
  }
}

.page-content-with-image .page-intro-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .page-content-with-image .page-intro-image {
    width: 480px;
    max-width: none;
  }
}

.page-content-with-image .page-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.page-intro-block {
  max-width: 42rem;
}

.page-intro-block-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .page-intro-block-centered {
    max-width: 56rem;
  }
}

.page-intro-block p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.page-intro-block p:last-child {
  margin-bottom: 0;
}

.page-intro-lead {
  font-size: 1.15rem;
  color: var(--text-bright) !important;
  margin-bottom: 1rem !important;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-info-card-title {
  font-size: 1.25rem;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-company {
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .contact-info-item {
    flex-direction: row;
    align-items: flex-start;
  }
}

.contact-info-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  min-width: 140px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-value {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex: 1;
}

.contact-info-value a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: var(--text-bright);
}

.contact-info-address .contact-info-value {
  line-height: 1.75;
}

.contact-info-social {
  margin-top: 0.5rem;
}

.contact-info-social .contact-info-label {
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .contact-info-social {
    flex-direction: column;
  }
  
  .contact-info-social .contact-info-label {
    margin-bottom: 0;
  }
}

.contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .contact-social {
    margin-top: 0;
  }
}

.contact-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.2s;
}

.contact-social a:hover {
  color: var(--text-bright);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.page-intro-with-image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100% !important;
}

.page-intro-content {
  flex: 1;
}

.page-intro-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-intro-image .productie-img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 120px;
}

@media (min-width: 768px) {
  .page-intro-with-image {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  
  .page-intro-content {
    flex: 1;
    max-width: 42rem;
  }
  
  .page-intro-image {
    flex: 0 0 auto;
  }
  
  .page-intro-image .productie-img {
    max-height: 150px;
  }
}

.page-dotare-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-dotare-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s;
}

.page-dotare-item:last-child {
  border-bottom: none;
}

.page-dotare-item:hover {
  background: rgba(30, 30, 30, 0.4);
}

.page-dotare-num {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  min-width: 2.5rem;
}

.page-dotare-item:hover .page-dotare-num {
  color: var(--accent-light);
}

.page-dotare-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--text-bright);
}

.page-dotare-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.stats-strip-four .stat-item {
  padding: 2rem 1rem;
}

.stats-strip-four .stat-value {
  font-size: 1.25rem;
}

.section-alt {
  background: rgba(15, 15, 15, 0.6);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-bright);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--text-bright);
  color: var(--bg-dark);
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button[type="submit"]:hover {
  background: #e5e5e5;
}

/* Article list (Stiati ca / Blog) */
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-list a {
  color: var(--text-bright);
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.2s;
}

.article-list a:hover {
  color: var(--accent-light);
}

.article-list .meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Selection */
::selection {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-bright);
}

/* Știați că - Accordion Grid */
.stiati-ca-accordion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .stiati-ca-accordion-grid {
    gap: 1.5rem;
  }
}

.stiati-ca-accordion-item {
  background: var(--glass-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stiati-ca-accordion-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--glass-card-hover);
}

.stiati-ca-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-bright);
  transition: all 0.3s ease;
}

.stiati-ca-accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stiati-ca-accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
}

.stiati-ca-accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stiati-ca-accordion-header[aria-expanded="true"] .stiati-ca-accordion-icon {
  transform: rotate(180deg);
}

.stiati-ca-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 1.5rem;
}

.stiati-ca-accordion-content p,
.stiati-ca-accordion-content ul {
  margin: 0 0 1rem 0;
  padding: 0;
}

.stiati-ca-accordion-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.stiati-ca-accordion-content li {
  margin-bottom: 0.5rem;
}

.stiati-ca-accordion-content code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'Courier New', monospace;
}

.stiati-ca-accordion-header[aria-expanded="true"] + .stiati-ca-accordion-content {
  padding-top: 0;
  padding-bottom: 1.5rem;
}


