/* ==========================================================================
   AuditFactura.ro - Modern B2B High-Converting Design System
   ========================================================================== */

:root {
  /* Brand Palette */
  --color-primary-dark: #0b192c;       /* Deep corporate navy */
  --color-primary-navy: #102a43;       /* Premium slate navy */
  --color-primary-accent: #0284c7;     /* High-trust energetic blue */
  --color-secondary-blue: #0369a1;     /* Rich medium blue */
  --color-energy-lightning: #dc2626;   /* Energy red accent (from logo) */
  --color-energy-green: #15803d;       /* Energy green accent (from logo) */

  /* Conversion CTA Colors (WhatsApp & High-Affinity Green) */
  --color-cta-green: #25D366;          /* Official WhatsApp vibrant green */
  --color-cta-hover: #20ba59;
  --color-cta-dark: #128C7E;
  --color-cta-glow: rgba(37, 211, 102, 0.35);

  /* Backgrounds & Neutrals */
  --color-bg-light: #f8fafc;
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0;
  --color-border-subtle: #edf2f7;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-white: #ffffff;

  /* Typography & Sizing */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1140px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 12px 14px -6px rgba(15, 23, 42, 0.04);
  --shadow-cta: 0 10px 25px rgba(37, 211, 102, 0.4);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT / TRUST BAR
   ========================================================================== */
.top-bar {
  background: var(--color-primary-dark);
  color: #cbd5e1;
  font-size: 0.84rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-cta-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-badge 2s infinite;
}

.top-contact a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-cta-green);
}

.top-contact a:hover {
  color: var(--color-cta-green);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-subtle);
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 68px;
  width: auto;
  max-width: 345px;
  object-fit: contain;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-fallback-text {
  display: none;
  flex-direction: column;
}

.img-fallback + .brand-fallback-text {
  display: flex;
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary-navy);
}

.brand-title span {
  color: var(--color-primary-accent);
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--color-primary-accent);
}

.btn-secondary-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(37, 211, 102, 0.1);
  color: #128c7e;
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: var(--border-radius-full);
  transition: var(--transition-fast);
}

.btn-secondary-header:hover {
  background-color: var(--color-cta-green);
  color: #ffffff;
  border-color: var(--color-cta-green);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-sm {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, #25D366 0%, #1eb956 100%);
  color: #ffffff;
  padding: 1.1rem 2.2rem;
  font-size: 1.15rem;
  box-shadow: var(--shadow-cta);
  border-radius: var(--border-radius-full);
  position: relative;
  overflow: hidden;
  gap: 0.85rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #28e06d 0%, #1aa64d 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-pulse {
  animation: subtle-pulse 3s infinite;
}

.btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-text {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.btn-sub-text {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.92;
}

.btn-large {
  padding: 1.25rem 2.5rem;
}

.whatsapp-icon-md {
  width: 22px;
  height: 22px;
}

.whatsapp-icon-lg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.hero-container {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(2, 132, 199, 0.08);
  color: var(--color-primary-accent);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-primary-navy);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.highlight-text {
  color: var(--color-primary-accent);
  display: inline;
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 780px;
  margin: 0 auto 2.25rem;
  font-weight: 500;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--color-text-main);
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-pill-divider {
  color: #cbd5e1;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--color-cta-green);
}

/* Hero Stats Strip */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}

.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: #cbd5e1;
}

.stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-accent);
  background-color: rgba(2, 132, 199, 0.08);
  padding: 0.3rem 0.85rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-primary-navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS (3 SIMPLE STEPS)
   ========================================================================== */
.steps-section {
  padding: 5.5rem 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.step-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.featured-step {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border: 2px solid rgba(37, 211, 102, 0.4);
  box-shadow: var(--shadow-card);
}

.step-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
}

.step-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: #e0f2fe;
  color: var(--color-primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.featured-step .step-icon-wrapper {
  background-color: rgba(37, 211, 102, 0.15);
  color: #128c7e;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.step-text {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.step-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background-color: rgba(0, 0, 0, 0.04);
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-full);
  align-self: flex-start;
}

.highlight-badge {
  background-color: rgba(37, 211, 102, 0.15);
  color: #15803d;
}

.steps-cta-center {
  text-align: center;
}

/* ==========================================================================
   BENEFITS & GUARANTEES
   ========================================================================== */
.benefits-section {
  padding: 5.5rem 0;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.benefit-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.benefit-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon-box svg {
  width: 30px;
  height: 30px;
}

.bg-blue {
  background: rgba(2, 132, 199, 0.1);
  color: var(--color-primary-accent);
}

.bg-green {
  background: rgba(37, 211, 102, 0.15);
  color: #128c7e;
}

.bg-navy {
  background: rgba(16, 42, 67, 0.1);
  color: var(--color-primary-navy);
}

.benefit-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.benefit-text {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.benefit-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1rem;
}

.benefit-checklist li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-checklist li::before {
  content: "✓";
  color: var(--color-cta-green);
  font-weight: 800;
}

/* Reassurance Box */
.reassurance-box {
  background: linear-gradient(135deg, #102a43 0%, #0b192c 100%);
  color: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: var(--shadow-card);
}

.reassurance-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  color: #38bdf8;
}

.reassurance-icon svg {
  width: 100%;
  height: 100%;
}

.reassurance-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.reassurance-text p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ==========================================================================
   ANATOMY OF ENERGY BILL (UNDE SE PIERD BANII TĂI)
   ========================================================================== */
.anatomy-section {
  padding: 5.5rem 0;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.anatomy-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  position: relative;
}

.anatomy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.anatomy-card-renegotiate {
  border-top: 4px solid var(--color-cta-green);
}

.anatomy-card-optimize {
  border-top: 4px solid #f59e0b;
}

.anatomy-card-regulated {
  border-top: 4px solid var(--color-primary-accent);
}

.anatomy-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--border-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.tag-green {
  background: rgba(37, 211, 102, 0.15);
  color: #15803d;
}

.tag-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.tag-blue {
  background: rgba(2, 132, 199, 0.12);
  color: var(--color-primary-accent);
}

.anatomy-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.anatomy-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.anatomy-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1.25rem;
  margin-top: auto;
}

.anatomy-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.anatomy-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.anatomy-item-icon svg {
  width: 18px;
  height: 18px;
}

.icon-green {
  background: rgba(37, 211, 102, 0.15);
  color: #15803d;
}

.icon-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.icon-blue {
  background: rgba(2, 132, 199, 0.12);
  color: var(--color-primary-accent);
}

.anatomy-item-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.anatomy-item-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Interactive Anatomy Callout Bar */
.anatomy-callout-box {
  background: linear-gradient(135deg, #102a43 0%, #0b192c 100%);
  color: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}

.anatomy-callout-info {
  max-width: 620px;
}

.anatomy-callout-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.anatomy-callout-info p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Legal Compliance & Regulatory Framework Block */
.legal-compliance-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2.25rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.legal-compliance-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #10b981 50%, #0369a1 100%);
}

.legal-compliance-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.25rem;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(2, 132, 199, 0.1);
  color: var(--color-primary-accent);
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.compliance-badge svg {
  width: 15px;
  height: 15px;
}

.legal-compliance-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.legal-compliance-subtitle {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.compliance-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.compliance-pillar-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.compliance-pillar-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-subtle);
  background: #ffffff;
}

.pillar-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--color-primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.pillar-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.pillar-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS SECTION (CE SPUN CLIENȚII)
   ========================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.featured-testimonial {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border: 2px solid rgba(37, 211, 102, 0.45);
  box-shadow: var(--shadow-card);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(37, 211, 102, 0.12);
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--border-radius-full);
}

.verified-badge svg {
  width: 14px;
  height: 14px;
}

.savings-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(2, 132, 199, 0.08);
  color: var(--color-primary-accent);
  border: 1px solid rgba(2, 132, 199, 0.2);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.featured-testimonial .savings-tag {
  background-color: rgba(37, 211, 102, 0.15);
  color: #15803d;
  border-color: rgba(37, 211, 102, 0.35);
}

.savings-tag svg {
  width: 15px;
  height: 15px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-style: normal;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-subtle);
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  flex-shrink: 0;
}

.author-avatar-1 {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.author-avatar-2 {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.author-avatar-3 {
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  line-height: 1.2;
}

.author-role {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-top: 0.15rem;
}

.author-location {
  font-size: 0.76rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* Trust Bar Under Testimonials */
.testimonials-trust-bar {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
}

.trust-stat-item strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  line-height: 1.2;
}

.trust-stat-item span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.trust-stat-sep {
  width: 1px;
  height: 36px;
  background-color: var(--color-border);
}

/* ==========================================================================
   FAQ SECTION (OBJECTIONS)
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.faq-container {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  background-color: var(--color-bg-light);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item[open] {
  border-color: #cbd5e1;
  background-color: var(--color-white);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary-accent);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA SECTION (BOTTOM)
   ========================================================================== */
.final-cta-section {
  padding: 5.5rem 0;
  background-color: var(--color-bg-light);
}

.final-cta-card {
  background: radial-gradient(circle at 50% 10%, #1e3a8a 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.cta-glow-effect {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22) 0%, rgba(2, 132, 199, 0) 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.final-cta-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.02em;
}

.final-cta-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin: 0 auto 2.5rem;
  max-width: 600px;
  font-weight: 500;
}

.final-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.direct-phone-indicator {
  font-size: 0.92rem;
  color: #94a3b8;
}

.direct-phone-indicator a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--color-cta-green);
}

/* ==========================================================================
   STICKY MOBILE WHATSAPP BAR
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #1eb956 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: var(--border-radius-full);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-primary-dark);
  color: #94a3b8;
  padding: 4.5rem 0 2.5rem;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-notice {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.footer-legal-notice strong {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.company-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.company-details-list li {
  line-height: 1.5;
}

.company-details-list strong {
  color: #cbd5e1;
}

.company-details-list a {
  color: var(--color-cta-green);
  font-weight: 700;
}

.footer-note {
  line-height: 1.6;
  color: #94a3b8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

/* ==========================================================================
   LEGAL MODALS (GDPR & TERMS)
   ========================================================================== */
.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
}

.legal-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.75rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-primary-navy);
}

.modal-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  margin-bottom: 1.25rem;
}

.modal-body-scroll {
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-main);
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes subtle-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   CALCULATOR / ESTIMATOR ECONOMII B2B
   ========================================================================== */
.calculator-section {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.calculator-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 16px 35px -8px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  margin-top: 1rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}

.calc-controls-col {
  padding: 2.75rem 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.calc-label-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.calc-current-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-accent);
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--border-radius-full);
  letter-spacing: -0.01em;
}

.calc-slider-wrap {
  margin-bottom: 2.25rem;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: var(--border-radius-full);
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0284c7;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.5);
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover,
.calc-slider::-webkit-slider-thumb:active {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.65);
}

.calc-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0284c7;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.5);
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.calc-presets-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.calc-presets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.calc-preset-btn {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 0.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-fast);
}

.calc-preset-btn .preset-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.2rem;
}

.calc-preset-btn .preset-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.calc-preset-btn:hover {
  border-color: var(--color-primary-accent);
  background: #f0f9ff;
  transform: translateY(-2px);
}

.calc-preset-btn.is-active {
  border-color: var(--color-primary-accent);
  background: #f0f9ff;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.25);
}

.calc-preset-btn.is-active .preset-amount {
  color: var(--color-primary-accent);
}

/* Results Column */
.calc-results-col {
  background: linear-gradient(135deg, #0b192c 0%, #102a43 100%);
  padding: 2.75rem 2.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.calc-results-col::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15), transparent 70%);
  pointer-events: none;
}

.calc-result-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.calc-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #86efac;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--border-radius-full);
  align-self: flex-start;
  margin-bottom: 1.25rem;
}

.pulse-dot-sm {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-cta-green);
  box-shadow: 0 0 8px var(--color-cta-green);
  display: inline-block;
  animation: pulse-badge 2s infinite;
}

.calc-result-prefix {
  display: block;
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.calc-result-amount {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: color 0.2s ease, transform 0.2s ease;
}

.calc-result-amount.value-updated {
  animation: calc-pulse 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes calc-pulse {
  0% { transform: scale(0.98); opacity: 0.8; }
  50% { transform: scale(1.03); color: #86efac; }
  100% { transform: scale(1); opacity: 1; }
}

.calc-result-sub {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-top: 0.5rem;
}

.calc-result-sub strong {
  color: #86efac;
}

.calc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 1.5rem 0;
}

.calc-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.calc-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.calc-feature-item .check-icon {
  width: 17px;
  height: 17px;
  color: var(--color-cta-green);
  flex-shrink: 0;
}

.calc-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.5rem;
  font-size: 1rem;
}

.calc-guarantee-note {
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 0.75rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calc-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .benefits-grid,
  .anatomy-grid,
  .testimonials-grid,
  .compliance-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .calculator-section {
    padding: 3.5rem 0;
  }

  .calc-controls-col,
  .calc-results-col {
    padding: 2rem 1.25rem;
  }

  .calc-presets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-result-amount {
    font-size: 1.75rem;
  }
  .top-bar {
    display: none;
  }

  .header {
    padding: 0.5rem 0;
  }

  .brand-logo {
    height: 54px;
    max-width: 270px;
  }

  .header-action {
    display: none;
  }

  .hero-section {
    padding: 3rem 0 2.5rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .btn-primary {
    width: 100%;
    padding: 1rem 1.25rem;
  }

  .trust-pills {
    flex-direction: column;
    gap: 0.4rem;
  }

  .trust-pill-divider {
    display: none;
  }

  .final-cta-card {
    padding: 3rem 1.5rem;
  }

  .final-cta-title {
    font-size: 1.85rem;
  }

  .final-btn-wrap .btn-large {
    width: 100%;
  }

  .reassurance-box {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }

  /* Show sticky mobile bar on mobile screens */
  .mobile-sticky-cta {
    display: block;
  }

  /* Add padding bottom to body so content isn't covered by sticky bar */
  body {
    padding-bottom: 72px;
  }
}
