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

:root {
  --navy:   #0E1F3F;
  --navy-dk:#060F1E;
  --teal:   #00D1C1;
  --orange: #E87722;
  --offwhite: #F4F6F9;
  --white:  #FFFFFF;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --transition: 0.25s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: #1A2A4A;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utilitar: offset pentru pagini cu navbar fixed fără hero (ex. formular.html) */
.page-body { padding-top: 90px !important; }

/* ─── Utility text ─── */
.text-white  { color: var(--white); }
.text-teal   { color: var(--teal); }

/* ─── Section label ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-label.dark { color: var(--teal); }

/* ─── Section headings ─── */
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}
.section-h2.text-white { color: var(--white); }

.section-sub {
  margin-top: 12px;
  font-size: 18px;
  color: #5A6E8A;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #cf6510;
  border-color: #cf6510;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,119,34,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  font-weight: 400;
}
.btn-teal:hover {
  background: #00b8aa;
  border-color: #00b8aa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,209,193,0.3);
}

.btn-large {
  font-size: 17px;
  padding: 18px 40px;
}

/* ─── Pill ─── */
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(0,209,193,0.12);
  border: 1px solid rgba(0,209,193,0.35);
  color: var(--teal);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* ─── Badges ─── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.badge--green  { background: rgba(0,209,193,0.15); color: var(--teal); }
.badge--orange { background: rgba(232,119,34,0.15); color: var(--orange); }
.badge--teal   { background: rgba(0,209,193,0.15); color: var(--teal); }
.badge--blue   { background: rgba(37,99,235,0.12); color: #2563EB; }

/* ─── Link teal ─── */
.link-teal {
  color: var(--teal);
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(0,209,193,0.35);
  padding-bottom: 2px;
  transition: var(--transition);
  margin-top: 8px;
}
.link-teal:hover {
  border-color: var(--teal);
  gap: 8px;
}


/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  background: transparent;
  mix-blend-mode: screen;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

/* Nav CTA */
.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  padding: 68px 0 100px;
  margin: 0;
  overflow: hidden;
}

/* Subtle grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,209,193,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,209,193,0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Decorative circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-circle--1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(0,209,193,0.08) 0%, transparent 70%);
}
.hero-circle--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(232,119,34,0.07) 0%, transparent 70%);
}

.hero-inner { position: relative; z-index: 1; }

/* 2-column layout */
.hero-cols {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 72px;
}

.hero-content { max-width: 580px; padding-top: 40px; }

.hero-h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-h1--dim   { color: rgba(255,255,255,0.30); }
.hero-h1--teal  { color: var(--teal); }
.hero-h1--nowrap { white-space: nowrap; }

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 640px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── Hero visual (icon.png) ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-left: -40px;
}

.hero-icon-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: screen;
  opacity: 0.90;
  filter: drop-shadow(0 0 40px rgba(0,209,193,0.25));
  mask-image: radial-gradient(ellipse 75% 80% at 55% 50%, black 30%, rgba(0,0,0,0.5) 55%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 55% 50%, black 30%, rgba(0,0,0,0.5) 55%, transparent 80%);
}


/* ═══════════════════════════════════════════
   PROVOCĂRI
═══════════════════════════════════════════ */
.provocari {
  background: var(--navy);
  padding: 100px 0 80px;
}

.provocari-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.provocari-left .sticky-title {
  position: sticky;
  top: 100px;
  font-size: 42px;
  color: var(--white);
}

.prov-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.prov-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.prov-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  padding-top: 3px;
}

.prov-body {
  border-left: 3px solid rgba(0,209,193,0.3);
  padding-left: 20px;
  transition: border-color var(--transition);
}
.prov-item:hover .prov-body {
  border-left-color: var(--teal);
}

.prov-question {
  font-size: 16px;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 10px;
  line-height: 1.5;
}

.prov-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}
.prov-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   PRINCIPII + STUDIU DE CAZ
═══════════════════════════════════════════ */
.principii {
  background: var(--white);
  padding: 80px 0 100px;
}

.principii-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.principii-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 28px;
}
.principii-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #00D1C1;
}
.principii-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.principii-list p {
  font-size: 14px;
  color: #5A6E8A;
  line-height: 1.6;
}

/* Case card */
.case-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,209,193,0.15);
  color: var(--teal);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.case-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}
.case-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.case-stat { display: flex; flex-direction: column; gap: 4px; }
.case-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--teal);
}
.case-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}


/* ═══════════════════════════════════════════
   DIN PRACTICĂ
═══════════════════════════════════════════ */
.din-practica {
  background: #F4F6F9;
  padding: 100px 0;
}

.din-practica-header {
  margin-bottom: 56px;
}

.din-practica-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.dp-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.dp-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.dp-icon--teal   { color: var(--teal); }
.dp-icon--orange { color: var(--orange); }

.dp-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.dp-pill--teal   { background: rgba(0,209,193,0.12);  color: var(--teal); }
.dp-pill--orange { background: rgba(232,119,34,0.12); color: var(--orange); }

.dp-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.dp-card p {
  font-size: 14px;
  color: #5A6E8A;
  line-height: 1.75;
  flex: 1;
}

.dp-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: gap var(--transition), border-color var(--transition);
  margin-top: 4px;
}
.dp-link--teal   { color: var(--teal);   border-color: rgba(0,209,193,0.4); }
.dp-link--orange { color: var(--orange); border-color: rgba(232,119,34,0.4); }
.dp-link:hover { gap: 8px; border-color: currentColor; }

.dp-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: #8898AA;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-radial {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at bottom center, rgba(0,209,193,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

.cta-h2 {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 16px;
}

.cta-micro {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 20px 48px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta:hover {
  background: #cf6510;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,119,34,0.40);
}

.cta-note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #060F1E;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px;
}

/* Col 1 — Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.40);
  transition: color var(--transition);
}
.footer-social-link:hover { color: var(--teal); }
.footer-social-link i,
.footer-social-link svg { width: 20px; height: 20px; }

/* Col 2-3 — Nav */
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--white); }

/* Col 4 — CTA */
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-cta-btn {
  padding: 10px 20px;
  font-size: 14px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--teal); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.20);
}


/* ═══════════════════════════════════════════
   CUM FUNCȚIONEAZĂ
═══════════════════════════════════════════ */
.cum-functioneaza {
  position: relative;
  padding: 14px 0 0;
  overflow: hidden;
}

.cfz-bg-radial {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at top right, rgba(0,209,193,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cfz-inner { position: relative; z-index: 1; }

.cfz-header {
  margin-bottom: 56px;
}

.cfz-label {
  color: #CC5500;
}

.cfz-motto {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.cfz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cfz-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid transparent;
  border-radius: 16px;
  padding: 40px 32px;
  transition: background var(--transition), border-top-color var(--transition);
}
.cfz-card:hover {
  border-top-color: var(--teal);
  background: rgba(255,255,255,0.09);
}

.cfz-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: #00D1C1;
  display: block;
  flex-shrink: 0;
}

.cfz-deco-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cfz-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cfz-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.cfz-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════
   SERVICII
═══════════════════════════════════════════ */
.servicii {
  background: var(--offwhite);
  padding: 100px 0;
}

.servicii-header {
  margin-bottom: 56px;
}
.servicii-header .section-sub {
  margin-top: 14px;
  color: #5A6E8A;
  line-height: 1.65;
}

.servicii-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.servicii-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border-top: 3px solid transparent;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.servicii-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.servicii-card--teal  { border-top-color: #00D1C1; }
.servicii-card--orange { border-top-color: #E87722; }

.servicii-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.servicii-icon i,
.servicii-icon svg { width: 32px; height: 32px; color: #00D1C1; }
.servicii-icon--teal   { background: rgba(0,209,193,0.08); }
.servicii-icon--orange { background: rgba(232,119,34,0.08); }
.servicii-icon--orange i,
.servicii-icon--orange svg { color: #E87722; }

.servicii-icon--lg { width: 56px; height: 56px; border-radius: 12px; }
.servicii-icon--lg i,
.servicii-icon--lg svg { width: 48px; height: 48px; }

.servicii-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.servicii-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.servicii-card-title {
  font-size: 24px !important;
  font-weight: 900 !important;
  margin-bottom: 0;
}
.servicii-card-subtitle {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.65;
  line-height: 1.35;
  margin-bottom: 4px;
}
.servicii-card p {
  font-size: 14px;
  color: #5A6E8A;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Navbar */
  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
  }

  /* Hero */
  .hero { padding: calc(72px + 48px) 0 72px; }
  .hero-cols {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .hero-h1 { font-size: 34px; line-height: 1.15; }
  .hero-sub { font-size: 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-h1--nowrap { white-space: normal; }
  .hero-circle--1, .hero-circle--2 { display: none; }
  .btn { white-space: normal; text-align: center; padding: 16px 20px; font-size: 15px; }
  .btn-large { padding: 18px 20px; }
  body { overflow-x: hidden; }

  /* Din practică */
  .din-practica-grid { grid-template-columns: 1fr; }

  /* Servicii */
  .servicii-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Cum funcționează */
  .cfz-grid { grid-template-columns: 1fr 1fr; }

  /* Provocări */
  .provocari-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .provocari-left .sticky-title { position: static; }

  /* Principii */
  .principii-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* CTA */
  .cta-final { padding: 80px 0; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 24px;
  }
  .footer-bottom { padding: 20px 24px; }
}

@media (max-width: 480px) {
  .cfz-grid { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}
