/* ============================================
   DDD MASTER FACILITY SRL – Corporate Minimalist
   Primary: #039f10 | Extended palette v2
   Charcoal text · Frost backgrounds · Amber urgency
   ============================================ */

:root {
  /* ── Brand green ── */
  --green:        #039f10;
  --green-light:  #05c714;
  --green-dark:   #027a0c;
  --green-bg:     #edf2ed;
  --green-muted:  rgba(3,159,16,0.11);

  /* ── Charcoal (replaces pure black) ── */
  --charcoal:     #1a2e1a;
  --forest:       #2d4a2d;

  /* ── Frost backgrounds (replaces neutral grey) ── */
  --white:        #ffffff;
  --bg:           #f5f7f5;
  --bg-section:   #edf2ed;
  --border:       #d8e2d8;
  --border-dark:  #b8ccb8;

  /* ── Text (warm-toned, brand-coherent) ── */
  --text:         #1a2e1a;
  --text-2:       #3d543d;
  --text-3:       #6e856e;

  /* ── Amber (urgency / attention — used sparingly) ── */
  --amber:        #f59e0b;
  --amber-dark:   #d97706;
  --amber-bg:     #fef3c7;
  --amber-text:   #92400e;

  /* ── Shadows ── */
  --shadow-sm:    0 2px 8px rgba(26,46,26,0.07);
  --shadow-md:    0 6px 24px rgba(26,46,26,0.10);
  --shadow-lg:    0 16px 48px rgba(26,46,26,0.13);
  --shadow-green: 0 6px 24px rgba(3,159,16,0.25);
  --shadow-amber: 0 6px 20px rgba(245,158,11,0.30);

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.25s ease;

  --font: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ─── Amber utility classes ─── */
.badge-amber {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--amber-bg); color: var(--amber-text);
  border: 1px solid rgba(245,158,11,0.35);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.85rem; border-radius: 20px;
  letter-spacing: 0.3px;
}
.badge-amber .dot-amber {
  width: 7px; height: 7px; background: var(--amber);
  border-radius: 50%; animation: blink 1.6s ease-in-out infinite;
}
.text-amber { color: var(--amber-dark); font-weight: 700; }
.btn-amber {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.9rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  background: var(--amber); color: var(--charcoal);
  border: 2px solid var(--amber); transition: var(--transition);
  box-shadow: var(--shadow-amber);
}
.btn-amber:hover {
  background: var(--amber-dark); border-color: var(--amber-dark);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,158,11,0.4);
}
.btn-amber.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* Amber urgency strip */
.urgency-strip {
  background: var(--amber-bg);
  border-top: 1px solid rgba(245,158,11,0.3);
  border-bottom: 1px solid rgba(245,158,11,0.3);
  padding: 0.85rem 0;
}
.urgency-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; text-align: center;
}
.urgency-strip-text {
  font-size: 0.9rem; font-weight: 600; color: var(--amber-text);
  display: flex; align-items: center; gap: 0.5rem;
}
.urgency-strip a {
  color: var(--amber-dark); font-weight: 800;
  text-decoration: underline; text-underline-offset: 2px;
}

/* Forest text helper */
.text-forest { color: var(--forest); }
.bg-frost { background: var(--bg); }
.bg-frost-deep { background: var(--bg-section); }

/* ─── Typography ─── */
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; color: var(--text); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--text); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; color: var(--text); }
h4 { font-size: 1.05rem; font-weight: 700; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-muted);
  border: 1px solid rgba(3,159,16,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section-title { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; margin-bottom: 0.75rem; }
.section-title span { color: var(--green); }
.section-sub { color: var(--text-2); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }

/* centered header block */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0.75rem auto 0; }

/* ─── Layout ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 0.65rem; font-weight: 800; font-size: 1.05rem; color: var(--text); }
.nav-logo .logo-box {
  width: 38px; height: 38px; background: var(--green);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 900; color: #fff; font-family: var(--font-mono);
  letter-spacing: -1px;
}
.nav-logo span { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  padding: 0.45rem 0.85rem; border-radius: 7px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-muted); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.68rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  min-width: 200px; padding: 0.5rem; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 0.6rem 1rem; border-radius: 7px; color: var(--text-2); font-size: 0.88rem; }
.dropdown-menu a:hover { color: var(--green); background: var(--green-muted); }

.btn-nav {
  background: var(--green); color: #fff !important; font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important; border-radius: 8px !important;
  box-shadow: var(--shadow-green); transition: var(--transition);
}
.btn-nav:hover { background: var(--green-dark) !important; box-shadow: 0 8px 28px rgba(3,159,16,0.35) !important; transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem; flex-direction: column; gap: 0.35rem;
  z-index: 999; box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.7rem 1rem; border-radius: 8px; color: var(--text-2); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--green); background: var(--green-muted); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.9rem; border-radius: var(--radius); font-weight: 700;
  font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--green); color: #fff; border-color: var(--green);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); color: #fff; box-shadow: 0 10px 32px rgba(3,159,16,0.3); }

.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-green); }

.btn-white { background: #fff; color: var(--green); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--green-bg); transform: translateY(-2px); color: var(--green-dark); }

.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.85rem; }

/* ─── HERO ─── */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, #fff 0%, var(--green-bg) 60%, #e8f5e8 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 0.35rem 1rem; font-size: 0.82rem; font-weight: 600; color: var(--text-2); margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); }
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--green); }
.hero p { font-size: 1.1rem; color: var(--text-2); margin-bottom: 2rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-size: 1.6rem; font-weight: 800; color: var(--green); line-height: 1; }
.hero-trust-label { font-size: 0.78rem; color: var(--text-3); margin-top: 0.2rem; }

/* Hero visual card */
.hero-card {
  background: #fff; border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  position: relative;
}
.hero-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero-card-icon { width: 56px; height: 56px; background: var(--green-muted); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.hero-card-badge { position: absolute; top: -14px; right: 24px; background: var(--green); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 20px; }
.hero-services-list { display: flex; flex-direction: column; gap: 0.85rem; }
.hero-svc-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); transition: var(--transition); }
.hero-svc-item:hover { border-color: var(--green); background: var(--green-bg); }
.hero-svc-name { font-weight: 600; font-size: 0.92rem; display: flex; align-items: center; gap: 0.5rem; }
.hero-svc-tag { font-size: 0.72rem; background: var(--green-muted); color: var(--green); padding: 0.2rem 0.6rem; border-radius: 6px; font-weight: 700; }
.hero-card-cta { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--green); padding: 2.5rem 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stats-bar-item { border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem; }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; font-family: var(--font-mono); }
.stats-bar-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 1px; }

/* ─── SERVICES ─── */
.services-section { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); transform: translateY(-4px); }
.svc-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); transform: scaleX(0); transition: transform 0.3s ease; }
.svc-card:hover .svc-card-accent { transform: scaleX(1); }
.svc-icon { width: 58px; height: 58px; background: var(--green-muted); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 1.25rem; transition: var(--transition); }
.svc-card:hover .svc-icon { background: var(--green); }
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { color: var(--text-2); font-size: 0.92rem; margin-bottom: 1.5rem; flex: 1; }
.svc-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.88rem; color: var(--green); margin-top: auto; }
.svc-card-link .arr { transition: transform 0.25s ease; }
.svc-card:hover .arr { transform: translateX(5px); }

/* ─── WHY US ─── */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex; gap: 1rem; padding: 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition);
}
.why-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-icon { width: 44px; height: 44px; min-width: 44px; background: var(--green-muted); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.why-item:hover .why-icon { background: var(--green); }
.why-item h4 { font-size: 0.97rem; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.86rem; color: var(--text-2); }
.why-image-box {
  background: linear-gradient(135deg, var(--green-muted), var(--green-bg));
  border-radius: var(--radius-xl); padding: 3rem 2rem; border: 1px solid var(--border);
  text-align: center;
}
.why-big-stat { font-size: 4rem; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 0.5rem; }
.why-big-label { font-size: 1rem; color: var(--text-2); font-weight: 600; margin-bottom: 2rem; }
.why-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-mini-item { background: var(--white); border-radius: var(--radius); padding: 1rem; border: 1px solid var(--border); }
.why-mini-num { font-size: 1.5rem; font-weight: 800; color: var(--green); }
.why-mini-label { font-size: 0.78rem; color: var(--text-3); margin-top: 0.15rem; }

/* ─── PROCESS ─── */
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 8px, transparent 8px, transparent 18px);
  opacity: 0.35;
}
.process-step { text-align: center; padding: 1.5rem 1rem; }
.process-num {
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  background: var(--white); border: 2px solid var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--green); font-family: var(--font-mono);
  box-shadow: var(--shadow-green); transition: var(--transition);
}
.process-step:hover .process-num { background: var(--green); color: #fff; }
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.86rem; color: var(--text-2); }

/* ─── TESTIMONIALS ─── */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); }
.review-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 42px; height: 42px; background: linear-gradient(135deg,var(--green-dark),var(--green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 0.9rem; }
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-role { font-size: 0.78rem; color: var(--text-3); }

/* ─── ZONE SECTION ─── */
.zone-section { background: var(--white); }
.zone-tags { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; max-width: 800px; margin: 0 auto 2.5rem; }
.zone-tag {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.45rem 1rem; font-size: 0.85rem; font-weight: 500; color: var(--text-2);
  transition: var(--transition);
}
.zone-tag:hover { border-color: var(--green); color: var(--green); background: var(--green-muted); }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; background: rgba(255,255,255,0.06);
  border-radius: 50%; pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -100px; left: -80px;
  width: 280px; height: 280px; background: rgba(255,255,255,0.05);
  border-radius: 50%; pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; }
.cta-band-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-phone { margin-top: 1.5rem; color: rgba(255,255,255,0.9); font-size: 1.1rem; font-weight: 700; position: relative; z-index: 1; }
.cta-phone a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ─── FOOTER ─── */
.footer { background: var(--charcoal); color: #c8d8c8; padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .nav-logo span { color: var(--green); }
.footer-brand .logo-box { background: var(--green); }
.footer-brand p { font-size: 0.88rem; color: #8a9e8a; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-certs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-cert { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 0.25rem 0.65rem; font-size: 0.7rem; color: #8a9e8a; font-family: var(--font-mono); }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--green); margin-bottom: 1.1rem; font-family: var(--font-mono); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.88rem; color: #8a9e8a; transition: var(--transition); display: flex; align-items: center; gap: 0.35rem; }
.footer-col ul a::before { content: '›'; color: var(--green); }
.footer-col ul a:hover { color: var(--green); transform: translateX(3px); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.65rem; font-size: 0.88rem; color: #8a9e8a; }
.footer-contact-row .ico { color: var(--green); min-width: 15px; }
.footer-contact-row a { color: #8a9e8a; }
.footer-contact-row a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: #5a7a5a; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, #fff 0%, var(--green-bg) 100%);
  text-align: center; border-bottom: 1px solid var(--border);
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-3); margin-bottom: 1rem; font-family: var(--font-mono); }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--green); }
.page-hero h1 { margin: 0.5rem 0 0.9rem; }
.page-hero .hero-sub { color: var(--text-2); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ─── CARDS generic ─── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-md); border-color: var(--green); }
.icon-box { width: 54px; height: 54px; background: var(--green-muted); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem; transition: var(--transition); }
.card:hover .icon-box { background: var(--green); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; transition: var(--transition); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--green); box-shadow: var(--shadow-green); }
.pricing-featured-label { position: absolute; top: 15px; right: -28px; background: var(--green); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.25rem 2.5rem; transform: rotate(45deg); text-transform: uppercase; letter-spacing: 1px; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-tier { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--green); margin-bottom: 0.5rem; font-family: var(--font-mono); }
.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--text); font-family: var(--font-mono); margin-bottom: 0.25rem; }
.pricing-price sub { font-size: 1rem; color: var(--text-3); font-weight: 400; }
.pricing-desc { font-size: 0.88rem; color: var(--text-2); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pf { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text-2); }
.pf .ok { color: var(--green); font-weight: 700; }
.pf .no { color: var(--text-3); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; padding: 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; transition: var(--transition); }
.contact-info-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.contact-info-icon { width: 44px; height: 44px; min-width: 44px; background: var(--green-muted); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-info-item h4 { font-size: 0.88rem; color: var(--text-3); font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.97rem; color: var(--text); font-weight: 600; }
.contact-info-item a:hover { color: var(--green); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-2); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.8rem 1rem; font-size: 0.93rem;
  color: var(--text); font-family: var(--font); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(3,159,16,0.1); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── DESPRE NOI ─── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); }
.team-avatar { width: 80px; height: 80px; background: linear-gradient(135deg,var(--green-dark),var(--green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; color: #fff; font-weight: 800; }
.team-card h4 { margin-bottom: 0.25rem; }
.team-role { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.86rem; color: var(--text-2); }

/* ─── FAQ ─── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.65rem; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--green); }
.faq-item.open { border-color: var(--green); }
.faq-q { padding: 1.1rem 1.4rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; user-select: none; }
.faq-q:hover { color: var(--green); }
.faq-arrow { color: var(--green); font-size: 1.1rem; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.4rem 1.1rem; font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* ─── INLINE CTA STRIP ─── */
.inline-cta {
  background: var(--green-bg); border: 1px solid rgba(3,159,16,0.25);
  border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; margin: 3rem 0;
}
.inline-cta h3 { margin-bottom: 0.75rem; }
.inline-cta p { color: var(--text-2); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════
   FLOATING ACTION BUTTON – telefon mobil
   ════════════════════════════════════════ */
/* ── FAB stack (phone + whatsapp) ── */
.fab-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.fab-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--amber);
  color: var(--charcoal);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(245,158,11,0.45);
  font-size: 1.4rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.3);
  /* pe desktop ascuns, afișat via media query */
}
.fab-phone:hover {
  background: var(--amber-dark);
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(245,158,11,0.55);
  color: #fff;
}
.fab-phone .fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  animation: fab-ring 2s ease-out infinite;
  opacity: 0;
}
@keyframes fab-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* WhatsApp FAB – vizibil pe TOATE dispozitivele */
.fab-whatsapp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.3);
}
.fab-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  color: #fff;
}
.fab-whatsapp .fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fab-ring-wa 2.5s ease-out infinite;
  opacity: 0;
}
@keyframes fab-ring-wa {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip label lângă FAB-uri */
.fab-whatsapp::before {
  content: 'WhatsApp';
  position: absolute;
  right: calc(100% + 10px);
  background: #1a2e1a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.fab-whatsapp:hover::before { opacity: 1; }
.fab-phone::before {
  content: 'Sună acum';
  position: absolute;
  right: calc(100% + 10px);
  background: #1a2e1a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.fab-phone:hover::before { opacity: 1; }

/* ════════════════════════════════════════
   RESPONSIVE – Tablet (≤ 1024px)
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid        { gap: 2.5rem; }
  .hero-card        { padding: 1.75rem; }
  .why-grid         { gap: 3rem; }
  .pricing-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-bar-grid   { grid-template-columns: repeat(2,1fr); }
  .process-grid     { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  /* 3-col grids → 2-col on tablet */
  .svc-grid         { grid-template-columns: repeat(2,1fr); }
  .reviews-grid     { grid-template-columns: repeat(2,1fr); }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
}

/* ════════════════════════════════════════
   RESPONSIVE – Mobile (≤ 768px)
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  /* layout */
  section                   { padding: 3.5rem 0; }
  .container                { padding: 0 1rem; }

  /* navbar */
  .nav-links, .btn-nav      { display: none; }
  .nav-hamburger            { display: flex; }

  /* hero */
  .hero                     { padding: 100px 0 60px; }
  .hero-grid                { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card                { display: none; }
  .hero-btns                { flex-direction: column; align-items: stretch; }
  .hero-btns .btn,
  .hero-btns .btn-amber     { width: 100%; justify-content: center; }
  .hero-trust               { gap: 1.5rem; flex-wrap: wrap; }
  .hero-trust-num           { font-size: 1.3rem; }

  /* urgency strip */
  .urgency-strip-inner      { flex-direction: column; gap: 0.4rem; }

  /* stats bar */
  .stats-bar-grid           { grid-template-columns: repeat(2,1fr); }
  .stats-bar-item           { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0.75rem 0.5rem; }
  .stats-bar-item:last-child { border-bottom: none; }
  .stats-bar-num            { font-size: 1.6rem; }

  /* grids → single col */
  .svc-grid, .reviews-grid,
  .team-grid, .pricing-grid { grid-template-columns: 1fr; }

  /* why us */
  .why-grid                 { grid-template-columns: 1fr; gap: 2rem; }
  .why-image-box            { padding: 2rem 1.5rem; }
  .why-big-stat             { font-size: 3rem; }
  .why-mini-stats           { grid-template-columns: repeat(2,1fr); }

  /* process */
  .process-grid             { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .process-grid::before     { display: none; }

  /* zone tags */
  .zone-tags                { gap: 0.5rem; }
  .zone-tag                 { font-size: 0.8rem; padding: 0.35rem 0.75rem; }

  /* cta band */
  .cta-band                 { padding: 3.5rem 0; }
  .cta-band-btns            { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-band-btns .btn,
  .cta-band-btns .btn-amber { width: 100%; max-width: 320px; justify-content: center; }

  /* inline cta strip */
  .urgency-strip-text       { font-size: 0.85rem; }

  /* forms */
  .form-row                 { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea      { font-size: 1rem; } /* prevents iOS zoom on focus */

  /* footer */
  .footer-grid              { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom            { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-brand p           { font-size: 0.85rem; }

  /* page hero */
  .page-hero                { padding: 110px 0 50px; }

  /* FAB: show phone on mobile */
  .fab-phone                { display: flex; }
  .fab-stack                { bottom: 1.2rem; right: 1.2rem; }

  /* sections with inline styles — force single col */
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="grid-template-columns:1fr 1fr"]   { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"]  { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════
   RESPONSIVE – Small phones (≤ 420px)
   ════════════════════════════════════════ */
@media (max-width: 420px) {
  h1                        { font-size: 1.85rem; }
  h2                        { font-size: 1.5rem; }
  .btn.btn-lg, .btn-amber.btn-lg { padding: 0.9rem 1.5rem; font-size: 0.97rem; }
  .stats-bar-grid           { grid-template-columns: 1fr; }
  .stats-bar-item           { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .process-grid             { grid-template-columns: 1fr; }
  .hero-trust               { justify-content: space-between; }
  .navbar-inner             { height: 60px; }
  .mobile-menu              { top: 60px; }
  .hero                     { padding: 90px 0 50px; }
  .page-hero                { padding: 95px 0 45px; }
  .why-mini-stats           { grid-template-columns: 1fr; }
  .footer-grid              { gap: 1.5rem; }
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════
   CLIENTS LOGO SLIDER
   ════════════════════════════════════════ */
.clients-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.clients-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.clients-track-wrap {
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clients-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 120px;
  padding: 0 1rem;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
  flex-shrink: 0;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-placeholder {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em;
  background: var(--bg);
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .clients-track { gap: 2rem; animation-duration: 20s; }
  .client-logo { min-width: 90px; }
}

/* ── Buton Programare în navbar ── */
.btn-nav-secondary {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--amber-bg);
  color: var(--amber-text);
  border: 1.5px solid var(--amber);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-nav-secondary:hover {
  background: var(--amber);
  color: #fff;
  box-shadow: var(--shadow-amber);
}
