:root {
  --bg:      #080f1f;
  --bg2:     #0d1a2e;
  --bg3:     #101e35;
  --card:    rgba(13,26,46,0.9);
  --orange:  #F15A14;
  --orange-btn: #C2440C;
  --orange2: #F57A3A;
  --white:   #f1f5f9;
  --muted:   #94a3b8;
  --border:  rgba(255,255,255,0.08);
  --green:   #0D8009;
  --grad: linear-gradient(90deg, #4a9eff, #00d4ff, #00e87a, #ffe500, #F15A14, #ff3a3a);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
h1,h2,h3,h4,h5 { font-family:'Syne',sans-serif; line-height:1.1; }

/* GRADIENT TEXT */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* GRADIENT LINE */
.grad-line {
  height: 2px;
  background: var(--grad);
  border: none;
  margin: 1rem 0;
}

/* LOGO */
.logo {
  font-family:'Syne',sans-serif; font-size:1.4rem; font-weight:800;
  text-decoration:none; letter-spacing:-0.5px;
}
.logo .l-white { color: var(--white); -webkit-text-fill-color: var(--white); }
.logo .l-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-img {
  display:flex; align-items:center; gap:0.6rem;
  text-decoration:none;
}
.logo-img span {
  font-family:'Syne',sans-serif; font-size:1.4rem; font-weight:800;
  letter-spacing:-0.5px;
}
.logo-img .l-white { color: var(--white); -webkit-text-fill-color: var(--white); }
.logo-img .l-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* NAV */
#mainNav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  background: rgba(8,15,31,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display:flex; align-items:center; justify-content:space-between;
  height:68px;
  transition: box-shadow 0.3s;
}
.nav-links { display:flex; gap:2rem; list-style:none; }
.nav-links a {
  text-decoration:none; color:var(--muted);
  font-size:0.9rem; font-weight:500; transition:color 0.2s;
}
.nav-links a:hover { color:var(--white); }
.nav-cta {
  background: var(--orange-btn) !important;
  color: var(--white) !important;
  padding:0.55rem 1.4rem; border-radius:50px;
  font-weight:700 !important;
  box-shadow: 0 0 20px rgba(241,90,20,0.35);
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity:0.85; }

/* HAMBURGER */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; padding:4px; z-index:300;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--white); border-radius:2px; transition:all 0.3s;
}
.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); }
.mobile-menu {
  display:none; position:fixed; inset:0; z-index:150;
  background:rgba(8,15,31,0.98); backdrop-filter:blur(20px);
  flex-direction:column; align-items:center; justify-content:center; gap:2.5rem;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family:'Syne',sans-serif; font-size:2rem; font-weight:700;
  color:var(--white); text-decoration:none; transition:color 0.2s;
}
.mobile-menu a:hover { color:var(--orange); }

/* HERO */
.hero {
  min-height:100vh; padding:8rem 5% 5rem;
  display:flex; align-items:center;
  max-width:1200px; margin:0 auto; gap:4rem;
}
.hero-text { flex:1; }
.hero-badge {
  display:inline-flex; align-items:center; gap:0.5rem;
  background:rgba(241,90,20,0.1); border:1px solid rgba(241,90,20,0.3);
  padding:0.4rem 1rem; border-radius:50px;
  font-size:0.78rem; color:var(--orange2); font-weight:700;
  margin-bottom:1.5rem; text-transform:uppercase; letter-spacing:0.5px;
}
.hero-badge::before {
  content:''; width:6px; height:6px; background:var(--orange);
  border-radius:50%; animation:pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

.hero h1 {
  font-size:clamp(2.2rem,4.5vw,3.8rem);
  font-weight:800; color:var(--white);
  margin-bottom:0.8rem;
}
.hero-tagline {
  font-family:'Syne',sans-serif;
  font-size:clamp(1.3rem,2.6vw,1.9rem);
  font-weight:700; line-height:1.2;
  margin-bottom:1.2rem;
}
.hero-sub {
  font-size:1.05rem; color:var(--muted);
  max-width:520px; margin-bottom:2rem; line-height:1.7;
}
.hero-btns {
  display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.5rem;
}
.btn-primary {
  background:var(--orange-btn); color:var(--white);
  padding:0.9rem 2rem; border-radius:50px;
  font-weight:700; font-size:1rem;
  text-decoration:none; border:none; cursor:pointer;
  font-family:'DM Sans',sans-serif;
  box-shadow:0 0 30px rgba(241,90,20,0.35);
  transition:transform 0.2s, opacity 0.2s;
}
.btn-primary:hover { opacity:0.88; transform:translateY(-2px); }
.btn-whatsapp {
  background:var(--green); color:var(--white);
  padding:0.9rem 2rem; border-radius:50px;
  font-weight:700; font-size:1rem;
  text-decoration:none; border:none; cursor:pointer;
  font-family:'DM Sans',sans-serif;
  display:inline-flex; align-items:center; gap:0.5rem;
  box-shadow:0 0 30px rgba(19,176,15,0.3);
  transition:transform 0.2s, opacity 0.2s;
}
.btn-whatsapp:hover { opacity:0.9; transform:translateY(-2px); }
.btn-secondary {
  background:transparent; color:var(--white);
  padding:0.9rem 2rem; border-radius:50px;
  font-weight:600; font-size:1rem;
  text-decoration:none;
  border:1px solid var(--border);
  transition:border-color 0.2s;
  font-family:'DM Sans',sans-serif;
}
.btn-secondary:hover { border-color:var(--orange); color:var(--orange); }

.hero-trust {
  display:flex; gap:2rem; flex-wrap:wrap;
}
.trust-item {
  display:flex; align-items:center; gap:0.5rem;
  font-size:0.83rem; color:var(--muted);
}

/* HERO PHOTO */
.hero-photo { flex-shrink:0; }
.hero-photo-wrap {
  width:360px; height:400px;
  border-radius:24px; overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
  border:1px solid var(--border);
}
.hero-photo-wrap img {
  width:100%; height:100%; object-fit:cover; object-position:top center;
}
.hero-photo-card {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px; padding:1rem 1.2rem;
  margin-top:1rem;
}
.hero-photo-card strong {
  display:block; font-family:'Syne',sans-serif;
  font-size:1rem; color:var(--white); margin-bottom:0.2rem;
  text-align:center;
}
.hero-photo-card span { font-size:0.8rem; color:var(--muted); display:block; text-align:center; }
.hero-stats {
  display:flex; gap:0.8rem; margin-top:0.8rem;
}
.hero-stat {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:10px; padding:0.4rem 0.7rem; text-align:center; flex:1;
}
.hero-stat-num {
  display:block; font-family:'Syne',sans-serif;
  font-size:1.1rem; font-weight:800;
  background:var(--grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-stat-label { font-size:0.65rem; color:var(--muted); }

/* MARQUEE */
.marquee-section {
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--bg2);
  padding:1rem 0; overflow:hidden;
}
.marquee-track {
  display:flex; gap:3rem;
  animation:marquee 30s linear infinite; white-space:nowrap;
}
.marquee-item {
  display:flex; align-items:center; gap:0.5rem;
  font-size:0.85rem; color:var(--muted); font-weight:500; flex-shrink:0;
}
.marquee-item strong { color:var(--white); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SECTIONS */
section { position:relative; }
.section-tag {
  display:inline-block; padding:0.3rem 0.9rem; border-radius:50px;
  background:rgba(241,90,20,0.1); border:1px solid rgba(241,90,20,0.25);
  font-size:0.75rem; color:var(--orange2); font-weight:700;
  letter-spacing:1px; text-transform:uppercase; margin-bottom:1rem;
}
.section-header { text-align:center; margin-bottom:3.5rem; }
.section-header h2 {
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  color:var(--white); margin-bottom:0.8rem;
}
.section-header p {
  color:var(--muted); font-size:1rem;
  max-width:520px; margin:0 auto; line-height:1.7;
}
.container { max-width:1100px; margin:0 auto; padding:0 5%; }

/* PAIN POINTS */
.pain-section { padding:6rem 5%; background:var(--bg2); }
.pain-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:1.5rem; max-width:1000px; margin:0 auto;
}
.pain-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:20px; padding:2rem;
  position:relative; overflow:hidden;
  transition:transform 0.3s, border-color 0.3s;
}
.pain-card:hover { transform:translateY(-4px); border-color:rgba(241,90,20,0.3); }
.pain-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--grad);
}
.pain-icon { font-size:2rem; margin-bottom:1rem; }
.pain-card h3 {
  font-family:'DM Sans',sans-serif; font-weight:700;
  font-size:1.05rem; color:var(--white); margin-bottom:0.6rem;
}
.pain-card p { color:var(--muted); font-size:0.9rem; line-height:1.6; }

/* BENEFICII — CE PRIMEȘTI */
.benefit-section { padding:6rem 5%; background:var(--bg); }
.benefit-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:1.5rem; max-width:1000px; margin:0 auto;
}
.benefit-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:20px; padding:2rem;
  position:relative; overflow:hidden;
  transition:transform 0.3s, border-color 0.3s;
}
.benefit-card:hover { transform:translateY(-4px); border-color:rgba(19,176,15,0.4); }
.benefit-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--green), #00b85f);
}
.benefit-icon { font-size:2rem; margin-bottom:1rem; }
.benefit-card h3 {
  font-family:'DM Sans',sans-serif; font-weight:700;
  font-size:1.05rem; color:var(--white); margin-bottom:0.6rem;
}
.benefit-card p { color:var(--muted); font-size:0.9rem; line-height:1.6; }

/* DESPRE */
.despre-section {
  padding:6rem 5%;
  background:var(--bg);
}
.despre-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; max-width:1000px; margin:0 auto;
  align-items:center;
}
.despre-text h2 {
  font-size:clamp(1.8rem,3vw,2.5rem);
  color:var(--white); margin-bottom:1.5rem;
}
.despre-text p {
  color:var(--muted);
  line-height:1.8; margin-bottom:1rem; font-size:0.95rem;
}
.despre-text p:last-of-type { margin-bottom:2rem; }
.despre-text strong { color:var(--white); }
.despre-nums {
  display:grid; grid-template-columns:1fr 1fr; gap:1rem;
}
.despre-num {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px; padding:1.5rem;
}
.despre-num-val {
  font-family:'Syne',sans-serif;
  font-size:2rem; font-weight:800;
  background:var(--grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  display:block;
}
.despre-num-label {
  font-size:0.8rem; color:var(--muted); margin-top:0.3rem;
}

/* SERVICII */
.servicii-section { padding:6rem 5%; background:var(--bg2); }
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:1.5rem; max-width:1000px; margin:0 auto 3rem;
}
.pricing-card {
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:24px; padding:2rem;
  position:relative; transition:transform 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform:translateY(-6px);
  border-color:rgba(241,90,20,0.3);
}
.pricing-card.featured {
  border-color:var(--orange);
  border-width:1.5px;
  background:linear-gradient(135deg,var(--bg3) 0%,rgba(241,90,20,0.06) 100%);
}
.featured-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--orange-btn); color:var(--white);
  padding:0.3rem 1rem; border-radius:50px;
  font-size:0.75rem; font-weight:700; white-space:nowrap;
  box-shadow:0 0 20px rgba(241,90,20,0.4);
}
.plan-icon { font-size:2rem; margin-bottom:1rem; }
.plan-name {
  font-family:'Syne',sans-serif;
  font-size:1.3rem; color:var(--white);
  margin-bottom:0.3rem;
}
.plan-price {
  display:flex; align-items:baseline; gap:0.2rem;
  margin-bottom:0.8rem;
}
.price-val {
  font-family:'Syne',sans-serif;
  font-size:2.5rem; font-weight:800; color:var(--white);
}
.price-cur {
  font-size:1.2rem; font-weight:700;
  background:var(--grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
}
.plan-desc {
  color:var(--muted); font-size:0.88rem;
  line-height:1.6; margin-bottom:1.5rem;
  min-height:60px;
  border-bottom:1px solid var(--border); padding-bottom:1.5rem;
}
.plan-features { list-style:none; margin-bottom:1.5rem; }
.plan-features li {
  display:flex; align-items:flex-start; gap:0.6rem;
  font-size:0.875rem; color:var(--muted);
  padding:0.35rem 0;
}
.plan-features li::before {
  content:"✓"; color:var(--orange); font-weight:700; flex-shrink:0;
}
.plan-btn {
  width:100%; padding:0.85rem;
  border-radius:50px; border:none; cursor:pointer;
  font-family:'DM Sans',sans-serif; font-weight:700;
  font-size:0.95rem; transition:all 0.2s;
  text-decoration:none; display:block; text-align:center;
}
.plan-btn-primary {
  background:rgba(241,90,20,0.15);
  border:1px solid rgba(241,90,20,0.4);
  color:var(--orange2);
}
.plan-btn-primary:hover {
  background:var(--orange-btn); color:var(--white);
}
.plan-btn-featured {
  background:var(--orange-btn); color:var(--white);
  box-shadow:0 0 25px rgba(241,90,20,0.4);
}
.plan-btn-featured:hover { opacity:0.88; }

/* MENTENANTA */
.mentenance-row {
  max-width:1000px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:1.5rem;
}
.ment-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:20px; padding:1.5rem 2rem;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.ment-info h3 {
  font-family:'DM Sans',sans-serif; font-weight:700;
  color:var(--white); font-size:1rem; margin-bottom:0.3rem;
}
.ment-info p { color:var(--muted); font-size:0.83rem; line-height:1.5; }
.ment-price {
  font-family:'Syne',sans-serif;
  font-size:1.6rem; font-weight:800;
  color:var(--orange); white-space:nowrap;
}
.ment-price small {
  font-family:'DM Sans',sans-serif;
  font-size:0.75rem; color:var(--muted); font-weight:400;
}

/* PORTOFOLIU */
.portfolio-section { padding:6rem 5%; background:var(--bg); }
.portfolio-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:1.5rem; max-width:1000px; margin:0 auto;
}
.portfolio-card {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:20px; overflow:hidden;
  transition:transform 0.3s, border-color 0.3s;
}
.portfolio-card:hover {
  transform:translateY(-6px); border-color:rgba(241,90,20,0.3);
}
.portfolio-img {
  height:180px; display:flex; align-items:center; justify-content:center;
  font-size:2.8rem; font-weight:800; font-family:'Syne',sans-serif;
  position:relative; overflow:hidden;
}
.portfolio-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, transparent 50%, var(--bg2));
}
.portfolio-body { padding:1.5rem; }
.portfolio-tag {
  display:inline-block;
  background:rgba(241,90,20,0.1); border:1px solid rgba(241,90,20,0.25);
  color:var(--orange2); font-size:0.72rem; font-weight:700;
  padding:0.2rem 0.7rem; border-radius:50px;
  text-transform:uppercase; letter-spacing:0.5px; margin-bottom:0.7rem;
}
.portfolio-body h3 {
  font-family:'DM Sans',sans-serif; font-weight:700;
  font-size:1.05rem; color:var(--white); margin-bottom:0.5rem;
}
.portfolio-body p {
  color:var(--muted); font-size:0.85rem; line-height:1.5; margin-bottom:1rem;
}
.portfolio-link {
  display:inline-flex; align-items:center; gap:0.4rem;
  color:var(--orange2); font-size:0.85rem; font-weight:600;
  text-decoration:none; transition:gap 0.2s;
}
.portfolio-link:hover { gap:0.7rem; }

/* PROCES */
.proces-section { padding:6rem 5%; background:var(--bg2); }
.proces-steps {
  display:flex; flex-direction:column; gap:0;
  max-width:700px; margin:0 auto; position:relative;
}
.proces-steps::before {
  content:''; position:absolute; left:27px; top:28px; bottom:28px;
  width:2px; background:var(--grad);
}
.proces-step {
  display:flex; gap:2rem; padding:1.5rem 0;
}
.step-num {
  width:56px; height:56px; border-radius:50%;
  background:var(--orange-btn); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-weight:800; font-size:1.2rem;
  flex-shrink:0; position:relative; z-index:1;
  box-shadow:0 0 20px rgba(241,90,20,0.5);
}
.step-content { padding-top:0.8rem; }
.step-content h3 {
  font-family:'DM Sans',sans-serif; font-weight:700;
  font-size:1.05rem; color:var(--white); margin-bottom:0.4rem;
}
.step-content p { color:var(--muted); font-size:0.9rem; line-height:1.6; }

/* FAQ */
.faq-section { padding:6rem 5%; background:var(--bg); }
.faq-list { max-width:700px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-question {
  display:flex; justify-content:space-between; align-items:center;
  padding:1.3rem 0; cursor:pointer;
  font-weight:600; color:var(--white); font-size:0.95rem;
  transition:color 0.2s;
  background:none; border:none; width:100%; text-align:left;
  font-family:'DM Sans',sans-serif;
}
.faq-question:hover { color:var(--orange2); }
.faq-arrow {
  font-size:1.3rem; color:var(--orange); font-weight:300;
  transition:transform 0.3s; flex-shrink:0;
}
.faq-item.open .faq-arrow { transform:rotate(45deg); }
.faq-answer {
  display:none; padding:0 0 1.3rem;
  color:var(--muted); font-size:0.9rem; line-height:1.7;
}
.faq-item.open .faq-answer { display:block; }

/* CTA FINAL */
.cta-section {
  padding:6rem 5%;
  background:var(--bg2);
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--grad);
}
.cta-section::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:var(--grad);
}
.cta-section h2 {
  font-size:clamp(1.8rem,3vw,2.8rem);
  color:var(--white); margin-bottom:1rem;
}
.cta-section p {
  color:var(--muted); font-size:1.05rem;
  max-width:520px; margin:0 auto 2rem; line-height:1.7;
}
.cta-btns {
  display:flex; gap:1rem; justify-content:center; flex-wrap:wrap;
  margin-bottom:1.5rem;
}
.cta-note { color:var(--muted); font-size:0.83rem; }

/* CONTACT */
.contact-section { padding:5rem 5%; background:var(--bg); }
.contact-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:1rem; max-width:900px; margin:0 auto;
}
.contact-card {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:16px; padding:1.5rem 1.5rem 1.5rem 1.8rem;
  display:flex; align-items:center; gap:1rem;
  text-decoration:none; transition:transform 0.2s, border-color 0.3s;
  overflow:hidden;
}
.contact-card:hover {
  transform:translateY(-3px); border-color:rgba(241,90,20,0.3);
}
.contact-icon { font-size:1.8rem; flex-shrink:0; overflow:visible; display:flex; align-items:center; justify-content:center; }
.contact-label { font-size:0.75rem; color:var(--muted); }
.contact-val { font-size:0.9rem; font-weight:600; color:var(--white); }

/* FOOTER */
footer {
  background:var(--bg2);
  border-top:1px solid var(--border);
  padding:3rem 5%;
}
.footer-top {
  height:2px; background:var(--grad);
  margin-bottom:3rem; margin-left:-5%; margin-right:-5%;
}
.footer-inner {
  max-width:1000px; margin:0 auto;
  display:flex; flex-wrap:wrap; gap:2rem;
  justify-content:space-between; align-items:flex-start;
}
.footer-brand p {
  font-size:0.82rem; color:var(--muted);
  margin-top:0.8rem; max-width:260px; line-height:1.6;
}
.footer-links { display:flex; gap:3rem; flex-wrap:wrap; }
.footer-col .footer-title {
  font-family:'DM Sans',sans-serif; font-weight:700;
  color:var(--white); font-size:0.85rem;
  margin:0 0 0.8rem 0; text-transform:uppercase; letter-spacing:0.5px;
}
.footer-col a {
  display:block; color:var(--muted);
  font-size:0.83rem; text-decoration:none; margin-bottom:0.4rem;
  transition:color 0.2s;
}
.footer-col a:hover { color:var(--orange2); }
.footer-bottom {
  max-width:1000px; margin:2rem auto 0;
  padding-top:1.5rem; border-top:1px solid var(--border);
  display:flex; flex-wrap:wrap; gap:1rem;
  justify-content:space-between; align-items:center;
  font-size:0.78rem; color:var(--muted);
}
.footer-bottom a { color:var(--muted); text-decoration:none; }
.footer-bottom a:hover { color:var(--orange2); }
.footer-legal { display:flex; gap:1.5rem; flex-wrap:wrap; }

/* BREADCRUMB (folosit pe paginile interioare) */
.breadcrumb-wrap {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 5rem 5% 1rem;
}
.breadcrumb {
  max-width: 1200px; margin: 0 auto;
  font-size: 0.85rem; color: var(--muted);
}
.breadcrumb a {
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--orange2); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumb .current { color: var(--white); }

/* PRICE HIGHLIGHT (badge preț în hero pe paginile de serviciu) */
.price-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(241,90,20,0.15), rgba(241,90,20,0.05));
  border: 1px solid rgba(241,90,20,0.35);
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  font-family: 'Syne', sans-serif;
}
.price-highlight .val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.price-highlight .label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* HONEST BOX ("Nu e potrivit pentru tine dacă...") */
.honest-box {
  background: rgba(241,90,20,0.05);
  border: 1px solid rgba(241,90,20,0.25);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  margin-top: 2rem;
}
.honest-box h3 {
  color: var(--orange2);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.honest-box ul {
  list-style: none; padding: 0;
}
.honest-box li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  color: var(--muted);
}
.honest-box li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* INCLUDE GRID (grilă 2 coloane cu iconuri — ce include / exemple) */
.include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.include-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.include-item:hover {
  border-color: rgba(241,90,20,0.35);
  transform: translateY(-2px);
}
.include-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.include-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}
.include-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* COMPARE GRID (comparație 2 cards: ex. n8n vs Zapier) */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.compare-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
}
.compare-card.highlight {
  border-color: rgba(241,90,20,0.4);
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(241,90,20,0.05) 100%);
}
.compare-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.compare-card ul {
  list-style: none;
  padding: 0;
}
.compare-card li {
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.compare-card.highlight li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.compare-card:not(.highlight) li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 700;
}

/* WA RING (efect pulse în jurul butonului WhatsApp floating) */
.wa-ring-el {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--green);
  animation: waPulseRing 2s ease-out infinite;
  pointer-events: none; z-index: 99;
}
.wa-ring-el:nth-of-type(2) { animation-delay: 0.8s; }

/* WA FLOAT */
.wa-float {
  position:fixed; bottom:2rem; right:2rem;
  background:var(--green); color:var(--white);
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; text-decoration:none;
  box-shadow:0 4px 20px rgba(19,176,15,0.4);
  z-index:100; box-shadow:0 4px 25px rgba(19,176,15,0.5);
  transition:transform 0.2s;
}
.wa-float:hover { transform:scale(1.1); }
@keyframes waPulseRing {
  0%   { transform:scale(1); opacity:0.8; }
  70%  { transform:scale(2); opacity:0; }
  100% { transform:scale(2); opacity:0; }
}

/* REVEAL */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media(max-width:900px){
  .hero { flex-direction:column; text-align:center; padding-top:6rem; gap:2rem; }
  .hero-trust { justify-content:center; }
  .hero-photo { display:flex; flex-direction:column; align-items:center; width:100%; }
  .hero-photo-wrap { width:280px; height:320px; margin:0 auto; }
  .hero-photo-card { width:280px; margin-left:auto; margin-right:auto; }
  .despre-grid { grid-template-columns:1fr; gap:3rem; }
  .mentenance-row { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
}
@media(max-width:600px){
  .hero-btns { flex-direction:column; }
  .hero-btns a { width:100%; text-align:center; }
  .cta-btns { flex-direction:column; align-items:center; }
  .footer-links { gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
