:root {
  --bg-main: #0B1220;
  --bg-secondary: #111827;

  --accent-primary: #2DD4BF;
  --accent-hover: #5EEAD4;

  --text-main: #E5E7EB;
  --text-muted: #9CA3AF;

  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Typography Scale - Refined for B2B Premium */
  /* H1: Hero headline - Authoritative, not shouty */
  --font-h1-size: 44px;
  --font-h1-line-height: 1.15;
  --font-h1-weight: 600;
  --font-h1-letter-spacing: -0.02em;

  /* H2: Section titles - Consistent hierarchy */
  --font-h2-size: 32px;
  --font-h2-line-height: 1.25;
  --font-h2-weight: 600;

  /* H3: Subtitles / Card titles - Clear but not bold */
  --font-h3-size: 20px;
  --font-h3-line-height: 1.3;
  --font-h3-weight: 500;

  /* Body: Optimized for reading */
  --font-body-size: 16px;
  --font-body-line-height: 1.7;
  --font-body-weight: 400;

  /* Testimonial: Slightly larger for emphasis */
  --font-testimonial-size: 18px;
  --font-testimonial-line-height: 1.75;

  /* Secondary / Micro-copy: Soft, discrete */
  --font-secondary-size: 13px;
  --font-secondary-line-height: 1.65;
  --font-secondary-opacity: 0.75;

  /* Spacing Scale - Standardized */
  --spacing-section-desktop: 96px;
  --spacing-section-tablet: 72px;
  --spacing-section-mobile: 56px;
  
  --spacing-section-large-desktop: 120px;
  --spacing-section-large-tablet: 96px;
  --spacing-section-large-mobile: 72px;
  
  --spacing-title-subtitle: 20px;
  --spacing-subtitle-content: 40px;
  --spacing-subtitle-content-large: 48px;
  
  --spacing-container-horizontal: 20px;
  --spacing-container-horizontal-desktop: 24px; /* Slightly more padding on desktop */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line-height);
  font-weight: var(--font-body-weight);
  position: relative;
  overflow-x: hidden;
  /* Safe area support for notched devices - only on mobile */
}

/* Safe area padding only on mobile devices */
@media (max-width: 768px) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 0;
}

/* HEADER */
.site-header {
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  background: var(--bg-main);
  z-index: 10;
}

.nav {
  padding: 20px 0; /* Original padding */
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 24px;
}

/* Mobile header - fixed position with safe area support */
@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-main);
    z-index: 1000;
    /* Safe area support for iOS notch */
    padding-top: env(safe-area-inset-top);
  }

  .nav {
    padding: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
  }

  .nav .container {
    width: 100%;
    padding: 0 max(20px, env(safe-area-inset-left)) 0 max(20px, env(safe-area-inset-right));
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Ensure logo is fully visible and not cut off */
  .logo {
    height: auto;
    min-height: 32px;
    flex-shrink: 0;
    z-index: 1001;
  }

  .logo-text {
    font-size: 1rem;
    white-space: nowrap;
  }

  /* Add padding to body when mobile menu is open to prevent scroll */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* Add padding to main content to account for fixed header */
  main {
    padding-top: calc(56px + env(safe-area-inset-top));
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 32px;
  color: #FFFFFF;
}

.logo-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}

.logo-primary {
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.logo-secondary {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
}

.logo-accent {
  font-weight: 400;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

/* Hide Contact button from nav-links on desktop (it's in nav-actions) */
.nav-links .nav-link.nav-cta,
.nav-links .nav-link.btn-primary {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  opacity: 0.8;
}

.nav-social-link:hover {
  color: var(--accent-primary);
  opacity: 1;
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-cta {
  margin-left: 0;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--font-secondary-size);
  font-weight: var(--font-body-weight);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-primary);
}

.nav-link.active {
  color: var(--accent-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-primary);
  opacity: 0.6;
}

.nav-link.btn-primary {
  color: var(--bg-main);
  background: var(--accent-primary);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-link.btn-primary:hover,
.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--bg-main);
}

.nav-link.btn-primary.active,
.nav-cta.active {
  color: var(--bg-main);
}

.nav-link.btn-primary.active::after,
.nav-cta.active::after {
  display: none;
}

/* Hamburger menu - Desktop hidden */
.nav-toggle {
  display: none; /* Hidden on desktop, shown on mobile via media query */
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  border-radius: 1px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Close button - Hidden on desktop */
.nav-menu-close {
  display: none;
}

/* Mobile hamburger button */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-toggle:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }
}

/* BUTTONS */
.btn-primary {
  background: var(--accent-primary);
  color: var(--bg-main);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: var(--font-body-size);
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-main);
  background: transparent;
  padding: 14px 24px;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(45, 212, 191, 0.08);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-secondary {
  font-weight: 500;
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(45, 212, 191, 0.08);
}

.btn-large {
  padding: 16px 28px;
  font-size: 1.1rem;
}

/* HERO - Special spacing (exception) */
.hero {
  margin: 64px 0 0;
  padding: 0 0 96px;
  text-align: left;
  position: relative;
}

/* Subtle radial gradient in hero only */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(14, 22, 40, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: var(--font-h1-size);
  line-height: var(--font-h1-line-height);
  font-weight: var(--font-h1-weight);
  letter-spacing: var(--font-h1-letter-spacing);
  margin-bottom: 36px;
}

.hero p {
  color: var(--text-muted);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line-height);
  font-weight: var(--font-body-weight);
  margin: 24px 0 40px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 40px;
  color: var(--text-muted);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line-height);
  font-weight: var(--font-body-weight);
}

.hero-points li {
  margin-bottom: 8px;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 32px;
  color: var(--accent-primary);
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  letter-spacing: 0.2px;
  opacity: 0.8;
}

.hero-pricing-note {
  margin-top: 16px;
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  color: var(--text-muted);
  font-weight: var(--font-body-weight);
  opacity: var(--font-secondary-opacity);
  text-align: left;
}

/* GLOBAL CONTAINER - Standardized alignment */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--spacing-container-horizontal);
  box-sizing: border-box; /* Ensure padding is included in width calculation */
}

/* Desktop: More padding for better spacing */
@media (min-width: 769px) {
  .container {
    padding: 0 var(--spacing-container-horizontal-desktop);
  }
}

/* SECTIONS - Standardized vertical spacing */
.section {
  padding: var(--spacing-section-desktop) 0;
}

.section > .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Secțiunile alternate folosesc același standard */
.section.section-alt {
  padding: var(--spacing-section-desktop) 0;
}

.section h2 {
  font-size: var(--font-h2-size);
  line-height: var(--font-h2-line-height);
  font-weight: var(--font-h2-weight);
  margin-bottom: var(--spacing-title-subtitle);
  text-align: left;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line-height);
  font-weight: var(--font-body-weight);
  margin-bottom: var(--spacing-subtitle-content);
  max-width: 680px;
  opacity: var(--font-secondary-opacity);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 0;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 24, 39, 0.6);
}

.card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-primary);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::before {
  opacity: 0.2;
}

.card-number {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.card:hover .card-number {
  opacity: 0.9;
}

.card h3 {
  font-size: var(--font-h3-size);
  line-height: var(--font-h3-line-height);
  font-weight: var(--font-h3-weight);
  margin-bottom: 8px;
}

.card-subtitle {
  color: var(--text-muted);
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  margin-bottom: 16px;
  opacity: var(--font-secondary-opacity);
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: var(--font-body-weight);
}

/* Soft CTA – "Ce facem" */
.services-soft-cta {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.soft-cta-text {
  color: var(--text-muted);
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  margin: 0;
  opacity: var(--font-secondary-opacity);
}

.soft-cta-link {
  width: fit-content;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

/* underline subtil */
.soft-cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-primary);
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.soft-cta-link:hover {
  color: var(--accent-hover);
}

.soft-cta-link:hover::after {
  opacity: 0.7;
}

/* TARGET AUDIENCE - Structură semantică */
/* Default: Mobile-first - flex column */
.target-audience {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.target-audience::before {
  display: none;
}

/* Desktop: Grid 2 coloane - DOAR pe ecrane mari */
@media (min-width: 769px) {
  .target-audience {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 48px !important;
    row-gap: 16px !important;
    align-items: stretch;
    position: relative;
  }

  .target-title {
    margin: 0 0 8px 0;
  }

  /* Vertical separator between columns */
  .target-audience::before {
    display: block !important;
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-subtle);
    opacity: 0.5;
    transform: translateX(-50%);
  }
}

/* Grupuri */
.target-group {
  display: flex;
  flex-direction: column;
}

/* Titluri */
.target-title {
  margin: 0 0 32px 0;
  font-size: var(--font-h2-size);
  line-height: var(--font-h2-line-height);
  font-weight: var(--font-h2-weight);
  color: var(--text-main);
}

/* Liste */
.target-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.target-list li {
  list-style: disc;
  padding-left: 4px;
}

/* Item-uri (carduri) */
.target-item {
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.2s ease;
  position: relative;
}

.target-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 39, 0.8);
  transform: translateY(-1px);
}

/* Item-uri pozitive - accent border */
.target-item--positive {
  border-left: 3px solid var(--accent-primary);
}

.target-item--positive::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-primary);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.target-item--positive:hover::before {
  opacity: 0.4;
}

/* Item-uri negative - identic cu positive */
.target-item--negative {
  border-left: 3px solid var(--accent-primary);
}

.target-item--negative::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-primary);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.target-item--negative:hover::before {
  opacity: 0.4;
}


/* Descriere */
.target-description {
  margin: 0;
  font-size: var(--font-body-size);
  line-height: var(--font-body-line-height);
  color: var(--text-main);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-check {
  color: var(--accent-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  min-width: 32px;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(45, 212, 191, 0.2);
  transition: all 0.2s ease;
}

.target-audience-row .why-item:hover .why-check {
  background: rgba(45, 212, 191, 0.15);
  border-color: rgba(45, 212, 191, 0.3);
  transform: scale(1.05);
}

/* Style for negative checkmarks (X) */
.why-item .why-check[style*="color: var(--text-muted)"] {
  color: var(--text-muted);
  background: rgba(156, 163, 175, 0.08);
  border-color: rgba(156, 163, 175, 0.15);
}

.target-audience-row .why-item:hover .why-check[style*="color: var(--text-muted)"] {
  background: rgba(156, 163, 175, 0.12);
  border-color: rgba(156, 163, 175, 0.2);
}

.why-content {
  flex: 1;
  min-width: 0; /* Prevent flex item from overflowing */
  display: flex;
  flex-direction: column;
}

.why-title {
  font-size: var(--font-h3-size);
  line-height: var(--font-h3-line-height);
  font-weight: var(--font-h3-weight);
  color: var(--text-main);
  margin: 0 0 12px 0;
}

.why-description {
  color: var(--text-main);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line-height);
  font-weight: var(--font-body-weight);
  margin: 0;
  opacity: 0.9;
}

.target-audience-row .why-item:hover .why-description {
  opacity: 1;
}

/* TESTIMONIAL SECTION - Premium Redesign */
.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-title {
  font-size: var(--font-h2-size);
  line-height: var(--font-h2-line-height);
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 36px 0;
  text-align: left;
  position: relative;
  padding-left: 20px;
}

.testimonial-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-primary);
  border-radius: 2px;
  opacity: 0.6;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 24px;
}

.testimonial-card {
  width: 100%;
  max-width: 1000px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 39, 0.7);
}

.testimonial-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.testimonial-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
}


.testimonial-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 32px 0;
  font-style: normal;
  font-weight: var(--font-body-weight);
  position: relative;
  z-index: 1;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.testimonial-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

.testimonial-name {
  font-size: var(--font-body-size);
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.testimonial-role {
  font-size: var(--font-secondary-size);
  color: var(--text-muted);
  opacity: 0.8;
  margin: 0;
}

.testimonial-link {
  font-size: var(--font-secondary-size);
  color: var(--accent-primary);
  text-decoration: none;
  margin-top: 2px;
  display: inline-block;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.75;
}

.testimonial-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  opacity: 1;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 24, 39, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  opacity: 0.7;
  transition: all 0.2s ease;
}

.testimonial-btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(17, 24, 39, 0.7);
  color: var(--text-main);
  opacity: 1;
}

.testimonial-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.testimonial-btn svg {
  width: 24px;
  height: 24px;
}

/* PROCESS TIMELINE */
.process-timeline {
  margin: 0;
  position: relative;
  padding-left: 0;
}

/* Linie verticală subtilă care leagă pașii */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-subtle);
  opacity: 0.5;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-primary);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: 4px;
}

.step-title {
  font-size: var(--font-h3-size);
  line-height: var(--font-h3-line-height);
  font-weight: var(--font-h3-weight);
  color: var(--text-main);
  margin: 0 0 6px 0;
}

.step-description {
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  color: var(--text-muted);
  font-weight: var(--font-body-weight);
  opacity: var(--font-secondary-opacity);
  margin: 0;
}

.simple-note {
  margin-top: 32px;
  color: var(--text-muted);
  text-align: left;
  font-size: 1rem;
}

/* FINAL CTA - Special spacing (exception) */
.final-cta {
  padding: var(--spacing-section-large-desktop) 0;
  border-top: none;
}

.final-cta .container {
  text-align: center;
}

.final-cta h2 {
  font-size: var(--font-h2-size);
  line-height: var(--font-h2-line-height);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--spacing-title-subtitle);
}

.final-cta p {
  color: var(--text-muted);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line-height);
  font-weight: var(--font-body-weight);
  margin: 16px 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-reassurance {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: var(--font-body-weight);
  opacity: 0.65;
  margin: 16px 0 0 0;
}

.btn-primary:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.btn-primary.btn-large:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(45, 212, 191, 0.25);
  transform: translateY(-1px);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  border-top-opacity: 0.5;
  padding: 48px 0 0;
  color: var(--text-muted);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  text-align: left;
  padding-bottom: 32px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  margin: 0;
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  color: var(--text-main);
  font-weight: var(--font-body-weight);
  opacity: 0.8;
}

.footer-brand strong {
  color: var(--text-main);
  font-weight: 500;
}

.footer-location {
  margin: 0;
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  opacity: 0.6;
}

.footer-description {
  margin: 12px 0 0 0;
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  opacity: var(--font-secondary-opacity);
  max-width: 200px;
}

.footer-contact {
  margin: 0;
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  opacity: 0.8;
}

.footer-contact span {
  display: inline-block;
  filter: grayscale(100%) brightness(10);
  opacity: 0.7;
  margin-right: 6px;
}

.footer-social {
  margin: 12px 0 0 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-linkedin,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all 0.2s ease;
  text-decoration: none;
  opacity: 0.9;
}

.footer-linkedin:hover,
.footer-whatsapp:hover {
  opacity: 1;
  border-color: var(--accent-primary);
  background: rgba(45, 212, 191, 0.08);
  transform: translateY(-1px);
}

.footer-linkedin svg,
.footer-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: fill 0.2s ease;
}

.footer-linkedin:hover svg,
.footer-whatsapp:hover svg {
  fill: var(--accent-primary);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--font-secondary-size);
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-primary);
  opacity: 1;
}

.footer-section-title {
  font-size: var(--font-secondary-size);
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: var(--font-secondary-line-height);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav .footer-link {
  display: block;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 16px 0;
  background: var(--bg-main);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 12px;
  line-height: var(--font-secondary-line-height);
  font-weight: var(--font-body-weight);
  margin: 0;
  opacity: 0.6;
  color: var(--text-muted);
}

.footer-cookie-settings {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.8;
  transition: color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.footer-cookie-settings:hover {
  color: var(--accent-primary);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* Tablet spacing */
  .section {
    padding: var(--spacing-section-tablet) 0;
  }

  .section.section-alt {
    padding: var(--spacing-section-tablet) 0;
  }

  .hero {
    padding-bottom: var(--spacing-section-tablet);
  }

  .hero .container {
    text-align: center;
  }

  .final-cta {
    padding: var(--spacing-section-large-tablet) 0;
  }

  /* Responsive typography for tablet */
  .hero h1 {
    font-size: clamp(28px, 5vw, 36px);
    line-height: clamp(1.15, 1.2 + 0.1vw, 1.25);
  }
  
  .section h2 {
    font-size: clamp(26px, 5.5vw, 32px);
    line-height: clamp(1.25, 1.3 + 0.1vw, 1.3);
  }

  .hero-actions {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Mobile: Target audience - flexbox column, flow natural */
  /* Suprascrie orice regulă desktop pentru ecrane mici */
  .target-audience {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
    gap: 16px !important;
    position: static !important;
  }

  .target-title--positive { order: 1; }
  .target-item--positive  { order: 2; }
  .target-title--negative { order: 3; margin-top: 40px; }
  .target-item--negative  { order: 4; }

  .target-audience::before {
    display: none !important;
    content: none !important;
  }

  .target-group {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .target-title {
    font-size: clamp(22px, 6vw, 28px);
    text-align: left; /* Aliniere la stânga pe mobile, ca pe desktop */
    margin-bottom: 24px;
  }

  .target-item {
    padding: 24px;
    width: 100%;
  }

  /* Footer responsive - tablet */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-column:nth-child(3),
  .footer-column:nth-child(4) {
    grid-column: span 1;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .testimonial-title {
    font-size: 28px;
    margin-bottom: 32px;
    padding-left: 16px;
  }

  .testimonial-title::before {
    width: 2px;
  }

  .testimonial-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonial-text {
    padding: 40px 32px;
  }


  .testimonial-headline {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .testimonial-quote {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .testimonial-image {
    order: -1;
    min-height: 300px;
  }

  .testimonial-avatar {
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 480px) {
  /* Mobile spacing - Normalized 8px/16px/24px/32px system */
  .section {
    padding: var(--spacing-section-mobile) 0;
  }

  .section.section-alt {
    padding: var(--spacing-section-mobile) 0;
  }

  /* Hero section - Improved alignment and spacing */
  .hero {
    margin-top: 64px;
    padding: 32px 0 var(--spacing-section-mobile);
    text-align: center;
  }

  .hero .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Responsive typography with clamp() */
  .hero h1 {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: clamp(1.2, 1.15 + 0.1vw, 1.25);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
  }

  .hero p {
    font-size: clamp(15px, 4vw, 16px);
    line-height: clamp(1.6, 1.65 + 0.1vw, 1.7);
    margin: 0 0 24px 0;
    max-width: 100%;
  }

  .hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
  }

  .hero-points li {
    margin-bottom: 12px;
    font-size: clamp(15px, 4vw, 16px);
    line-height: clamp(1.6, 1.65 + 0.1vw, 1.7);
    padding-left: 0;
    text-indent: 0;
  }

  /* CTA buttons - Full width with equal spacing */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 16px 0;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    padding: 16px 24px;
    font-size: clamp(15px, 4vw, 16px);
    text-align: center;
    justify-content: center;
  }

  .hero-pricing-note {
    margin-top: 16px;
    font-size: clamp(12px, 3.5vw, 13px);
    line-height: 1.65;
    text-align: center;
    width: 100%;
  }

  .hero-trust {
    margin-top: 24px;
    font-size: clamp(12px, 3.5vw, 13px);
    line-height: 1.65;
    text-align: center;
    width: 100%;
  }

  .final-cta {
    padding: var(--spacing-section-large-mobile) 0;
  }

  /* Section headings with clamp() */
  .section h2 {
    font-size: clamp(22px, 6vw, 26px);
    line-height: clamp(1.25, 1.3 + 0.1vw, 1.3);
    margin-bottom: 16px;
    text-align: center;
  }

  .section-subtitle {
    font-size: clamp(14px, 4vw, 16px);
    line-height: clamp(1.6, 1.65 + 0.1vw, 1.7);
    margin-bottom: 32px;
    text-align: center;
    max-width: 100%;
  }

  /* Testimonial adjustments */
  .testimonial-title {
    font-size: clamp(22px, 6vw, 26px);
    margin-bottom: 24px;
    padding-left: 14px;
    text-align: left;
  }

  .testimonial-title::before {
    width: 2px;
  }

  .testimonial-text {
    padding: 32px 24px;
  }

  .testimonial-headline {
    font-size: clamp(18px, 5vw, 20px);
  }

  .testimonial-quote {
    font-size: clamp(14px, 4vw, 15px);
    line-height: 1.75;
  }

  .testimonial-image {
    min-height: 250px;
  }

  .testimonial-avatar {
    border-radius: 20px 20px 0 0;
  }

  /* Process timeline */
  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: clamp(18px, 4.5vw, 20px);
  }

  .process-step {
    gap: 16px;
    margin-bottom: 32px;
  }

  .step-title {
    font-size: clamp(17px, 4.5vw, 18px);
    line-height: 1.3;
    font-weight: 500;
  }

  .step-description {
    font-size: clamp(13px, 3.5vw, 14px);
    line-height: 1.65;
  }

  /* Why list - Perfect alignment */
  .why-list {
    gap: 32px;
  }

  .why-item {
    gap: 12px;
    align-items: flex-start;
  }

  .why-check {
    width: 20px;
    min-width: 20px;
    font-size: clamp(16px, 4vw, 18px);
    padding-top: 2px;
  }

  .why-description {
    font-size: clamp(14px, 4vw, 16px);
    line-height: clamp(1.6, 1.65 + 0.1vw, 1.7);
  }

  /* Target audience grid - Mobile alignment */
  .target-title {
    margin-bottom: 20px;
    font-size: clamp(20px, 5.5vw, 24px);
    text-align: left; /* Aliniere la stânga pe mobile */
  }

  .target-item {
    padding: 20px;
  }


  .target-description {
    font-size: clamp(14px, 4vw, 16px);
  }

  /* Container adjustments for safe areas */
  .container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  /* Cards - Mobile adjustments */
  .cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card {
    padding: 24px;
  }

  .card h3 {
    font-size: clamp(18px, 4.5vw, 20px);
    line-height: 1.3;
  }

  .card p {
    font-size: clamp(14px, 4vw, 15px);
    line-height: 1.65;
  }

  /* Final CTA - Mobile adjustments */
  .final-cta h2 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: clamp(1.25, 1.3 + 0.1vw, 1.3);
    margin-bottom: 16px;
  }

  .final-cta p {
    font-size: clamp(14px, 4vw, 16px);
    line-height: clamp(1.6, 1.65 + 0.1vw, 1.7);
    margin: 16px auto 24px;
    max-width: 100%;
  }

  .final-cta .btn-primary.btn-large {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: clamp(15px, 4vw, 18px);
  }

  .cta-reassurance {
    font-size: clamp(11px, 3vw, 12px);
    margin-top: 16px;
  }

  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-column {
    gap: 8px;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
    margin: 12px auto 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Mobile navigation - Full screen overlay */
  .nav-actions {
    display: none;
  }

  /* Hide hamburger button when menu is open (to avoid overlap with close button) */
  .nav-toggle[aria-expanded="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Mobile menu backdrop */
  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    backdrop-filter: blur(4px);
  }

  .nav-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile menu drawer - Full screen from right */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: var(--bg-main);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(56px + env(safe-area-inset-top)) 24px 32px 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: max(32px, env(safe-area-inset-bottom));
    gap: 0;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    right: 0;
  }

  /* Close button inside menu */
  .nav-menu-close {
    position: fixed;
    top: calc(16px + env(safe-area-inset-top));
    right: max(24px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--accent-primary);
    border-radius: 10px;
    color: var(--accent-primary);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.2s ease;
  }

  .nav-menu-close.visible {
    display: flex;
  }

  .nav-menu-close:hover,
  .nav-menu-close:focus {
    background: rgba(45, 212, 191, 0.1);
    border-color: var(--accent-hover);
    color: var(--accent-hover);
    outline: none;
  }

  .nav-menu-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
  }

  /* Menu items - Vertical list with proper spacing */
  .nav-links .nav-link {
    width: 100%;
    min-height: 52px;
    padding: 16px 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
  }

  .nav-links .nav-link:first-child {
    margin-top: 0;
  }

  .nav-links .nav-link:last-of-type:not(.nav-cta):not(.btn-primary) {
    border-bottom: none;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link:focus {
    color: var(--accent-primary);
    background-color: rgba(45, 212, 191, 0.05);
    outline: none;
  }

  /* Active page indicator */
  .nav-links .nav-link.active {
    color: var(--accent-primary);
    font-weight: 500;
    padding-left: 20px; /* Add space between vertical line and text */
  }

  .nav-links .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-primary);
    border-radius: 0 2px 2px 0;
  }

  .nav-links .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: var(--accent-primary);
    opacity: 0.6;
  }

  /* Contact button - Styled as primary CTA */
  .nav-links .nav-link.nav-cta,
  .nav-links .nav-link.btn-primary {
    display: flex; /* Show Contact button in mobile menu (override desktop hide) */
    margin-top: 32px;
    padding: 16px 24px;
    background: var(--accent-primary);
    color: var(--bg-main);
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-bottom: none;
    transition: all 0.2s ease;
    width: 100%;
  }

  .nav-links .nav-link.nav-cta:hover,
  .nav-links .nav-link.nav-cta:focus,
  .nav-links .nav-link.btn-primary:hover,
  .nav-links .nav-link.btn-primary:focus {
    background: var(--accent-hover);
    color: var(--bg-main);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.25);
  }

  .nav-links .nav-link.nav-cta.active::before,
  .nav-links .nav-link.btn-primary.active::before {
    display: none;
  }

  /* Remove social icons from mobile menu (not needed) */
  .nav-social {
    display: none;
  }
}

/* Extra small screens (360px - 430px) */
@media (max-width: 430px) {
  .nav .container {
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  }

  .nav-links {
    padding: calc(56px + env(safe-area-inset-top)) 20px 28px 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .nav-links .nav-link {
    font-size: 1.0625rem;
    padding: 16px 0;
  }

  .nav-links .nav-link.nav-cta,
  .nav-links .nav-link.btn-primary {
    padding: 18px 20px;
    font-size: 1.0625rem;
  }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   Subtle, premium, B2B-appropriate
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
