/* ═══════════════════════════════════════════════════════
   TrataMed Plus — Design System
   Versiune: 1.0 | Iunie 2026
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* Culori extrase direct din logo TrataMed Plus */
  --navy:    #024BBB;   /* albastru royal — culoarea principală din logo */
  --royal:   #0139A0;   /* albastru ușor mai închis — hover/active */
  --gold:    #E3AB1C;   /* auriu — din textul logo */
  --green:   #3FA709;   /* verde — din arc-ul logo */
  --green-l: #EDFADE;
  --navy-l:  #EEF3FF;
  --gold-l:  #FEF9E7;
  --text:    #010E2E;   /* albastru foarte închis pentru text */
  --gray:    #374151;
  --lgray:   #888;
  --border:  #D4DFFA;
  --white:   #fff;
  --off:     #F7F9FF;
  --red:     #C0392B;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(2,75,187,.08);
  --shadow-md:  0 8px 32px rgba(2,75,187,.12);
  --shadow-lg:  0 16px 48px rgba(2,75,187,.16);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

h1 { font-size: clamp(36px, 5vw, 58px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

p { line-height: 1.65; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section   { padding: 88px 0; }
.section--alt { background: var(--off); }
.section--dark { background: var(--navy); }

.sec-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--royal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .22s;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,122,54,.35);
}
.btn-primary:hover { background: #155e2a; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(26,122,54,.45); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--royal); color: var(--royal); }

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-sm svg { width: 15px; height: 15px; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-icon {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* footer (fundal inchis) — text wordmark alb */
.footer__brand .nav__logo-icon { height: 52px; }
.footer__brand .nav__logo-text span:first-child { color: #fff; }
.footer__brand .nav__logo-text span:last-child { color: #9fb0d6; }

.nav__logo-text span:first-child {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}

.nav__logo-text span:last-child {
  font-size: 10px;
  color: var(--lgray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active { color: var(--royal); }

.nav__cta { display: flex; gap: 10px; align-items: center; }

.nav__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.nav__phone svg { width: 15px; height: 15px; color: var(--green); }
.nav__phone:hover { color: var(--royal); }

/* Hamburger */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all .25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}

.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.open { display: flex; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--royal), var(--green));
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero__left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,146,10,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,10,.15);
  border: 1px solid rgba(200,146,10,.3);
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero__badge span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.hero h1 em { color: var(--gold); font-style: normal; }

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 480px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__trust-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__trust-icon svg { width: 16px; height: 16px; color: var(--gold); }

.hero__trust-text strong {
  font-size: 13px;
  color: #fff;
  display: block;
  font-weight: 600;
}

.hero__trust-text span { font-size: 11px; color: rgba(255,255,255,.55); }

.hero__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2a5e 0%, #0d1f4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__right::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--navy), transparent);
  z-index: 1;
}

.hero__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px;
  text-align: center;
  color: rgba(255,255,255,.4);
}

.hero__placeholder svg { width: 64px; height: 64px; opacity: .3; }
.hero__placeholder p { font-size: 13px; line-height: 1.5; max-width: 200px; }

/* Float cards */
.hero__float {
  position: absolute;
  bottom: 32px; left: 20px;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}

.hero__float2 {
  position: absolute;
  top: 32px; right: 20px;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon--green { background: var(--green-l); }
.float-icon--gold  { background: var(--gold-l); }
.float-icon--green svg { color: var(--green); width: 20px; height: 20px; }
.float-icon--gold  svg { color: var(--gold);  width: 20px; height: 20px; }

.float-text strong { font-size: 13px; color: var(--navy); display: block; font-weight: 600; }
.float-text span   { font-size: 11px; color: var(--lgray); }

/* ── SERVICE CARDS ──────────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  cursor: pointer;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--royal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.srv-card:hover {
  border-color: var(--royal);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(21,70,168,.1);
}

.srv-card:hover::after { transform: scaleX(1); }

.srv-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.srv-icon svg { width: 24px; height: 24px; color: var(--royal); }

.srv-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.srv-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--royal);
  margin-top: 14px;
}

.srv-link svg { width: 13px; height: 13px; transition: transform .2s; }
.srv-card:hover .srv-link svg { transform: translateX(3px); }

/* ── STEPS ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 16%; right: 16%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-sans);
}

.step-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── USP GRID ───────────────────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.usp-list { display: flex; flex-direction: column; gap: 20px; }

.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: box-shadow .2s;
}

.usp-item:hover { box-shadow: var(--shadow-sm); }

.usp-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-item-icon svg { width: 22px; height: 22px; color: var(--royal); }

.usp-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.usp-item p { font-size: 13px; color: var(--gray); line-height: 1.55; }

.usp-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-l);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.usp-image img { width: 100%; height: 100%; object-fit: cover; }

.usp-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--lgray);
  padding: 40px;
  text-align: center;
}

.usp-image-placeholder svg { width: 48px; height: 48px; opacity: .4; }
.usp-image-placeholder p { font-size: 13px; line-height: 1.5; }

/* ── ZONE ───────────────────────────────────────────────── */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zone-list { display: flex; flex-direction: column; gap: 12px; }

.zone-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all .2s;
}

.zone-item:hover { border-color: var(--royal); transform: translateX(4px); }

.zone-item-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.zone-item span { font-size: 14px; font-weight: 500; color: var(--navy); }

.zone-item small {
  margin-left: auto;
  font-size: 12px;
  color: var(--lgray);
}

.zone-map-placeholder {
  background: var(--navy-l);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  border: 2px dashed var(--border);
}

.zone-map-placeholder svg { width: 48px; height: 48px; color: var(--royal); opacity: .5; }
.zone-map-placeholder p { font-size: 13px; text-align: center; max-width: 200px; line-height: 1.5; }

/* ── TEAM ───────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .25s;
}

.team-card:hover { box-shadow: var(--shadow-md); }

.team-photo {
  height: 220px;
  background: var(--navy-l);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.team-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--lgray);
}

.team-photo-placeholder svg { width: 40px; height: 40px; opacity: .4; }
.team-photo-placeholder span { font-size: 12px; }

.team-info { padding: 20px; }
.team-info strong { font-size: 16px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 3px; }
.team-info .role { font-size: 12px; color: var(--royal); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.team-info p { font-size: 13px; color: var(--gray); line-height: 1.55; }
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  background: var(--green-l);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ── TRUST / SAFETY ─────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
}

.trust-item-icon {
  width: 48px; height: 48px;
  background: var(--navy-l);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.trust-item-icon svg { width: 24px; height: 24px; color: var(--royal); }
.trust-item strong { font-size: 14px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.trust-item p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testi-card blockquote { font-size: 14px; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  flex-shrink: 0;
}

.testi-name strong { font-size: 13px; font-weight: 600; color: var(--navy); display: block; }
.testi-name span { font-size: 11px; color: var(--lgray); }

/* ── PRICES ─────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow .25s;
}

.price-card:hover { box-shadow: var(--shadow-md); }
.price-card--featured {
  border-color: var(--royal);
  background: var(--navy-l);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--royal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy-l); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.price-icon svg { width: 22px; height: 22px; color: var(--royal); }
.price-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: var(--font-sans); }
.price-amount { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.price-amount small { font-size: 14px; color: var(--gray); font-family: var(--font-sans); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--gray); line-height: 1.55; margin-bottom: 16px; }
.price-includes { display: flex; flex-direction: column; gap: 6px; }
.price-inc-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray); }
.price-inc-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 12px;
  transition: background .2s;
}

.faq-question:hover { background: var(--off); }
.faq-question.active { background: var(--navy-l); }

.faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── CONTACT SECTION ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s;
}

.contact-item:hover { background: rgba(255,255,255,.12); }

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon--green { background: var(--green-l); }
.contact-icon--green svg { color: var(--green); width: 22px; height: 22px; }
.contact-icon--wa { background: rgba(37,211,102,.15); }
.contact-icon--wa svg { color: #25D366; width: 22px; height: 22px; }
.contact-icon--mail { background: var(--gold-l); }
.contact-icon--mail svg { color: var(--gold); width: 22px; height: 22px; }
.contact-icon--loc { background: var(--navy-l); }
.contact-icon--loc svg { color: var(--royal); width: 22px; height: 22px; }

.contact-text strong { font-size: 15px; color: #fff; font-weight: 600; display: block; }
.contact-text span   { font-size: 12px; color: rgba(255,255,255,.55); }

.contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 32px;
}

.contact-form h3 {
  font-size: 20px;
  color: #fff;
  font-family: var(--font-serif);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,255,255,.4); }

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy); color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #040e26;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__col ul a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer__bottom a { font-size: 12px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer__bottom a:hover { color: rgba(255,255,255,.8); }

/* ── STICKY BUTTONS ─────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.sticky-wa {
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all .25s;
  white-space: nowrap;
}

.sticky-wa:hover { background: #1da851; transform: translateY(-2px); }
.sticky-wa svg { width: 22px; height: 22px; flex-shrink: 0; }

.sticky-call {
  background: var(--royal);
  color: #fff;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(21,70,168,.4);
  transition: all .25s;
}

.sticky-call:hover { background: var(--navy); transform: translateY(-2px); }
.sticky-call svg { width: 22px; height: 22px; }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off);
}

.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a { font-size: 13px; color: var(--lgray); transition: color .2s; }
.breadcrumb a:hover { color: var(--royal); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--lgray); }
.breadcrumb span { font-size: 13px; color: var(--text); font-weight: 500; }

/* ── PAGE HERO (servicii) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--royal), var(--green));
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,10,.15);
  border: 1px solid rgba(200,146,10,.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.page-hero__badge span { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.page-hero h1 {
  color: #fff;
  margin-bottom: 18px;
  max-width: 680px;
}

.page-hero h1 em { color: var(--gold); font-style: normal; }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.page-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}

.page-hero__stat strong {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.page-hero__stat span { font-size: 13px; color: rgba(255,255,255,.6); }

/* ── CONTENT SECTIONS ───────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.content-body h2 {
  font-size: 26px;
  margin-bottom: 14px;
  margin-top: 36px;
}

.content-body h2:first-child { margin-top: 0; }

.content-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.content-body p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }

.content-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.content-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 8px;
}

.sidebar-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.sidebar-card h3 { font-size: 18px; margin-bottom: 20px; font-family: var(--font-serif); }

.sidebar-price {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
}

.sidebar-price span { font-size: 12px; color: var(--lgray); display: block; margin-bottom: 2px; }
.sidebar-price strong { font-family: var(--font-serif); font-size: 24px; color: var(--navy); }
.sidebar-price small { font-size: 13px; color: var(--gray); }

.sidebar-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.sidebar-info { margin-top: 20px; }
.sidebar-info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-info-item:last-child { border-bottom: none; }
.sidebar-info-item svg { width: 15px; height: 15px; color: var(--royal); flex-shrink: 0; }

/* ── NOTICE BOX ─────────────────────────────────────────── */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
}

.notice--blue { background: var(--navy-l); border-left: 4px solid var(--royal); }
.notice--green { background: var(--green-l); border-left: 4px solid var(--green); }
.notice--gold  { background: var(--gold-l);  border-left: 4px solid var(--gold); }
.notice--red   { background: #fef0ef; border-left: 4px solid var(--red); }

.notice svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.notice--blue svg { color: var(--royal); }
.notice--green svg { color: var(--green); }
.notice--gold  svg { color: var(--gold); }
.notice--red   svg { color: var(--red); }

.notice p { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ── LEGAL PAGE ─────────────────────────────────────────── */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-body h2 { font-size: 22px; margin-bottom: 12px; margin-top: 40px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.legal-body ul li { font-size: 15px; color: var(--gray); line-height: 1.6; margin-bottom: 6px; }
.legal-body strong { color: var(--navy); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav__inner { padding: 0 32px; }
  .breadcrumb__inner { padding: 0 32px; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .breadcrumb__inner { padding: 0 20px; }
  .section { padding: 60px 0; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: block; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { height: 280px; }
  .hero__left { padding: 56px 20px 48px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { justify-content: center; }

  .usp-grid { grid-template-columns: 1fr; gap: 40px; }
  .usp-image { aspect-ratio: 16/9; }
  .zone-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .page-hero__stats { gap: 24px; }
}

@media (max-width: 480px) {
  .sticky-wa span { display: none; }
  .sticky-wa { padding: 14px; border-radius: 50%; }
}

/* nota de conformitate (Decizia CMR 21/2026, OAMGMAMR, Legea 148/2000) */
.footer__legal-note { font-size: 12px; line-height: 1.5; max-width: 680px; margin: 0 0 14px; opacity: .72; }

/* consimțământ formular (conform cap. 4.12, protecția datelor) */
.form-consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 16px; font-size: 13px; color: var(--gray); line-height: 1.5; }
.form-consent input { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; }
.form-consent a { color: var(--navy); text-decoration: underline; }
