/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.browser-google-chrome .hero-video {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,43,64,0.92) 0%, rgba(10,43,64,0.65) 55%, rgba(10,43,64,0.2) 100%),
    linear-gradient(to bottom, rgba(10,43,64,0.3) 0%, transparent 30%, rgba(10,43,64,0.7) 100%);
}
/* Tirkizna vertikalna linija akcenat levo */
.hero-accent-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-accent) 20%, var(--color-accent) 80%, transparent 100%);
  opacity: 0.6; z-index: 1;
}

.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 100%; padding-top: 80px;
}
.hero-text { max-width: 580px; }

/* ── Desna strana — social proof ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-cards-in 0.7s var(--ease-out) 0.7s forwards;
}
@keyframes hero-cards-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

@media (max-width: 640px) {
  .hero-social-proof { display: none; }
}

/* Eyebrow sa linijom */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.hero-eyebrow-line {
  display: block; width: 32px; height: 2px;
  background: var(--color-accent); border-radius: 2px;
}
.hero-eyebrow-text {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: var(--weight-medium); text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--color-accent);
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: var(--weight-black);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: var(--space-5);
}
/* Highlight reč u naslovu */
.hero-title-highlight { color: var(--color-accent); display: block; }

.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 480px;
  font-weight: var(--weight-regular);
}

.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center; }
.hero-actions .btn--primary { padding: 15px 32px; font-size: 12px; }
.hero-actions .btn--outline { padding: 13px 28px; font-size: 12px; }

/* Statistike u hero-u */
.hero-stats {
  display: flex; gap: var(--space-8);
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-number {
  font-family: var(--font-heading); font-size: clamp(22px, 3vw, 30px);
  font-weight: var(--weight-black); color: var(--color-white);
  line-height: 1;
}
.hero-stat-number span { color: var(--color-accent); }
.hero-stat-label {
  font-size: 10px; font-weight: var(--weight-medium);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

.hero-scroll {
  position: absolute; bottom: var(--space-7); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.hero-scroll-label { font-size: 10px; font-weight: var(--weight-medium); text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ============================================================
   TRUST BAR — odmah ispod heroa
   ============================================================ */
/* ============================================================
   KEYWORD STRIP — horizontalni ticker između hero-a i mission
   ============================================================ */

.kw-strip {
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  overflow: hidden;
}

/* Druga traka — kontrastna teal pozadina */
.kw-strip--contrast {
  background: var(--color-accent);
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 8px 0;
}

/* Na kontrastnoj traci — tamni tekst/boje */
.kw-strip--contrast .kw-item {
  color: rgba(10, 20, 40, 0.65);
  border-color: transparent;
}
.kw-strip--contrast .kw-item--accent {
  color: var(--color-dark);
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.15);
}
.kw-strip--contrast .kw-item--outline {
  color: var(--color-dark);
  border-color: rgba(0,0,0,0.2);
  background: transparent;
}
.kw-strip--contrast .kw-sep {
  color: rgba(0,0,0,0.2);
}
/* Keyframes */
@keyframes kw-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes kw-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Animirani track */
.kw-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: kw-scroll 28s linear infinite;
  will-change: transform;
}
.kw-track--right {
  animation: kw-scroll-right 32s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .kw-track, .kw-track--right { animation: none; }
}

/* Separator */
.kw-sep {
  color: rgba(255,255,255,0.12);
  font-size: 14px;
  flex-shrink: 0;
  user-select: none;
}

/* Keyword item — base */
.kw-item {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  flex-shrink: 0;
  color: rgba(255,255,255,0.28);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

/* Varijanta — accent fill */
.kw-item--accent {
  color: var(--color-accent);
  border-color: rgba(124,205,221,0.2);
  background: rgba(124,205,221,0.05);
}

/* Varijanta — outline */
.kw-item--outline {
  color: rgba(255,255,255,0.42);
  border-color: rgba(255,255,255,0.1);
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  background: var(--color-off-white);
}
.mission-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-10); align-items: center;
}
.mission-text .eyebrow { margin-bottom: var(--space-4); }
.mission-text h2 {
  font-size: clamp(var(--text-xl), 3.5vw, 48px);
  margin-bottom: var(--space-5); line-height: 1.1;
  letter-spacing: -0.02em;
}
.mission-text h2 em { font-style: normal; color: var(--color-accent); }
.mission-desc {
  font-size: var(--text-base); line-height: 1.85;
  margin-bottom: var(--space-6); max-width: 460px;
  color: var(--color-text-body);
}
.mission-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* Mission visual — network canvas */
.mission-visual {
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(124,205,221,0.18);
  box-shadow:
    0 0 0 1px rgba(124,205,221,0.06),
    0 0 60px rgba(124,205,221,0.07),
    inset 0 0 40px rgba(7,26,40,0.5);
}

/* Corner frame dekoracije */
.mv-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
}
.mv-corner--tl { top: 12px; left: 12px; border-top: 1.5px solid var(--color-accent); border-left: 1.5px solid var(--color-accent); }
.mv-corner--tr { top: 12px; right: 12px; border-top: 1.5px solid var(--color-accent); border-right: 1.5px solid var(--color-accent); }
.mv-corner--bl { bottom: 12px; left: 12px; border-bottom: 1.5px solid var(--color-accent); border-left: 1.5px solid var(--color-accent); }
.mv-corner--br { bottom: 12px; right: 12px; border-bottom: 1.5px solid var(--color-accent); border-right: 1.5px solid var(--color-accent); }

/* Glow linija na vrhu */
.mv-glow-line {
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124,205,221,0.6), transparent);
  z-index: 3;
  pointer-events: none;
}

/* Floating stat kartice */
.mv-stat {
  position: absolute;
  z-index: 4;
  background: rgba(7,26,40,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124,205,221,0.2);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  will-change: transform;
  gap: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  max-width: 160px;
}

.browser-google-chrome .mv-stat,
.browser-google-chrome .mv-status,
.browser-google-chrome .mission-badge {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.browser-google-chrome .hero-social-proof,
.browser-google-chrome .hero-ping {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.browser-google-chrome .hero-ping {
  display: none;
}

.browser-google-chrome .hero-right {
  animation: none;
  opacity: 1;
  transform: none;
}

.browser-google-chrome .news-editorial-featured,
.browser-google-chrome .news-list-item,
.browser-google-chrome .hp-card {
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.browser-google-chrome .news-editorial-featured:hover {
  box-shadow: 0 10px 28px rgba(10,43,64,0.08);
}

.browser-google-chrome .news-editorial-featured:hover .news-ef-image img,
.browser-google-chrome .news-list-item:hover .news-list-image img,
.browser-google-chrome .hp-card:hover,
.browser-google-chrome .hp-card:hover .hp-card-bg,
.browser-google-chrome .hp-card:hover .hp-card-side-line {
  transform: none;
}

.browser-google-chrome .hp-card-overlay,
.browser-google-chrome .hp-card::after,
.browser-google-chrome .news-list-item::after {
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.browser-google-chrome .hp-card:hover .hp-card-cta,
.browser-google-chrome .news-editorial-featured:hover .news-ef-cta {
  gap: 6px;
}

.browser-google-chrome .hp-card:hover .hp-card-desc,
.browser-google-chrome .news-editorial-featured:hover .news-ef-title,
.browser-google-chrome .news-list-item:hover .news-list-title {
  color: inherit;
}
.mv-stat--1 { top: 22%; left: 8%; }
.mv-stat--2 { top: 14%; right: 10%; }
.mv-stat--3 { bottom: 22%; right: 8%; }

.mv-stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.mv-stat-num em {
  font-style: normal;
  color: var(--color-accent);
  font-size: 18px;
}
.mv-stat-label {
  font-size: 9px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Status indikator */
.mv-status {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(7,26,40,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(124,205,221,0.15);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
}
.mv-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 6px var(--color-accent);
  animation: mv-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes mv-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--color-accent); }
  50% { opacity: 0.5; box-shadow: 0 0 12px var(--color-accent); }
}
.mv-status-text {
  font-size: 9px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.mission-network-canvas {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 420px;
}
.mission-badge {
  position: absolute; bottom: var(--space-6); left: var(--space-6);
  background: rgba(10,43,64,0.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(124,205,221,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
}
.mission-badge-number {
  font-family: var(--font-heading); font-size: 36px;
  font-weight: var(--weight-black); color: var(--color-white);
  line-height: 1; margin-bottom: 2px;
}
.mission-badge-number span { color: var(--color-accent); }
.mission-badge-label {
  font-size: 10px; font-weight: var(--weight-medium);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--color-dark); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(124,205,221,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid { display: flex; align-items: stretch; }
.stat-item {
  flex: 1; text-align: center;
  padding: var(--space-9) var(--space-6);
  position: relative;
  transition: background 0.2s ease;
}
.stat-item:hover { background: rgba(255,255,255,0.02); }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); flex-shrink: 0; margin: var(--space-7) 0; }
.stat-icon {
  display: flex; justify-content: center; margin-bottom: var(--space-4);
  color: var(--color-accent); opacity: 0.6;
}
.stat-number { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: var(--space-3); }
.stat-count { font-family: var(--font-heading); font-size: clamp(52px, 7vw, 80px); font-weight: var(--weight-black); color: var(--color-white); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-suffix { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px); font-weight: var(--weight-bold); color: var(--color-accent); line-height: 1; }
.stat-label { font-size: 11px; font-weight: var(--weight-medium); text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.area-card {
  position: relative; background: var(--color-white);
  padding: var(--space-8) var(--space-6) var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-4);
  overflow: hidden;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: default;
}
.area-card:hover {
  box-shadow: inset 0 -4px 24px rgba(124,205,221,0.08);
}
.area-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--color-dark) 0%, #0d3a56 100%);
  opacity: 0; transition: opacity 0.35s var(--ease-out); z-index: 0;
}
.area-card:hover::before { opacity: 1; }

/* Glow orb koji se pojavljuje iza ikone */
.area-card::after {
  content: '';
  position: absolute;
  top: var(--space-8); left: var(--space-6);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,205,221,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  transform: scale(0.5);
  z-index: 0;
  pointer-events: none;
}
.area-card:hover::after { opacity: 1; transform: scale(2.5); }
.area-card-number {
  position: absolute; bottom: -16px; right: -8px;
  font-family: var(--font-heading); font-size: 100px;
  font-weight: var(--weight-black); color: var(--color-dark);
  opacity: 0.04; line-height: 1;
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.4s var(--ease-out);
  z-index: 0; pointer-events: none; user-select: none;
}
.area-card:hover .area-card-number { opacity: 0.15; color: var(--color-accent); transform: translateY(-8px) scale(1.05); }
.area-card-icon {
  position: relative; z-index: 1; width: 52px; height: 52px;
  color: var(--color-accent);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.area-card:hover .area-card-icon { transform: scale(1.15) rotate(-5deg); }
.area-card-icon svg { width: 100%; height: 100%; }
.area-card h3 {
  position: relative; z-index: 1;
  font-size: 17px; font-weight: var(--weight-bold);
  color: var(--color-text-dark); transition: color 0.3s ease; margin: 0;
}
.area-card:hover h3 { color: var(--color-white); }
.area-card p {
  position: relative; z-index: 1;
  font-size: 13px; line-height: 1.75;
  color: var(--color-text-body); transition: color 0.3s ease;
  flex: 1; margin: 0;
}
.area-card:hover p { color: rgba(255,255,255,0.6); }
.area-card-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
  background: var(--color-accent);
  transition: width 0.4s var(--ease-out); z-index: 2;
}
.area-card:hover .area-card-line { width: 100%; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--space-8); gap: var(--space-5); }
.projects-header h2 { margin-top: var(--space-2); }
.projects-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-5); }

.project-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(10,43,64,0.15); border-color: transparent; }
.project-card-image { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.project-card:hover .project-card-image img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,43,64,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.project-card:hover .project-card-overlay { opacity: 1; }

/* Tag na slici */
.project-card-tag-overlay {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: rgba(10,43,64,0.85); backdrop-filter: blur(4px);
  border: 1px solid rgba(124,205,221,0.3);
  color: var(--color-accent);
  font-family: var(--font-heading); font-size: 10px;
  font-weight: var(--weight-bold); text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 10px;
  border-radius: 100px;
}
.project-card-content { padding: var(--space-5) var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.project-card-title {
  font-size: 16px; font-weight: var(--weight-bold);
  color: var(--color-text-dark); line-height: 1.3; margin: 0;
  transition: color 0.2s ease;
}
.project-card:hover .project-card-title { color: var(--color-accent); }
.project-card-desc { font-size: 13px; color: var(--color-text-body); line-height: 1.7; flex: 1; margin: 0; }
.project-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--space-3); padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.project-card-read {
  font-family: var(--font-heading); font-size: 10px;
  font-weight: var(--weight-bold); text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-accent);
}
.project-card-arrow {
  display: flex; align-items: center; color: var(--color-accent);
  transition: transform 0.2s var(--ease-out);
}
.project-card:hover .project-card-arrow { transform: translateX(6px); }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-6); align-items: start; }
.news-side { display: flex; flex-direction: column; gap: var(--space-4); }

.news-card--featured {
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl); overflow: hidden;
  text-decoration: none; background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.news-card--featured:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(10,43,64,0.13); }
.news-card--featured .news-card-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.news-card--featured .news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.news-card--featured:hover .news-card-image img { transform: scale(1.06); }
.news-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,43,64,0.5) 0%, transparent 50%); }
.news-card--featured .news-card-content { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.news-card-date { font-size: 10px; font-weight: var(--weight-medium); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.12em; }
.news-card--featured .news-card-title { font-size: 20px; font-weight: var(--weight-bold); color: var(--color-text-dark); line-height: 1.3; margin: 0; transition: color 0.2s ease; }
.news-card--featured:hover .news-card-title { color: var(--color-accent); }
.news-card--featured .news-card-excerpt { font-size: 14px; color: var(--color-text-body); line-height: 1.75; margin: 0; }
.news-card-read-more { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-2); font-family: var(--font-heading); font-size: 10px; font-weight: var(--weight-bold); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); transition: gap 0.2s ease; }
.news-card--featured:hover .news-card-read-more { gap: var(--space-3); }

.news-card--compact {
  display: flex; gap: var(--space-4); text-decoration: none;
  padding: var(--space-4); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border); background: var(--color-white);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s ease;
  align-items: flex-start;
}
.news-card--compact:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.news-card-image--sm { width: 96px; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; }
.news-card-image--sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); }
.news-card--compact:hover .news-card-image--sm img { transform: scale(1.08); }
.news-card--compact .news-card-content { display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.news-card--compact .news-card-title { font-size: 14px; font-weight: var(--weight-bold); color: var(--color-text-dark); line-height: 1.4; margin: 0; transition: color 0.2s ease; }
.news-card--compact:hover .news-card-title { color: var(--color-accent); }
.news-card--compact .news-card-excerpt { font-size: 12px; color: var(--color-text-body); line-height: 1.65; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; padding: var(--space-10) 0; overflow: hidden; display: flex; align-items: center; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,43,64,0.97) 0%, rgba(10,43,64,0.88) 50%, rgba(10,43,64,0.7) 100%); }
.cta-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: var(--space-9); }
.cta-text { max-width: 560px; }
.cta-text .eyebrow { color: var(--color-accent); }
.cta-text h2 { color: var(--color-white); font-size: clamp(var(--text-xl), 3.5vw, 44px); margin: var(--space-3) 0 var(--space-5); line-height: 1.1; letter-spacing: -0.02em; }
.cta-text p { color: rgba(255,255,255,0.6); line-height: 1.85; }
.cta-actions { display: flex; flex-direction: column; gap: var(--space-3); flex-shrink: 0; min-width: 200px; }
.cta-actions .btn { justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .hero-stats { gap: var(--space-6); }
  .hero-overlay { background: linear-gradient(to bottom, rgba(10,43,64,0.6) 0%, rgba(10,43,64,0.75) 50%, rgba(10,43,64,0.92) 100%); }
  .mission-inner { grid-template-columns: 1fr; }
  .mission-visual { min-height: 300px; }
  .stats-grid { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; margin: 0 auto; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; gap: var(--space-7); align-items: flex-start; }
  .cta-actions { flex-direction: row; width: 100%; }
}

@media (max-width: 640px) {
  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-subtitle { max-width: 100%; font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-5); }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .hero-text-link { justify-content: center; }
  .hero-scroll { display: none; }

  /* Mission */
  .mission-inner { gap: var(--space-7); }
  .mission-text h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .mission-desc { font-size: 14px; }
  .mission-actions { flex-direction: column; }
  .mission-actions .btn { width: 100%; justify-content: center; }
  .mission-visual { min-height: 240px; }

  /* Stats */
  /* Stats — kompaktno na mobilnom */
  .stats { }
  .stat-item { padding: 32px var(--space-5); }
  .stat-divider { margin: 0 auto; width: 40px; }
  .stat-count { font-size: clamp(36px, 12vw, 52px); }
  .stat-suffix { font-size: clamp(18px, 6vw, 28px); }
  .stat-label { font-size: 10px; }
  .stat-icon svg { width: 20px; height: 20px; }

  /* Home programs cards */
  .home-programs-header h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* KW strip */
  .kw-strip { padding: 14px 0; }

  /* Misc */
  .projects-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .cta-actions { flex-direction: column; }
}

/* Ghost tamna varijanta — za CTA sekciju na tamnoj pozadini */
.btn--ghost-dark { background: transparent; border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
.btn--ghost-dark:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(124,205,221,0.06); }

/* Hero text link — secondary CTA */
.hero-text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 12px;
  font-weight: var(--weight-bold); text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.65);
  transition: color 0.2s ease, gap 0.2s ease;
  padding: 4px 0;
}
.hero-text-link:hover { color: var(--color-accent); gap: 10px; }
.hero-text-link svg { transition: transform 0.2s ease; }
.hero-text-link:hover svg { transform: translateX(3px); }

/* ============================================================
   NEWS EDITORIAL — magazine layout
   ============================================================ */
.news-editorial { }

.news-editorial-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--space-8); gap: var(--space-4);
}
.news-editorial-header-left .eyebrow { margin-bottom: var(--space-2); }
.news-editorial-header-left h2 { margin: 0; }

/* --- Featured vest --- */
.news-editorial-featured {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-decoration: none;
  margin-bottom: var(--space-4);
  min-height: 340px;
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
  position: relative;
}
.news-editorial-featured:hover {
  box-shadow: 0 20px 60px rgba(10,43,64,0.12);
  border-color: transparent;
}

.news-ef-index {
  display: flex; align-items: flex-start; justify-content: center;
  padding: var(--space-6) 0 0;
  font-family: var(--font-heading); font-size: 11px;
  font-weight: var(--weight-black); letter-spacing: 0.1em;
  color: var(--color-accent); opacity: 0.7;
  background: var(--color-off-white);
  border-right: 1px solid var(--color-border);
  flex-shrink: 0;
}

.news-ef-image {
  overflow: hidden; position: relative;
}
.news-ef-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.news-editorial-featured:hover .news-ef-image img { transform: scale(1.05); }

.news-ef-body {
  padding: var(--space-7) var(--space-7);
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--space-4);
  border-left: 1px solid var(--color-border);
}

.news-ef-meta {
  display: flex; align-items: center; gap: var(--space-4);
}
.news-ef-tag {
  font-family: var(--font-heading); font-size: 10px;
  font-weight: var(--weight-black); text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--color-dark);
  background: rgba(124,205,221,0.15);
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(124,205,221,0.3);
  color: var(--color-mid);
}
.news-ef-date {
  font-size: 11px; font-weight: var(--weight-medium);
  color: var(--color-text-muted); text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-ef-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  line-height: 1.25; margin: 0;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.news-editorial-featured:hover .news-ef-title { color: var(--color-accent); }

.news-ef-excerpt {
  font-size: 14px; color: var(--color-text-body);
  line-height: 1.75; margin: 0;
}

.news-ef-cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-heading); font-size: 11px;
  font-weight: var(--weight-black); text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-accent);
  margin-top: var(--space-2);
  transition: gap 0.2s ease;
}
.news-editorial-featured:hover .news-ef-cta { gap: var(--space-3); }

/* --- List vesti --- */
.news-editorial-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
}

.news-list-item {
  display: grid;
  grid-template-columns: 64px 80px 1fr 130px;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
  position: relative;
  min-height: 96px;
}
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { background: var(--color-off-white); }

.news-list-item::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transition: transform 0.25s var(--ease-out);
  transform-origin: center;
}
.news-list-item:hover::after { transform: scaleY(1); }

.news-list-index {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  font-family: var(--font-heading); font-size: 11px;
  font-weight: var(--weight-black); letter-spacing: 0.1em;
  color: var(--color-accent); opacity: 0.5;
  background: var(--color-off-white);
  border-right: 1px solid var(--color-border);
  flex-shrink: 0; align-self: stretch;
}
.news-list-item:hover .news-list-index { opacity: 1; }

.news-list-image {
  width: 80px; align-self: stretch;
  overflow: hidden; flex-shrink: 0;
  border-right: 1px solid var(--color-border);
}
.news-list-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease-out);
  display: block;
}
.news-list-item:hover .news-list-image img { transform: scale(1.08); }

.news-list-body {
  padding: var(--space-5) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.news-list-tag {
  font-family: var(--font-heading); font-size: 9px;
  font-weight: var(--weight-black); text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--color-mid);
}
.news-list-title {
  font-size: 15px; font-weight: var(--weight-bold);
  color: var(--color-text-dark); margin: 0; line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.news-list-item:hover .news-list-title { color: var(--color-accent); }
.news-list-excerpt {
  font-size: 12px; color: var(--color-text-muted);
  line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.news-list-meta {
  padding: var(--space-4) var(--space-6);
  display: flex; flex-direction: column; align-items: flex-end;
  gap: var(--space-3); flex-shrink: 0;
  border-left: 1px solid var(--color-border);
  align-self: stretch; justify-content: center;
  min-width: 130px;
  width: 130px;
}
.news-list-date {
  font-size: 10px; font-weight: var(--weight-medium);
  color: var(--color-text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; text-align: right;
  white-space: nowrap;
}
.news-list-arrow {
  color: var(--color-accent); opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.news-list-item:hover .news-list-arrow { opacity: 1; transform: translateX(4px); }

/* Responsive */
@media (max-width: 900px) {
  .news-editorial-featured {
    grid-template-columns: 48px 1fr;
    grid-template-rows: 220px auto;
  }
  .news-ef-index { grid-row: 1; grid-column: 1; }
  .news-ef-image { grid-row: 1; grid-column: 2; }
  .news-ef-body {
    grid-row: 2; grid-column: 1 / -1;
    border-left: none; border-top: 1px solid var(--color-border);
    padding: var(--space-6);
  }
  .news-list-item { grid-template-columns: 48px 72px 1fr auto; }
}

@media (max-width: 640px) {
  .news-editorial-header { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .news-editorial-featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto 200px auto;
    min-height: unset;
  }
  .news-ef-index {
    grid-row: 1; grid-column: 1;
    flex-direction: row; padding: var(--space-3) var(--space-4);
    border-right: none; border-bottom: 1px solid var(--color-border);
  }
  .news-ef-image { grid-row: 2; grid-column: 1; }
  .news-ef-body {
    grid-row: 3; grid-column: 1;
    border-top: 1px solid var(--color-border);
    padding: var(--space-5);
  }
  .news-list-item { grid-template-columns: 40px 1fr auto; }
  .news-list-image { display: none; }
  .news-list-meta { min-width: 80px; padding: var(--space-3) var(--space-4); }
}

/* ============================================================
   HOME PROGRAMS — tamna sekcija sa immersive karticama
   ============================================================ */
.home-programs {
  background: var(--color-dark);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.home-programs::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,205,221,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.home-programs-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--space-8);
  gap: var(--space-4);
  position: relative; z-index: 1;
}
.home-programs-header .eyebrow { margin-bottom: var(--space-2); }
.home-programs-header h2 { color: var(--color-white); margin: 0; }

/* 2×2 grid tight, nema gap */
.home-programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  position: relative; z-index: 1;
}

.hp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 320px;
  overflow: hidden;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out);
}
.hp-card:hover { transform: translateY(-4px); }

/* Pozadinski gradijent — svaka kartica drugačija */
.hp-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s var(--ease-out);
}
.hp-card:hover .hp-card-bg { transform: scale(1.04); }

.hp-card-bg--01 {
  background-image:
    linear-gradient(to bottom, rgba(7,30,46,0.55) 0%, rgba(10,43,64,0.82) 100%),
    url('../../assets/photo/EcoRise.jpg');
  background-size: cover;
  background-position: center;
}
.hp-card-bg--02 {
  background-image:
    linear-gradient(to bottom, rgba(7,30,46,0.55) 0%, rgba(10,43,64,0.82) 100%),
    url('../../assets/photo/sportkonf.jpg');
  background-size: cover;
  background-position: center;
}
.hp-card-bg--03 {
  background-image:
    linear-gradient(to bottom, rgba(7,30,46,0.55) 0%, rgba(10,43,64,0.82) 100%),
    url('../../assets/photo/osnazi.jpg');
  background-size: cover;
  background-position: center;
}
.hp-card-bg--04 {
  background-image:
    linear-gradient(to bottom, rgba(7,30,46,0.55) 0%, rgba(10,43,64,0.82) 100%),
    url('../../assets/photo/putemsporta.jpg');
  background-size: cover;
  background-position: center;
}
.hp-card-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,205,221,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,205,221,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Inner layout */
.hp-card-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  height: 100%; padding: var(--space-6);
  justify-content: space-between;
}

/* Top */
.hp-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between;
}
.hp-card-num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: var(--weight-black);
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.04em; line-height: 1;
  transition: color 0.3s; user-select: none;
}
.hp-card:hover .hp-card-num { color: rgba(124,205,221,0.1); }
.hp-card-tag {
  font-family: var(--font-heading); font-size: 9px;
  font-weight: var(--weight-black); text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--color-accent);
  background: rgba(124,205,221,0.08);
  border: 1px solid rgba(124,205,221,0.2);
  padding: 5px 10px; border-radius: 100px;
}

/* Main */
.hp-card-main { display: flex; flex-direction: column; gap: var(--space-3); }
.hp-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: var(--weight-black);
  text-transform: uppercase; letter-spacing: -0.025em;
  color: var(--color-white); margin: 0; line-height: 1.0;
}
.hp-card--coming .hp-card-title { color: rgba(255,255,255,0.7); }
.hp-card--coming:hover .hp-card-title { color: rgba(255,255,255,0.9); }
.hp-card-desc {
  font-size: 12px; color: rgba(255,255,255,0.38);
  line-height: 1.65; margin: 0;
  transition: color 0.3s;
}
.hp-card:hover .hp-card-desc { color: rgba(255,255,255,0.85); }

/* Bottom */
.hp-card-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hp-card-meta {
  font-family: var(--font-heading); font-size: 10px;
  font-weight: var(--weight-bold); text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.3);
}
.hp-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 10px;
  font-weight: var(--weight-black); text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-accent);
  transition: gap 0.2s;
}
.hp-card:hover .hp-card-cta { gap: 10px; }
.hp-card-coming-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-heading); font-size: 10px;
  font-weight: var(--weight-bold); text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(124,205,221,0.4);
}
.hp-card-coming-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-accent); opacity: 0.5;
  animation: soy-pulse 2.4s ease-in-out infinite; flex-shrink: 0;
}

/* Hover border */
.hp-card::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s; pointer-events: none; z-index: 2;
}
.hp-card:hover::after { border-color: rgba(124,205,221,0.2); }

/* Teal overlay na hover */
.hp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 40, 60, 0.97) 0%,
    rgba(10, 55, 75, 0.88) 45%,
    rgba(20, 80, 100, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}
.hp-card:hover .hp-card-overlay { opacity: 1; }

/* Teal accent linija s leve strane na hover */
.hp-card-side-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  transform: scaleY(0);
  transition: transform 0.45s var(--ease-out);
  z-index: 3;
  pointer-events: none;
}
.hp-card:hover .hp-card-side-line { transform: scaleY(1); }

@media (max-width: 900px) {
  .home-programs-header { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .home-programs-grid { grid-template-columns: 1fr 1fr; }
  .hp-card { height: 280px; }
}
@media (max-width: 560px) {
  .home-programs-grid { grid-template-columns: 1fr; }
  .hp-card { height: 220px; }
  .hp-card-inner { padding: var(--space-5); }
}

/* ============================================================
   MOBILNI FIX — floating kartice na mission visual
   ============================================================ */
@media (max-width: 640px) {
  /* Kartice manje i repozicionirane da ne stoje jedna na drugoj */
  .mv-stat {
    padding: 8px 12px;
  }
  .mv-stat-num { font-size: 20px; }
  .mv-stat-num em { font-size: 14px; }
  .mv-stat-label { font-size: 8px; }
  .mv-stat--1 { top: 12%; left: 6%; }
  .mv-stat--2 { top: 8%; right: 6%; }
  .mv-stat--3 { bottom: 18%; right: 6%; }

  /* Status pill */
  .mv-status { padding: 4px 10px 4px 8px; }
  .mv-status-text { font-size: 8px; }

  /* Back to top — malo udaljeniji od ivice na mobilnom */
  #back-to-top { bottom: 20px; right: 16px; }
}

/* ============================================================
   TOUCH UREĐAJI — isključi hover animacije koje se "zaglavljuju"
   ============================================================ */
@media (hover: none) {
  /* Area kartice — bez dark flip na tapu */
  .area-card::before { display: none; }
  .area-card::after { display: none; }
  .area-card h3,
  .area-card p,
  .area-card-icon { transition: none; }

  /* HP kartice — bez overlay na tapu */
  .hp-card-overlay { display: none; }
  .hp-card { transform: none !important; }

  /* Cursor glow — ne postoji na touch */
  #cursor-glow { display: none; }
}

/* ============================================================
   HERO SOCIAL PROOF
   ============================================================ */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 7px 16px 7px 7px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  transform: translateZ(0);
  will-change: transform;
}

/* Floating +1 pings — samo desktop */
@media (min-width: 901px) {
  .hero-ping {
    position: absolute;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-accent);
    background: rgba(10,43,64,0.85);
    border: 1px solid rgba(124,205,221,0.35);
    border-radius: 100px;
    padding: 2px 7px;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-ping--1 {
    top: -22px;
    left: 10px;
    animation: ping-float 4s ease-in-out 1.8s infinite;
  }
  .hero-ping--2 {
    top: -18px;
    right: 18px;
    animation: ping-float 4s ease-in-out 3.4s infinite;
  }
  .hero-ping--3 {
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    animation: ping-float 4s ease-in-out 5.1s infinite;
  }

  @keyframes ping-float {
    0%   { opacity: 0; transform: translateY(6px); }
    12%  { opacity: 1; transform: translateY(0px); }
    70%  { opacity: 1; transform: translateY(-4px); }
    100% { opacity: 0; transform: translateY(-10px); }
  }

  .hero-ping--3 {
    animation: ping-float-center 4s ease-in-out 5.1s infinite;
  }

  @keyframes ping-float-center {
    0%   { opacity: 0; transform: translateX(-50%) translateY(6px); }
    12%  { opacity: 1; transform: translateX(-50%) translateY(0px); }
    70%  { opacity: 1; transform: translateX(-50%) translateY(-4px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  }
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(10,43,64,0.7);
  object-fit: cover;
  margin-left: -8px;
  background: rgba(124,205,221,0.25);
}
.hero-avatar:first-child { margin-left: 0; }

.hero-social-proof-text {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}
.hero-social-proof-text strong {
  color: var(--color-white);
  font-weight: var(--weight-bold);
}
