/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2e5a;
  --navy-light: #243a6e;
  --orange: #e8623a;
  --orange-light: #f0784e;
  --bg: #edf3f9;
  --bg-white: #ffffff;
  --text: #1a1f2e;
  --text-muted: #5a6072;
  --text-light: #8a90a0;
  --border: #dde3ec;
  --shadow: 0 2px 16px rgba(26,46,90,0.07);
  --shadow-md: 0 4px 28px rgba(26,46,90,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===== NAVBAR ===== */
.navbar {
  height: 72px;
}

.nav-inner {
  max-width: 1180px;

  margin: 0 auto;

  height: 72px;

  padding: 0 40px;

  display: flex;
  align-items: center;

  gap: 42px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--orange-light);
  flex-shrink: 0;
}

/* navbar logo — NO glow, ca in PDF */
.logo img {
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: flex-end; /* ← schimbat din center */
  margin-right: 20px; /* ← adaugă asta */
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s;
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.btn-outline {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--orange);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-outline:hover {
  background: var(--orange);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 40px 20px;
  gap: 14px;
  border-top: 1px solid var(--border);
  background: white;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-menu .btn-outline { align-self: flex-start; margin-top: 4px; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);

  background:
    radial-gradient(circle at 78% 48%,
      rgba(232,98,58,0.18) 0%,
      rgba(232,98,58,0.10) 18%,
      rgba(232,98,58,0.04) 36%,
      transparent 60%
    ),
    linear-gradient(
      135deg,
      #eef3f9 0%,
      #e7eef7 35%,
      #dbe5f1 100%
    );

  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;

  width: 900px;
  height: 900px;

  right: -220px;
  top: 50%;

  transform: translateY(-50%);

  background:
    radial-gradient(circle,
      rgba(232,98,58,0.18) 0%,
      rgba(232,98,58,0.10) 20%,
      rgba(232,98,58,0.04) 45%,
      transparent 72%
    );

  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;

  padding: 90px 40px 70px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  gap: 20px;
  align-items: center;

  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  width: fit-content; /* ← adaugă asta */
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(232,98,58,0.22);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* h1 — font potrivit, "specializate pentru profesionisti" pe aceeasi linie */
.hero-content h1 {
  font-size: clamp(32px, 3.5vw, 48px); /* în loc de clamp(56px, 5vw, 74px) */
  letter-spacing: -1.5px; /* în loc de -2.8px */
   line-height: 1.1;
}

/* "specializate" — gradient portocaliu ca in referinta */
.accent {
  position: relative;

  background: linear-gradient(
    180deg,
    #ff8b5d 0%,
    #f26d3d 45%,
    #de582d 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  display: inline-block;
}
.accent::after {
  content: 'specializate';

  position: absolute;
  left: 0;
  top: 0;

  z-index: -1;

  color: rgba(232,98,58,0.35);

  filter: blur(16px);

  transform: translateY(6px);

  pointer-events: none;
}

.accent::before { display: none; }

.hero-desc {
  font-size: 16px;

  line-height: 1.8;

  color: #5e687d;

  max-width: 520px;

  margin-bottom: 38px;

  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(
    180deg,
    #f47b4f 0%,
    #e8623a 100%
  );

  color: white;

  padding: 16px 28px;

  border-radius: 12px;

  font-size: 15px;
  font-weight: 700;

  font-family: 'Sora', sans-serif;

  box-shadow:
    0 10px 30px rgba(232,98,58,0.28),
    inset 0 1px 0 rgba(255,255,255,0.2);

  transition: all .25s ease;
}


.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,98,58,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 12px;
  background: transparent; /* ← schimbat */
  border: 1px solid rgba(26,46,90,0.3); /* ← border mai vizibil */
  color: #243760;
  font-size: 15px;
  font-weight: 600;
  transition: all .25s ease;
}

.btn-ghost:hover {
  background: white;
  border-color: var(--navy);
}

.hero-stats {
  display: flex;
  gap: 44px;

  margin-top: 8px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.stat-num {
  display: block;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: #eb693e;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero visual — fara drop-shadow propriu, glow vine din ::before */
.hero-visual {
  transform: translateX(0px); /* în loc de 40px */
}
.hero-visual img {
  width: 460px;
  height: 460px;
}

/* ===== DESPRE ===== */
.despre {
  background: #f0f5fa;
  padding: 90px 0;
}

.despre .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.despre-left h2 {
  font-size: clamp(20px, 2.5vw, 26px); /* ← micșorat */
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.despre-left p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.despre-tags {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: nowrap;
}

.tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: #fafdff; /* ← adaugă */
  border: 1px solid var(--border); /* ← adaugă */
  border-radius: 8px; /* ← adaugă */
  padding: 10px 16px; /* ← adaugă */
}

.tag-icon { color: var(--orange); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: #f5faff; /* ← schimbat din var(--bg) */
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border); /* ← adaugă border */
}

.stat-card:hover { box-shadow: var(--shadow-md); }

.stat-big {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== PORTOFOLIU ===== */

.portofoliu {
  background: linear-gradient(180deg, #e8f0f8 0%, #dde8f2 100%);
  padding: 90px 0;
}

.portofoliu h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 10px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.porto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.porto-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  border: 1px solid var(--border);
}

.porto-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.porto-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,98,58,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.porto-card h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 12px;
}

.porto-card ul li {
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.5;
}

.porto-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
  top: 1px;
}

.porto-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.porto-note a { color: var(--orange); font-weight: 600; }
.porto-note a:hover { text-decoration: underline; }

/* ===== SERVICII ===== */
.servicii {
  background: #e6f0f5;
  padding: 90px 0;
}


.servicii h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--navy);
  background: none;
  -webkit-text-fill-color: var(--navy);
  margin-bottom: 10px;
  /* white-space: nowrap; ← șterge această linie */
}

.servicii-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.servicii-card {
  background: white; /* ← schimbat din var(--bg) */
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all 0.25s;
  border: 1px solid var(--border);
}

.servicii-card:hover {
  background: white;
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.serv-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,98,58,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.servicii-card h3 {
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.servicii-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* AVANTAJE — albastru deschis */
.avantaje {
  background: #e6f5f5;
  padding: 90px 0 50px;
}

.avantaje h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 36px;
}

.avantaje-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.avantaj-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.avantaj-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.avantaj-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,98,58,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.avantaj-card h4 {
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 7px;
  font-weight: 700;
}

.avantaj-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROCES ===== */
.proces {
  background: #f0f5fa;
  padding: 50px 0 90px;
}


.proces h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 48px;
}

.proces-steps {
  display: flex;
  align-items: flex-start;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-width: 0;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.step-content {
  width: 100%; /* ← ocupă toată lățimea disponibilă */
}


.step-content p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto;
}

.step-connector {
  flex: 0 0 auto;
  height: 0.15px;
  width: 175px;
  background: var(--orange);
  margin-top: 20px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, #d8e4f2 0%, #e2ecf6 100%);
  padding: 90px 0;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(20px, 2.5vw, 28px); /* ← micșorat */
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
  white-space: nowrap; /* ← forțează un singur rând */
}

.contact-left > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.7);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,98,58,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
}

.contact-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.optional {
  color: var(--text-light);
  font-weight: 400;
  font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6072' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #f5faff !important; /* ← !important forțează culoarea mereu */
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.btn-submit {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(232,98,58,0.3);
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,98,58,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: #0f1e3d;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0;
}

.footer-logo img {
  width: 80px; /* ← mărit */
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(232,98,58,0.45));
}
.footer-left p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  line-height: 1.6;
}

.footer-right img {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 1100px) {
  .hero-visual img {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 900px) {
  .nav-links, .btn-outline { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }

  .hero::before { right: 50%; transform: translate(50%, -50%); }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-badge { justify-content: center; display: flex; width: fit-content; margin: 0 auto 24px; }
  .hero-visual { order: -1; display: flex; justify-content: center; }
  .hero-visual img { width: 300px; height: 300px; }

  .despre .container,
  .contact .container { grid-template-columns: 1fr; gap: 40px; }

  .porto-grid,
  .servicii-grid { grid-template-columns: 1fr 1fr; }

  .avantaje-grid { grid-template-columns: 1fr 1fr; }

  .proces-steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { width: 2px; height: 30px; background: var(--orange); margin: 0; }

  .despre-tags { flex-wrap: wrap; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .mobile-menu { padding: 16px 24px 20px; }

  .footer-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .footer-bottom { padding: 14px 24px; flex-direction: column; gap: 6px; }

  .contact-left h2 { white-space: normal; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 28px; }

  .porto-grid,
  .servicii-grid,
  .avantaje-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .contact-form { padding: 24px 20px; }

  .contact .container { gap: 24px; }

  .hero-stats { gap: 20px; }

  .despre .container { gap: 24px; }

  .footer-logo img { width: 100px !important; height: 100px !important; }

  .step-content p,
  .step-content h4 { max-width: 100%; }
}