/* ============================================================
   ESG ARSC — Site static
   Design system: Navy + Green, Inter font
   ============================================================ */

:root {
  --primary: #1E3A5F;
  --primary-light: #2D5F9E;
  --primary-dark: #142740;
  --green: #2E7D52;
  --green-light: #3A9E68;
  --green-bg: #EBF7F1;
  --gold: #C9A84C;
  --silver: #9BA3AF;
  --bronze: #B87333;
  --bg: #F7F9FC;
  --bg-card: #FFFFFF;
  --text: #1A2332;
  --text-medium: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --border-light: #F0F4F8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green); }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-logo {
  height: 36px; width: auto;
  display: flex; align-items: center; gap: 8px;
}
.navbar-logo-text {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  letter-spacing: -0.3px;
}
.navbar-logo-sub {
  font-size: 0.65rem; font-weight: 500; color: var(--text-light);
  display: block; letter-spacing: 0.5px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-medium);
  border-radius: 6px; transition: all .2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); background: var(--bg); }
.nav-links a.active {
  color: var(--green);
  font-weight: 700;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾'; font-size: 0.7rem; opacity: 0.6;
}
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); min-width: 220px;
  padding: 10px 6px 6px; /* padding-top creează spațiu vizual fără gap în hover */
  margin-top: 0;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 14px;
  font-size: 0.875rem; color: var(--text-medium);
  border-radius: 6px;
}
.dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
.dropdown-menu a.active {
  background: var(--green-bg);
  color: var(--green);
  font-weight: 700;
}

.nav-cta {
  background: var(--green) !important; color: white !important;
  padding: 9px 20px !important; border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-light) !important; }

.nav-lang {
  font-size: 0.8rem; color: var(--text-light); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 4px; cursor: pointer;
}

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; color: var(--text);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  margin: 5px 0; transition: all .3s;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--primary); color: rgba(255,255,255,0.85);
  font-size: 0.8rem; padding: 7px 0;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: white; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a4a7a 100%);
  color: white; padding: 90px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.hero-badge-dot { width: 6px; height: 6px; background: #4CAF82; border-radius: 50%; }
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { color: #4CAF82; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-value { font-size: 1.8rem; font-weight: 700; color: #4CAF82; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

.hero-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg);
  padding: 28px;
}
.hero-card h3 { color: white; margin-bottom: 20px; font-size: 1rem; }
.hero-pillar {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-pillar:last-child { border-bottom: none; padding-bottom: 0; }
.hero-pillar-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.pillar-e { background: rgba(46,125,82,0.3); }
.pillar-s { background: rgba(45,95,158,0.3); }
.pillar-g { background: rgba(201,168,76,0.3); }
.hero-pillar-info { flex: 1; }
.hero-pillar-title { font-size: 0.85rem; font-weight: 600; color: white; }
.hero-pillar-desc { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin: 0; }
.hero-pillar-score { font-size: 0.78rem; font-weight: 600; color: #4CAF82; white-space: nowrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 7px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: none; transition: all .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-light); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(46,125,82,0.35); }
.btn-secondary { background: white; color: var(--primary); border: 1.5px solid white; }
.btn-secondary:hover { background: rgba(255,255,255,0.9); color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); background: var(--bg); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: white; }
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* ── CARDS ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: all .25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.card-icon-green { background: var(--green-bg); }
.card-icon-blue { background: #EBF2FF; }
.card-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.card-desc { font-size: 0.9rem; color: var(--text-medium); line-height: 1.6; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; color: var(--primary); }
.section-header p { font-size: 1.05rem; color: var(--text-medium); max-width: 600px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  color: var(--green); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; position: relative; padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-number {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0; position: relative; z-index: 1;
}
.step-line {
  width: 2px; flex: 1; background: var(--border);
  margin: 6px 0; min-height: 40px;
}
.step:last-child .step-line { display: none; }
.step-content { flex: 1; padding-top: 8px; }
.step-content h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step-content p { font-size: 0.9rem; color: var(--text-medium); margin: 0; }
.step-meta {
  display: inline-block; margin-top: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--green);
  background: var(--green-bg); padding: 3px 10px; border-radius: 4px;
}

/* ── LEVELS ── */
.levels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.level-card {
  border-radius: var(--radius); padding: 20px 14px; text-align: center;
  border: 2px solid transparent; transition: all .2s;
}
.level-platinum { background: linear-gradient(135deg, #E8E0F5, #D4C9ED); border-color: #9B8EC4; }
.level-gold { background: linear-gradient(135deg, #FEF3CD, #F8E08A); border-color: var(--gold); }
.level-silver { background: linear-gradient(135deg, #F0F4F8, #E2E8F0); border-color: var(--silver); }
.level-bronze { background: linear-gradient(135deg, #FDF0E8, #F5D9C0); border-color: var(--bronze); }
.level-grey { background: linear-gradient(135deg, #F5F5F5, #E8E8E8); border-color: #C0C0C0; }
.level-icon { font-size: 1.8rem; margin-bottom: 8px; }
.level-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.level-range { font-size: 0.75rem; color: var(--text-medium); }
.level-badge {
  display: inline-block; margin-top: 8px; font-size: 0.7rem;
  padding: 2px 8px; border-radius: 10px; background: rgba(0,0,0,0.08); font-weight: 600;
}

/* ── TRUST SECTION ── */
.trust-banner {
  background: var(--primary); color: white; padding: 40px 0; border-radius: var(--radius-lg);
}
.trust-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item-value { font-size: 2rem; font-weight: 700; color: #4CAF82; }
.trust-item-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ── TESTIMONIALS ── */
.testimonial {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-text {
  font-size: 0.95rem; color: var(--text-medium); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-text::before { content: '\201E'; font-size: 1.2rem; color: var(--green); }
.testimonial-text::after { content: '\201D'; font-size: 1.2rem; color: var(--green); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-bg); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--green); font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }
.testimonial-level {
  margin-left: auto; font-size: 0.75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
}
.badge-platinum { background: #E8E0F5; color: #6B5B8F; }
.badge-gold { background: #FEF3CD; color: #B8860B; }

/* ── CERTIFICATE PREVIEW ── */
.cert-preview {
  background: white; border: 2px solid var(--gold);
  border-radius: 12px; padding: 36px; text-align: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
  position: relative; max-width: 480px; margin: 0 auto;
}
.cert-preview::before {
  content: ''; position: absolute; inset: 6px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; pointer-events: none;
}
.cert-header { margin-bottom: 20px; }
.cert-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.cert-title { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 12px 0 4px; }
.cert-subtitle { font-size: 0.85rem; color: var(--text-medium); }
.cert-org { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 20px 0; padding: 12px; background: var(--bg); border-radius: 6px; }
.cert-level {
  display: inline-block; padding: 8px 24px; border-radius: 20px;
  font-weight: 700; font-size: 1rem; margin-bottom: 16px;
}
.cert-score { font-size: 0.85rem; color: var(--text-medium); margin-bottom: 20px; }
.cert-score strong { color: var(--primary); font-size: 1.1rem; }
.cert-footer { font-size: 0.75rem; color: var(--text-light); padding-top: 16px; border-top: 1px solid var(--border); }
.cert-series { font-family: monospace; font-size: 0.85rem; color: var(--text-medium); margin-top: 8px; }

/* ── PRICING ── */
.pricing-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.pricing-header {
  background: var(--primary); color: white; padding: 28px;
}
.pricing-header h3 { color: white; margin-bottom: 4px; }
.pricing-price { font-size: 2.2rem; font-weight: 700; color: #4CAF82; margin: 8px 0; }
.pricing-price span { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 400; }
.pricing-body { padding: 28px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem; color: var(--text-medium);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-check { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; background: white; }
thead th {
  background: var(--primary); color: white;
  padding: 13px 16px; text-align: left; font-size: 0.85rem; font-weight: 600;
}
tbody td { padding: 12px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--border-light); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg); }
.badge-level {
  display: inline-block; padding: 3px 10px; border-radius: 10px;
  font-size: 0.75rem; font-weight: 700;
}

/* ── PARTNER BADGE ── */
.partner-section {
  background: linear-gradient(135deg, #EBF3FF, #F0F8F4);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px;
}
.partner-logo {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.partner-seal {
  background: var(--primary); color: white; padding: 10px 20px;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600; text-align: center;
}
.partner-seal-top { font-size: 0.65rem; opacity: 0.7; display: block; }
.partner-seal-main { font-size: 0.9rem; font-weight: 700; }
.partner-seal-sub { font-size: 0.65rem; opacity: 0.7; display: block; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; background: white; overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  transition: background .2s;
}
.faq-question:hover { background: var(--bg); }
.faq-question.open { color: var(--primary); }
.faq-icon { font-size: 1.2rem; color: var(--text-light); transition: transform .3s; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  display: none; padding: 0 22px 18px;
  font-size: 0.9rem; color: var(--text-medium); line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-label span { color: #E53E3E; margin-left: 2px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-size: 0.9rem; font-family: inherit; color: var(--text);
  background: white; transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(45,95,158,0.1); }
.form-control::placeholder { color: var(--text-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23718096' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 5px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-box {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow);
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; padding: 60px 0 50px;
}
.page-header h1 { color: white; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb span { opacity: 0.4; }

/* ── ALERT / NOTICE ── */
.notice {
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 0.9rem; display: flex; align-items: flex-start; gap: 12px; margin: 20px 0;
}
.notice-info { background: #EBF2FF; border-left: 4px solid var(--primary-light); color: var(--primary); }
.notice-success { background: var(--green-bg); border-left: 4px solid var(--green); color: #1A6040; }
.notice-warning { background: #FFFBEB; border-left: 4px solid #F59E0B; color: #92400E; }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin: 12px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: all .2s;
}
.footer-social a:hover { background: var(--green); color: white; }
.footer-col h4 { color: white; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.3px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,0.95); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 0.875rem; }
.footer-contact-icon { opacity: 0.5; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, var(--green-bg), #F0F8F4);
  border: 1px solid rgba(46,125,82,0.2); border-radius: var(--radius-lg); padding: 32px;
}
.highlight-box h3 { color: var(--green); margin-bottom: 12px; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--green), #1E6B3F);
  color: white; padding: 72px 0; text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── REGISTRU TABLE ── */
.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 12px; font-size: 0.78rem; font-weight: 600;
}
.status-active { background: var(--green-bg); color: var(--green); }
.status-pending { background: #FEF3CD; color: #92640B; }

/* ── INLINE ICON ── */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 36px; }
  .levels { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .levels { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: white;
    border-bottom: 1px solid var(--border); padding: 12px;
    box-shadow: var(--shadow);
  }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header { padding: 40px 0 32px; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 50px; }
  .levels { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { padding: 12px 22px; font-size: 0.95rem; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.color-green { color: var(--green); }
.color-primary { color: var(--primary); }
.color-light { color: var(--text-light); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm { font-size: 0.875rem; }
.bg-white { background: white; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }

/* ============================================================
   ANIMAȚII & ELEMENTE DINAMICE
   ============================================================ */

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Typing cursor */
.typing-cursor::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
  color: var(--green);
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ESG Estimator */
.estimator-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2D5580 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.estimator-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(46,125,82,0.12);
  pointer-events: none;
}
.estimator-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.estimator-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.estimator-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.estimator-step-dot.active { background: var(--green); }
.estimator-step-dot.done { background: var(--green); opacity: 0.5; }
.estimator-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  min-height: 52px;
  transition: opacity 0.2s ease;
}
.estimator-options {
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s ease;
  gap: 10px;
  margin-bottom: 24px;
}
.estimator-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  background: white;
  text-align: left;
  width: 100%;
}
.estimator-option:hover {
  border-color: var(--green);
  background: var(--green-bg);
}
.estimator-option.selected {
  border-color: var(--green);
  background: var(--green-bg);
  color: var(--green);
  font-weight: 600;
}
.estimator-result {
  text-align: center;
  padding: 20px 0;
}
.estimator-result-level {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.estimator-result-score {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 20px;
}
.estimator-result-bar {
  height: 12px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.estimator-result-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--green), #52C48A);
  transition: width 1s ease;
  width: 0%;
}

/* Hero animated gradient */
.hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #142740 40%, #1B5535 100%);
  background-size: 200% 200%;
  animation: heroGradient 8s ease infinite;
}
@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating pulse on hero badge */
.hero-badge-dot {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
