/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES — ZEO ABSORB LANDING PAGE
   Inspired by scoartadepin.ro | Optimized for CRO & B2B Persuasion
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

:root {
  /* Colors */
  --primary: #ff6b00;         /* Safety Industrial Orange */
  --primary-hover: #e05e00;
  --primary-glow: rgba(255, 107, 0, 0.35);
  --secondary: #ef4444;       /* Alert / Urgency Red */
  --secondary-glow: rgba(239, 68, 68, 0.25);
  --success: #10b981;         /* Environmental Green */
  --success-light: #ecfdf5;
  --dark-bg: #0f172a;         /* Deep Slate Anthracite */
  --dark-card: #1e293b;
  --light-bg: #f8fafc;        /* Pristine Concrete Light Gray */
  --white: #ffffff;
  --ink: #0f172a;
  --body-text: #334155;
  --muted-text: #64748b;
  --border-color: #e2e8f0;
  
  /* Fonts */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Radii & Transitions */
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
}

/* ===== RESET & BASE STYLE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--body-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ===== LAYOUT & UTILITIES ===== */
.wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}

.section-light {
  background: var(--light-bg);
  color: var(--body-text);
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  font-family: var(--font-head);
}

.section-dark .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-dark .section-head h2 {
  color: var(--white);
}

.section-head h2 span {
  color: var(--primary);
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--border-color);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-pulse {
  animation: btnPulse 2.5s infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 107, 0, 0);
  }
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.urgency-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  text-align: center;
}

.urgency-inner span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.urgency-inner span strong {
  color: #fff;
  background: rgba(0,0,0,0.25);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 16px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 42px;
  width: auto;
  border-radius: 6px;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.phone-link span {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0b0f19 0%, #151d30 100%);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-head);
}

.badge-primary { background: var(--primary); color: var(--white); }
.badge-secondary { background: var(--secondary); color: var(--white); }
.badge-success { background: var(--success); color: var(--white); }
.badge-glass { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-content h1 span.accent {
  color: var(--primary);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
}

.trust-item svg {
  color: var(--success);
  width: 18px;
  height: 18px;
}

/* BEFORE / AFTER CONTAINER */
.before-after-wrapper {
  position: relative;
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.1);
  user-select: none;
  --position: 50%;
}

.before-after-container .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.before-after-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-container .before-img {
  z-index: 2;
  clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}

.before-after-container .after-img {
  z-index: 1;
}

.before-after-container .slider-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: ew-resize;
}

.before-after-container .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 4px;
  background: var(--primary);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after-container .slider-handle::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 12px var(--primary);
}

.before-after-container .handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px var(--primary-glow);
  border: 3px solid var(--white);
}

.before-after-container .handle-button svg {
  width: 22px;
  height: 22px;
}

.slider-label {
  position: absolute;
  bottom: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.slider-label-before {
  left: 16px;
  color: var(--secondary);
}

.slider-label-after {
  right: 16px;
  color: var(--success);
}

.slider-tip {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== SECTION 2: PROBLEMA ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}

.problem-card.red::before { background: var(--secondary); }
.problem-card.orange::before { background: var(--primary); }
.problem-card.dark::before { background: var(--ink); }

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.problem-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.problem-card.red .problem-icon-wrap { background: rgba(239, 68, 68, 0.1); color: var(--secondary); }
.problem-card.orange .problem-icon-wrap { background: rgba(255, 107, 0, 0.1); color: var(--primary); }
.problem-card.dark .problem-icon-wrap { background: rgba(15, 23, 42, 0.1); color: var(--ink); }

.problem-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.6;
}

/* ===== SECTION 3: SOLUȚIA ===== */
.products-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 2px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.product-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-bg);
  overflow: hidden;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.product-thumbnails {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.thumb-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.thumb-dot:hover, .thumb-dot.active {
  border-color: var(--primary);
  transform: scale(1.1);
}

.thumb-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
}

.product-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}

.spec-item svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
}

.product-packaging-select {
  margin-bottom: 24px;
}

.packaging-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-text);
  margin-bottom: 8px;
  font-family: var(--font-head);
}

.packaging-options {
  display: flex;
  gap: 12px;
}

.pack-opt {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.pack-opt:hover {
  border-color: var(--primary);
}

.pack-opt.active {
  border-color: var(--primary);
  background: rgba(255, 107, 0, 0.05);
  color: var(--primary);
}

.product-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.product-price-info {
  line-height: 1.2;
}

.product-price-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
}

.product-price-unit {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-text);
}

/* Strategic Help Strip */
.strategic-help-strip {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.01) 100%);
  border: 2px dashed rgba(255, 107, 0, 0.3);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

.strategic-help-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.strategic-help-content .help-icon {
  font-size: 2.2rem;
}

.strategic-help-content h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.strategic-help-content p {
  font-size: 0.88rem;
  color: var(--body-text);
}

/* ===== SECTION 4: CUM FUNCTIONEAZA ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-bottom: 50px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--border-color);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.step-card:hover .step-number {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.step-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--body-text);
  padding: 0 10px;
}

/* Regulatory Bonus Box */
.regulatory-box {
  background: var(--dark-card);
  border-left: 4px solid var(--success);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
}

.regulatory-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}

.regulatory-icon svg {
  width: 36px;
  height: 36px;
}

.regulatory-content h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.regulatory-content p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== SECTION 5: DE CE NOI ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SECTION 6: PENTRU CINE E ===== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.target-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.target-card:hover {
  transform: scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(255,107,0,0.05);
}

.target-symbol {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 16px;
}

.target-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.target-card p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.5;
}

/* ===== SECTION 7: DOVADA SOCIALA ===== */
.logos-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: 150px;
}

.logo-item.text-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--muted-text);
  letter-spacing: -0.01em;
  opacity: 0.6;
  text-transform: uppercase;
  transition: var(--transition);
}

.logo-item.text-logo:hover {
  opacity: 1;
  color: var(--ink);
}

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

.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border-color);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 107, 0, 0.08);
  font-family: Georgia, serif;
}

.rating-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--body-text);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.author-role {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Stats band */
.stats-band {
  background: linear-gradient(135deg, var(--ink) 0%, #152035 100%);
  border-radius: var(--r-lg);
  padding: 44px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item h3 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

/* ===== SECTION 8: FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  padding-right: 20px;
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-icon-box svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-icon-box {
  background: var(--primary);
  color: var(--white);
}

.faq-item.active svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  background: var(--white);
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--body-text);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-content-inner {
  border-color: var(--light-bg);
}

/* ===== SECTION 9: CTA FINAL (FORMULAR B2B) ===== */
.cta-section {
  background: linear-gradient(135deg, #0b0f19 0%, #151d30 100%);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.cta-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.cta-info h2 span {
  color: var(--primary);
}

.cta-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-phone-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-phone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.cta-phone-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.cta-phone-details span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.cta-phone-details a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  transition: var(--transition);
}

.cta-phone-details a:hover {
  color: var(--primary);
}

.cta-phone-details p {
  margin: 4px 0 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* B2B Form */
.cta-form-container {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  border: 1.5px solid rgba(255,255,255,0.05);
}

.cta-form-container h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-form-container .form-sub {
  font-size: 0.88rem;
  color: var(--muted-text);
  margin-bottom: 28px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-text);
  font-family: var(--font-head);
}

.form-group label span {
  color: var(--secondary);
}

.form-group input, .form-group select {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--ink);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08);
}

.form-btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--r-sm);
  margin-top: 12px;
}

.form-safety-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--muted-text);
}

/* Success Overlay in Form */
.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 2.2rem;
}

.form-success-message h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-success-message p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #090c14;
  color: rgba(255,255,255,0.45);
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about .footer-brand-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-about .footer-brand-text span {
  color: var(--primary);
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-links-col h4, .footer-contact-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-contact-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-col svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
}

.footer-law-links {
  display: flex;
  gap: 20px;
}

.footer-law-links a:hover {
  color: var(--white);
}

/* ===== POPUP / VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-container {
  width: 100%;
  max-width: 800px;
  background: var(--dark-bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.video-modal-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-modal-ratio iframe, .video-modal-ratio video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-badge-row, .trust-strip, .hero-actions {
    justify-content: center;
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .problems-grid, .features-grid, .target-grid, .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none; /* Mobile menu logic in JS if needed, or simple anchor list */
  }
  
  .site-header {
    padding: 12px 0;
  }
  
  .brand-logo {
    height: 36px;
  }
  
  .header-cta .btn {
    display: none; /* Hide primary header button on mobile to save space */
  }
  
  .problems-grid, .features-grid, .target-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .product-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .steps-grid::before {
    display: none;
  }
  
  .regulatory-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  
  .regulatory-icon {
    margin: 0 auto;
  }
  
  .strategic-help-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .strategic-help-content {
    flex-direction: column;
  }
  
  .strategic-help-strip .btn {
    width: 100%;
  }
  
  .logos-row {
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta-form-container {
    padding: 24px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .cta-phone-card {
    flex-direction: column;
    text-align: center;
  }
}
