*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #1a6b4a;
    --green-dark: #0e4530;
    --green-light: #e8f5ee;
    --green-mid: #2d9162;
    --yellow: #f5c842;
    --yellow-dark: #c9a020;
    --white: #fafaf7;
    --off: #f0ede6;
    --gray: #6b6860;
    --dark: #1a1a18;
    --serif: 'Lora', Georgia, serif;
    --cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--dark);
    font-family: var(--serif);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem;
    height: 56px;
  }
  .nav-logo {
    font-family: var(--cond);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .nav-badge {
    background: var(--yellow);
    color: var(--green-dark);
    font-family: var(--cond);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: var(--cond);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--yellow); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--green-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 56px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 70%; height: 120%;
    background: var(--green);
    transform: skewX(-8deg);
    z-index: 0;
  }
  .hero-text {
    position: relative; z-index: 2;
    padding: 5rem 3rem 4rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-eyebrow {
    font-family: var(--cond);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
  }
  .hero-h1 {
    font-family: var(--cond);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
  }
  .hero-h1 em {
    color: var(--yellow);
    font-style: normal;
    display: block;
  }
  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
  }
  .hero-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.8s;
  }
  .btn-primary {
    background: var(--yellow);
    color: var(--green-dark);
    font-family: var(--cond);
    font-size: 1rem;
    font-weight: 800;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #ffd84a; transform: translateY(-2px); }
  .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    font-family: var(--cond);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

  .hero-right {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 4rem 3rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
  }
  .hero-stat-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 2rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(4px);
  }
  .stat-big {
    font-family: var(--cond);
    font-size: 6rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-family: var(--cond);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }
  .stat-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.6rem;
    font-style: italic;
  }
  .hero-pills {
    display: flex; flex-direction: column; gap: 0.75rem;
    margin-top: 1.5rem; width: 100%;
  }
  .pill {
    background: rgba(255,255,255,0.07);
    border-left: 3px solid var(--yellow);
    padding: 10px 16px;
    font-family: var(--cond);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.04em;
    border-radius: 0 4px 4px 0;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ── STRIP ── */
  .strip {
    background: var(--yellow);
    padding: 1rem 2rem;
    display: flex; justify-content: center; align-items: center; gap: 3rem;
    flex-wrap: wrap;
  }
  .strip-item {
    font-family: var(--cond);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 8px;
  }
  .strip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-dark); }

  /* ── SECTIONS ── */
  section { padding: 5rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-family: var(--cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: var(--cond);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  .section-title em { color: var(--green); font-style: normal; }

  /* ── SERVICII ── */
  #servicii { background: var(--off); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    background: var(--dark);
    border: 1.5px solid var(--dark);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 3rem;
  }
  .service-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    transition: background 0.25s;
    position: relative;
  }
  .service-card:hover { background: var(--green-dark); }
  .service-card:hover .sc-title,
  .service-card:hover .sc-list li { color: var(--white); }
  .service-card:hover .sc-icon { background: var(--yellow); color: var(--green-dark); }
  .service-card:hover .sc-desc { color: rgba(255,255,255,0.7); }
  .sc-icon {
    width: 48px; height: 48px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: background 0.25s, color 0.25s;
  }
  .sc-title {
    font-family: var(--cond);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dark);
    margin-bottom: 0.75rem;
    transition: color 0.25s;
  }
  .sc-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: color 0.25s;
  }
  .sc-list { list-style: none; }
  .sc-list li {
    font-family: var(--cond);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    padding: 3px 0;
    letter-spacing: 0.03em;
    transition: color 0.25s;
  }
  .sc-list li::before { content: '→ '; color: var(--green); }
  .service-card:hover .sc-list li::before { color: var(--yellow); }

  /* ── DE CE NOI ── */
  #diferentiatori { background: var(--green-dark); }
  #diferentiatori .section-label { color: var(--yellow); }
  #diferentiatori .section-title { color: var(--white); }
  #diferentiatori .section-title em { color: var(--yellow); }
  .diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .diff-card {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
  }
  .diff-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
  .diff-number {
    font-family: var(--cond);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 0.5rem; right: 1rem;
    line-height: 1;
    pointer-events: none;
  }
  .diff-title {
    font-family: var(--cond);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--yellow);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
  }
  .diff-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }

  /* ── GALERIE ── */
  #galerie { background: var(--white); }
  .gallery-intro {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    max-width: 540px;
    margin-bottom: 3rem;
    line-height: 1.7;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: var(--off);
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8f0eb 0%, #d4e4d9 100%);
    position: relative;
    overflow: hidden;
  }
  .gallery-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent, transparent 20px,
      rgba(255,255,255,0.3) 20px, rgba(255,255,255,0.3) 21px
    );
  }
  .gallery-label {
    font-family: var(--cond);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative; z-index: 1;
    background: rgba(255,255,255,0.7);
    padding: 4px 12px;
    border-radius: 2px;
  }
  .gallery-icon { font-size: 2.5rem; position: relative; z-index: 1; opacity: 0.5; }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: var(--green-dark);
    opacity: 0;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-overlay { opacity: 0.85; }
  .gallery-overlay span {
    font-family: var(--cond);
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .gallery-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
  }

  /* ── TESTIMONIALE ── */
  #testimoniale { background: var(--off); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .testi-card {
    background: var(--white);
    border-radius: 6px;
    padding: 1.75rem;
    border-left: 4px solid var(--green);
    position: relative;
  }
  .testi-stars {
    color: var(--yellow-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
  }
  .testi-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 1rem;
  }
  .testi-name {
    font-family: var(--cond);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .testi-loc { font-size: 0.8rem; color: var(--gray); }

  /* ── URGENTA ── */
  #urgenta {
    background: var(--yellow);
    padding: 4rem 2rem;
    text-align: center;
  }
  .urgenta-title {
    font-family: var(--cond);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--green-dark);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }
  .urgenta-sub {
    font-size: 1.1rem;
    color: var(--green-dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-style: italic;
  }
  .urgenta-phone {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--green-dark);
    color: var(--yellow);
    font-family: var(--cond);
    font-size: 2rem;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: transform 0.2s, background 0.2s;
    margin-bottom: 1.5rem;
    display: inline-flex;
  }
  .urgenta-phone:hover { transform: scale(1.03); background: var(--green); }
  .urgenta-note {
    font-family: var(--cond);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 0.08em;
    opacity: 0.7;
    text-transform: uppercase;
  }

  /* ── CONTACT ── */
  #contact { background: var(--dark); }
  #contact .section-label { color: var(--yellow); }
  #contact .section-title { color: var(--white); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }
  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-row {
    display: flex; align-items: flex-start; gap: 1rem;
  }
  .contact-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--green);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .contact-label {
    font-family: var(--cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2px;
  }
  .contact-value {
    font-family: var(--cond);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
  }
  .contact-value a { color: var(--yellow); text-decoration: none; }

  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label {
    font-family: var(--cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .form-input, .form-textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--yellow); }
  .form-textarea { resize: vertical; min-height: 100px; }
  .btn-form {
    background: var(--yellow);
    color: var(--green-dark);
    font-family: var(--cond);
    font-size: 1rem;
    font-weight: 800;
    padding: 14px;
    border: none;
    border-radius: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.5rem;
  }
  .btn-form:hover { background: #ffd84a; transform: translateY(-2px); }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 200;
    display: flex; align-items: center; gap: 10px;
    background: #25D366;
    color: white;
    font-family: var(--cond);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.04em;
  }
  .wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
  .wa-icon { font-size: 1.3rem; }

/* ── COOKIE CONSENT BAR ── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
  font-family: var(--serif);
  font-size: 0.9rem;
}
.cookie-consent p {
  margin: 0;
  flex: 1;
}
.cookie-consent p a {
  color: var(--yellow);
  text-decoration: underline;
}
.cookie-accept {
  background: var(--yellow);
  color: var(--green-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--cond);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s;
  margin-left: 1rem;
}
.cookie-accept:hover {
  background: #ffd84a;
}

  /* ── FOOTER ── */
  footer {
    background: #111110;
    padding: 2rem;
    text-align: center;
  }
  .footer-logo {
    font-family: var(--cond);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }
  .footer-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }
    .hero::before { display: none; }
    .hero-text { padding: 3rem 1.5rem 2rem; }
    .hero-right { padding: 2rem 1.5rem 3rem; }
    .nav-links { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-column: span 2; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    section { padding: 3.5rem 1.25rem; }
  }