/* ============================================
   FUM ȘI OGLINZI — Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0A0A0F;
  --bg-secondary: #141419;
  --bg-tertiary: #1E1E26;
  --accent: #E8A849;
  --accent-secondary: #F0D68A;
  --text-primary: #EEEEF0;
  --text-secondary: #9B9BA3;
  --text-muted: #5A5A66;
  --border: #2A2A35;
  --success: #4ADE80;
  --error: #F87171;
  --whatsapp: #25D366;

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Sizes */
  --container: 1200px;
  --container-narrow: 680px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease-out;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

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

a:hover {
  color: var(--accent-secondary);
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
}

.display {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.text-accent {
  color: var(--accent);
}

.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-secondary);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 73, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Glass Card --- */
.glass-card {
  background: rgba(20, 20, 25, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: rgba(232, 168, 73, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.glass-card-static {
  background: rgba(20, 20, 25, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* --- Clickable Card --- */
.card-link {
  height: 100%;
  display: block;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.card-link:hover {
  color: inherit;
}

.card-link:hover .glass-card {
  border-color: rgba(232, 168, 73, 0.3);
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(232, 168, 73, 0.08);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
}

.logo:hover {
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent);
}

.logo-mobile {
  display: none;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  margin-top: 4px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

/* Nav CTA */
.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.98);
  z-index: 999;
  padding: 100px 32px 32px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu .mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu .mobile-link:hover {
  color: var(--accent);
}

.mobile-menu .mobile-sub-link {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 0 8px 20px;
  transition: color var(--transition);
}

.mobile-menu .mobile-sub-link:hover {
  color: var(--accent);
}

.mobile-menu .mobile-cta {
  margin-top: 24px;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown-toggle .chevron {
  transition: transform var(--transition);
  font-size: 14px;
}

.mobile-dropdown-toggle.active .chevron {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  display: none;
  padding-bottom: 8px;
}

.mobile-sub-menu.active {
  display: block;
}

/* --- Smoke Canvas --- */
.smoke-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Mirror Reflection --- */
.mirror-container {
  position: relative;
}

.mirror-reflection {
  position: relative;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 40%, transparent 75%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 40%, transparent 75%);
  pointer-events: none;
  user-select: none;
  margin-top: -8px;
  height: clamp(40px, 6vw, 60px);
  overflow: hidden;
}

.mirror-reflection .display {
  display: block;
  background: linear-gradient(180deg, rgba(232, 168, 73, 0.25) 0%, rgba(238, 238, 240, 0.12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(0.5px);
}

/* Subtle mirror surface line */
.mirror-container::after {
  content: '';
  display: block;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 168, 73, 0.25), rgba(255, 255, 255, 0.1), rgba(232, 168, 73, 0.25), transparent);
  margin: 0 auto;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 73, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-body {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 24px auto 40px;
  line-height: 1.8;
}

.hero h2 {
  color: var(--text-secondary);
  margin-top: 16px;
}

/* Compact Hero (for sub-pages) */
.hero-compact {
  min-height: auto;
  padding: 160px 24px 60px;
}

/* Product Hero */
.hero-product {
  min-height: auto;
  padding: 140px 24px 60px;
  text-align: left;
}

.hero-product .hero-content {
  max-width: 100%;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
}

.price-tag {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--accent);
  margin: 16px 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  padding-right: 0;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 20px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Grid Layouts --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-7>*:nth-last-child(1):nth-child(3n+1) {
  grid-column: 2;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
}

.section-header.text-center p {
  margin: 0 auto;
}

/* --- Step Card --- */
.step-card .step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}

.step-card .step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* --- Marketplace Card (large) --- */
.marketplace-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.marketplace-card .card-visual {
  height: 200px;
  background: var(--bg-tertiary);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -32px -32px 24px;
  border-bottom: 1px solid var(--border);
}

.card-visual-text {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.marketplace-card .card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}

.marketplace-card h3 {
  margin-bottom: 8px;
}

.marketplace-card .card-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.marketplace-card .card-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
}

.marketplace-card .card-cta {
  font-weight: 600;
  color: var(--accent);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.marketplace-card:hover .card-cta,
.card-link:hover .card-cta {
  gap: 12px;
}

/* Bullet list on cards */
.card-bullets {
  margin-bottom: 24px;
}

.card-bullets li {
  color: var(--text-secondary);
  font-size: 15px;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.card-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* --- Service Card (small) --- */
.service-card {
  padding: 28px;
}

.service-card .card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card .card-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .card-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 16px;
}

.service-card .card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.service-card:hover .card-cta {
  gap: 10px;
}

/* --- Feature Block (Why Us) --- */
.feature-block h3 {
  margin-bottom: 12px;
  color: var(--accent);
}

.feature-block p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Testimonials --- */
.section-hidden {
  display: none;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial-card .testimonial-business {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 73, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
}

.cta-section .btn-group {
  justify-content: center;
  position: relative;
}

.cta-small-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  position: relative;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
}

.checklist li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* --- Timeline / Stepper --- */
.timeline {
  position: relative;
  max-width: 700px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-step {
  position: relative;
  padding-left: 56px;
  padding-bottom: 40px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
}

.timeline-step h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.timeline-step .step-time {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.timeline-step p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* --- Horizontal Steps (for marketplace hub) --- */
.steps-horizontal {
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
}

.steps-horizontal::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
}

.step-h {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.step-h-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.step-h h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-h p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* --- Add-on Table --- */
.addon-grid {
  display: grid;
  gap: 16px;
}

.addon-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
}

.addon-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.addon-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.addon-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  font-size: 15px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Placeholder / Example Frame --- */
.placeholder-frame {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  min-height: 200px;
  padding: 32px;
}

.placeholder-frame .placeholder-label {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* --- Before/After Grid --- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ba-pair .placeholder-frame {
  min-height: 160px;
}

.ba-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- Deliverables List --- */
.deliverables-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.deliverables-list li:last-child {
  border-bottom: none;
}

.deliverables-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Process Steps (numbered) --- */
.process-steps {
  counter-reset: process;
}

.process-step {
  counter-increment: process;
  padding: 16px 0;
  padding-left: 48px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step::before {
  content: counter(process) '.';
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

.process-step p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand .logo {
  font-size: 16px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand .footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.footer-brand .footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 14px;
  color: var(--text-secondary);
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 13px;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-children.visible>*:nth-child(1) {
  transition-delay: 0ms;
}

.fade-in-children.visible>*:nth-child(2) {
  transition-delay: 100ms;
}

.fade-in-children.visible>*:nth-child(3) {
  transition-delay: 200ms;
}

.fade-in-children.visible>*:nth-child(4) {
  transition-delay: 300ms;
}

.fade-in-children.visible>*:nth-child(5) {
  transition-delay: 400ms;
}

.fade-in-children.visible>*:nth-child(6) {
  transition-delay: 500ms;
}

.fade-in-children.visible>*:nth-child(7) {
  transition-delay: 600ms;
}

/* --- Editorial (Despre) --- */
.editorial p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

.editorial p:first-child {
  font-size: 22px;
  color: var(--text-primary);
}

.editorial strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .grid-7>*:nth-last-child(1):nth-child(3n+1) {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .steps-horizontal {
    flex-direction: column;
    gap: 24px;
  }

  .steps-horizontal::before {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .container,
  .container-narrow {
    padding: 0 16px;
  }

  .grid-3,
  .grid-2,
  .grid-2x2,
  .grid-7 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 100px 16px 60px;
    min-height: 90vh;
  }

  .hero-compact {
    padding: 120px 16px 40px;
  }

  .hero-product {
    padding: 110px 16px 40px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: inline;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-row {
    gap: 32px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float .wa-tooltip {
    display: none;
  }

  .marketplace-card .card-visual {
    height: 160px;
  }

  .ba-pair {
    grid-template-columns: 1fr;
  }

  .addon-item {
    grid-template-columns: 1fr;
  }

  .addon-price {
    margin-top: 4px;
  }
}
.marketplace-card .card-bullets {
  flex-grow: 1;
}
