/* =====================
   RESET & VARIABLES
===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --indigo-950: #0e0c14;
  --indigo-900: #1a1620;
  --indigo-800: #231f2e;
  --indigo-700: #2d2840;
  --indigo-600: #4a4460;
  --indigo-200: #c8c4d8;
  --indigo-100: #f0eef6;
  --gold:        #b8973e;
  --gold-light:  #d4af5a;
  --gold-pale:   #faf5e9;
  --white:       #ffffff;
  --grey-50:     #f9fafb;
  --grey-100:    #f3f4f6;
  --grey-200:    #e5e7eb;
  --grey-400:    #9ca3af;
  --grey-500:    #6b7280;
  --grey-700:    #374151;
  --grey-900:    #111827;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(30,27,75,.10);
  --shadow-lg: 0 12px 40px rgba(30,27,75,.18);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--grey-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =====================
   SCROLL ANIMATIONS
===================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.10s; }
[data-animate-delay="2"] { transition-delay: 0.20s; }
[data-animate-delay="3"] { transition-delay: 0.30s; }
[data-animate-delay="4"] { transition-delay: 0.40s; }
[data-animate-delay="5"] { transition-delay: 0.50s; }
[data-animate-delay="6"] { transition-delay: 0.60s; }

/* =====================
   HEADER / NAVBAR
===================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(30,27,75,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 2rem;
}

a.logo { text-decoration: none; flex-shrink: 0; }

.logo-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.logo-sub {
  display: block;
  font-size: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.15rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-lang {
  background: transparent;
  border: 1px solid rgba(184,151,62,0.5);
  color: var(--gold);
  padding: 0.32rem 0.72rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.btn-lang:hover {
  background: var(--gold);
  color: var(--indigo-900);
  border-color: var(--gold);
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen overlay menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--indigo-950);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.nav-overlay.open { display: flex; }

.nav-overlay .overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}
.nav-overlay .overlay-links a {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-overlay .overlay-links a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }

.overlay-lang {
  background: transparent;
  border: 1px solid rgba(184,151,62,0.5);
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background var(--transition), color var(--transition);
}
.overlay-lang:hover { background: var(--gold); color: var(--indigo-900); }

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  padding-top: 68px;
}

.hero-overlay { display: none; }

/* Dot grid subtil pe alb */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Accent warm gold dreapta */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(184,151,62,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-inner { max-width: 760px; text-align: center; }


.hero-tagline {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,62,0.4);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--gold); display: block; }

.hero-desc {
  font-size: 1rem;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

/* Search bar */
.hero-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 50px;
  padding: 0.55rem 0.55rem 0.55rem 1.2rem;
  max-width: 480px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(184,151,62,0.18);
}
.search-icon { flex-shrink: 0; }
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--grey-700);
  background: transparent;
  min-width: 0;
}
.hero-search input::placeholder { color: var(--grey-400); }
.search-btn {
  background: var(--indigo-900);
  border: none;
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--indigo-800); }

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--indigo-900);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--indigo-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,62,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--grey-700);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--grey-300);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--grey-50);
  border-color: var(--grey-700);
  color: var(--grey-900);
}

/* Hero trust stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--grey-200);
  justify-content: center;
}
.hero-stat-nr {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--indigo-900);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.68rem;
  color: var(--grey-400);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* =====================
   SECTION SHARED
===================== */
.section { padding: 5rem 0; }

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: block;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section-title.light { color: var(--white); }

.section-divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 3rem;
}

.section-center { text-align: center; }
.section-center .section-divider { margin-left: auto; margin-right: auto; }

/* =====================
   DESPRE
===================== */
.despre { background: var(--white); }

.despre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.despre-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--grey-500);
  margin-bottom: 1rem;
}
.despre-text strong { color: var(--grey-900); font-weight: 600; }

.despre-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.despre-list li {
  font-size: 0.88rem;
  color: var(--grey-700);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.despre-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.despre-cta-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-200);
}
.despre-cta-text {
  font-size: 0.95rem;
  color: var(--grey-700);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.despre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat {
  background: var(--indigo-900);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.stat-nr {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* =====================
   SERVICII
===================== */
.servicii { background: var(--white); }

.servicii-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover {
  border-color: var(--indigo-200);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card:hover::after { transform: scaleX(1); }
a.card { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.card-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; flex-wrap: wrap; gap: 0.5rem; }
.card-link { font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.3px; }
.card-download { font-size: 0.73rem; font-weight: 600; color: #666; background: #f3f1ee; border: 1px solid #ddd; padding: 0.22rem 0.6rem; border-radius: 4px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.card-download:hover { background: var(--gold-pale); color: var(--gold); border-color: var(--gold); }

.card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.83rem;
  color: var(--grey-500);
  line-height: 1.65;
}

/* =====================
   STUDII DE CAZ
===================== */
.studii {
  background: var(--grey-50);
}

.studii-subtitle {
  font-size: 0.88rem;
  color: var(--grey-500);
  margin-top: 0.6rem;
  line-height: 1.65;
}

.studii-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0 1.5rem;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-500);
  padding: 0.42rem 1.1rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--indigo-900);
  border-color: var(--indigo-900);
  color: var(--white);
}

.studii-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.studiu-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.studiu-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.studiu-card.hidden { display: none; }

.studiu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.studiu-domeniu {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.22rem 0.62rem;
  border-radius: 50px;
  border: 1px solid rgba(184,151,62,0.25);
}
.studiu-an {
  font-size: 0.7rem;
  color: var(--grey-400);
  font-weight: 500;
}
.studiu-card h3 {
  font-size: 0.92rem;
  color: var(--grey-900);
  margin-bottom: 0.55rem;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}
.studiu-card p {
  font-size: 0.78rem;
  color: var(--grey-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.studiu-rezultat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-100);
}
.rezultat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-400);
  white-space: nowrap;
}
.rezultat-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2d6a4f;
}

.swipe-hint {
  text-align: center;
  font-size: 0.72rem;
  color: var(--grey-400);
  margin-top: 2rem;
}

/* =====================
   ECHIPA
===================== */
.echipa { background: var(--white); }

.echipa-foto-wrap {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.echipa-foto {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.echipa-grid { display: flex; justify-content: center; }

.membru { text-align: center; max-width: 300px; }

.membru-foto {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 28px rgba(30,27,75,0.15);
}
.placeholder-foto {
  background: var(--indigo-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.membru h3 {
  font-size: 1.2rem;
  color: var(--grey-900);
  margin-bottom: 0.3rem;
}
.titlu {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.membru p:last-child {
  font-size: 0.87rem;
  color: var(--grey-500);
  line-height: 1.65;
}

/* =====================
   CONTACT
===================== */
.contact { background: var(--grey-50); padding: 0; }

.contact-title-area {
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}
.contact-title-area .section-divider {
  margin: 0.75rem auto 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.contact-info {
  background: var(--indigo-900);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.contact-info h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
}
.contact-info h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.6rem;
}
.contact-info p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
  line-height: 1.65;
  position: relative;
}
.contact-info strong { color: rgba(255,255,255,0.88); }
.contact-info a { color: rgba(255,255,255,0.6); }
.contact-info a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  padding: 4rem 3rem;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--grey-900);
  margin-bottom: 2rem;
}
.contact-form-wrap h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.6rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-900);
  padding: 0.82rem 1rem;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.87rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--indigo-600);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
  background: var(--white);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey-400); }
.contact-form textarea { resize: vertical; min-height: 110px; }

.form-trust {
  font-size: 0.75rem;
  color: var(--grey-400);
  text-align: center;
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--indigo-950);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.footer-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-content a { color: rgba(255,255,255,0.45); }
.footer-content a:hover { color: var(--gold); }
.footer-disclaimer { font-size: 0.7rem !important; color: rgba(255,255,255,0.18) !important; }

/* =====================
   MOBILE STICKY CTA
===================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 997;
  background: rgba(30,27,75,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.7rem 1rem;
  gap: 0.7rem;
}
.mcta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.72rem 0.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.mcta-call:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.mcta-contact {
  flex: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--indigo-900);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.72rem 0.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.mcta-contact:hover { background: var(--gold-light); color: var(--indigo-900); }

/* =====================
   RESPONSIVE — TABLET
===================== */
@media (max-width: 960px) {
  .despre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .despre-stats { grid-template-columns: repeat(3, 1fr); }
  .servicii-grid { grid-template-columns: repeat(2, 1fr); }
  .studii-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 3rem 2rem; }
  .contact-form-wrap { padding: 3rem 2rem; }
}

/* =====================
   RESPONSIVE — MOBILE
===================== */
@media (max-width: 700px) {
  /* Navbar */
  .nav-links { display: none; }
  .btn-lang { display: none; }
  .hamburger { display: flex; }

  .navbar { justify-content: space-between; position: relative; }

  a.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  /* Sections */
  .section { padding: 2.5rem 0; }

  /* Hero — compact */
  .hero { min-height: auto; padding-bottom: 1rem; }

  .hero-content {
    padding: 1.25rem 1.25rem 1rem;
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Text centrat pe mobil */
  .hero-inner { text-align: center; }
  .hero-tagline { display: inline-block; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { align-items: center; }
  .hero-search { margin-left: auto; margin-right: auto; }

  /* Stats — orizontal scroll compact, pornit de la stânga */
  .hero-stats {
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--grey-200);
    padding-top: 1.25rem;
  }
  .hero-stats::-webkit-scrollbar { display: none; }
  .hero-stat-nr { font-size: 1.5rem; }
  .hero-stats > div {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 110px;
    padding-right: 1.5rem;
    border-right: 1px solid var(--grey-200);
    margin-right: 1.5rem;
  }
  .hero-stats > div:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  /* Fix overflow pe mobil */
  .hero-inner { width: 100%; box-sizing: border-box; }
  .hero-tagline {
    font-size: 0.58rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1.2px;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    display: block;
  }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); margin-bottom: 0.75rem; }
  .hero-desc { font-size: 0.88rem; margin-bottom: 1.1rem; max-width: 100%; }
  .hero-search { max-width: 100%; width: 100%; box-sizing: border-box; }
  .search-btn { padding: 0.42rem 0.8rem; font-size: 0.75rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .btn-primary, .btn-outline { justify-content: center; padding: 0.75rem 1rem; font-size: 0.85rem; }

  /* Services */
  .servicii-grid { grid-template-columns: 1fr; }

  /* Case studies: horizontal scroll */
  .studii-grid {
    grid-template-columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .studii-grid::-webkit-scrollbar { display: none; }
  .studiu-card {
    min-width: 78vw;
    max-width: 320px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* Sobre stats */
  .despre-stats { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-title-area { padding: 3.5rem 1.5rem 2rem; }
  .contact-info { padding: 2.5rem 1.5rem; }
  .contact-form-wrap { padding: 2.5rem 1.5rem; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  footer { padding-bottom: 5.5rem; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 2rem; }
  .hero-stat-nr { font-size: 1.65rem; }
  .despre-stats { gap: 1rem; }
}
