/* =============================================================================
   FLARE PREMIUM DESIGN SYSTEM - Award-Worthy Edition v2
   Green accent var(--color-accent), sophisticated layouts, no gradients
   ============================================================================= */

/* Global box-sizing fix to prevent overflow bugs */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  /* Colors - Clean & Premium with Green Accent */
  --color-primary: #000000;
  --color-secondary: #FFFFFF;
  --color-accent: var(--color-accent);
  --color-accent-soft: #3fea83;
  --color-accent-dark: #14b857;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;

  /* Typography - Bold & Clear */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing - Tight & Punchy */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;

  /* Layout */
  --max-width: 1400px;
  --section-padding: var(--space-2xl);

  /* Shadows - Subtle */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-green: 0 10px 30px rgba(25, 230, 107, 0.2);
}

/* =============================================================================
   TYPOGRAPHY SYSTEM
   ============================================================================= */

.display-xl {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

.display-lg {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-xl {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
}

.heading-lg {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
}

.body-xl {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  font-weight: 400;
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 400;
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Green Highlight for Keywords - SURLIGNAGE VERT */
.highlight-green {
  background: var(--color-accent);
  color: #000000;
  font-weight: 900;
  padding: 0.05em 0.25em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* =============================================================================
   LAYOUT PRIMITIVES
   ============================================================================= */

.premium-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.premium-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.premium-section--hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.premium-section--large {
  padding: var(--space-3xl) 0;
}

/* =============================================================================
   NEW HERO - 2 COLUMNS MODERN
   ============================================================================= */

.hero-two-columns {
  padding: var(--space-xl) 0;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-two-columns__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-two-columns__content {
  max-width: 600px;
}

.hero-two-columns__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.hero-two-columns__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.hero-two-columns__description {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-gray-800);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.hero-two-columns__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-two-columns__visual {
  position: relative;
  min-height: 500px;
  background: var(--color-gray-100);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-two-columns__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 968px) {
  .hero-two-columns__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-two-columns__visual {
    min-height: 400px;
  }
}

/* =============================================================================
   NEW STATS - SOPHISTICATED GRID (NOT BLACK BAR!)
   ============================================================================= */

.stats-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: var(--space-xl) 0;
}

.stat-card-premium {
  background: white;
  border: 3px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card-premium:hover::before {
  transform: scaleX(1);
}

.stat-card-premium:hover {
  border-color: var(--color-accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-green);
}

.stat-card-premium__value {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.stat-card-premium__label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-card-premium__description {
  font-size: 0.875rem;
  color: var(--color-gray-800);
  line-height: 1.5;
}

/* =============================================================================
   ANSWER BOX - SEO LLM OPTIMIZATION
   ============================================================================= */

.answer-box {
  background: var(--color-gray-50);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: 2.5rem;
  margin: var(--space-xl) 0;
}

.answer-box__question {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.answer-box__answer {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-800);
}

.answer-box__answer strong {
  color: var(--color-accent);
  font-weight: 700;
}

/* =============================================================================
   COMPARISON TABLE - SEO LLM KILLER
   ============================================================================= */

.comparison-table-wrapper {
  overflow-x: auto;
  margin: var(--space-xl) 0;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.95rem;
}

.comparison-table thead {
  background: var(--color-primary);
  color: white;
}

.comparison-table th {
  padding: 1.25rem 1rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.comparison-table th:first-child {
  border-top-left-radius: 12px;
}

.comparison-table th:last-child {
  border-top-right-radius: 12px;
}

.comparison-table th.highlight {
  background: var(--color-accent);
  color: var(--color-primary);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-gray-200);
  transition: background 0.2s;
}

.comparison-table tbody tr:hover {
  background: var(--color-gray-50);
}

.comparison-table td {
  padding: 1.25rem 1rem;
  vertical-align: top;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-primary);
}

.comparison-table td.highlight {
  background: rgba(25, 230, 107, 0.05);
  font-weight: 700;
  color: var(--color-primary);
}

.comparison-table .check {
  color: var(--color-accent);
  font-weight: 700;
}

.comparison-table .cross {
  color: #ef4444;
}

/* =============================================================================
   DATA TABLE - TECHNICAL SPECS
   ============================================================================= */

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.data-table th,
.data-table td {
  padding: 1rem 1.5rem;
  text-align: left;
}

.data-table thead {
  background: var(--color-gray-100);
}

.data-table th {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--color-gray-200);
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody td:first-child {
  font-weight: 600;
}

.data-table tbody td:last-child {
  color: var(--color-accent);
  font-weight: 700;
}

/* =============================================================================
   FLOWING PROCESS SECTION
   ============================================================================= */

.process-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

/* =============================================================================
   FULL-WIDTH FEATURE SECTIONS
   ============================================================================= */

.feature-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 600px;
}

.feature-section--reverse {
  direction: rtl;
}

.feature-section--reverse > * {
  direction: ltr;
}

.feature-content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-gray-50);
}

.feature-visual {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-200);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.feature-title {
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--color-gray-800);
  margin-bottom: var(--space-lg);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding-left: var(--space-md);
  position: relative;
  margin-bottom: var(--space-sm);
  color: var(--color-gray-800);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 968px) {
  .feature-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-visual {
    min-height: 400px;
  }
}

/* =============================================================================
   PREMIUM CTA SECTION
   ============================================================================= */

.cta-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-secondary);
}

.cta-title {
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================================
   PREMIUM BUTTONS
   ============================================================================= */

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

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

.btn-premium--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-premium--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-premium--secondary:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

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

.btn-premium--white:hover {
  background: var(--color-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =============================================================================
   UTILITIES
   ============================================================================= */

.text-balance {
  text-wrap: balance;
}

.bg-pattern {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
   MODERN DYNAMIC HEADERS
   ============================================================================= */

.section-header-dynamic {
  position: relative;
  margin-bottom: 3rem;
}

.section-header-dynamic::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1rem;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-header-dynamic h2 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Header with Icon */
.header-with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.header-with-icon svg {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}

/* =============================================================================
   PROFESSIONAL SVG ICONS
   ============================================================================= */

.icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.icon-arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
  transition: transform 0.3s;
}

.icon-feature {
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  background: rgba(25, 230, 107, 0.1);
  border-radius: 12px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.icon-stat {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* Feature List with SVG Icons */
.feature-list-svg {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-svg li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-list-svg li svg {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Stats with Icons */
.stat-with-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Divider with Icon */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  opacity: 0.3;
}

.section-divider svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}

/* =============================================================================
   SVG ICON LIBRARY
   ============================================================================= */

/* Check Icon */
.svg-check {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Arrow Icon */
.svg-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sparkle Icon */
.svg-sparkle {
  fill: currentColor;
}

/* Shield Icon */
.svg-shield {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Zap Icon */
.svg-zap {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================================================
   TABLE OVERFLOW FIX - Prevent horizontal scrolling bugs
   ============================================================================= */

.comparison-table,
.table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table table,
table {
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  min-width: 0;
}

.comparison-table td,
.comparison-table th,
table td,
table th {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Force images and media to stay within containers */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* =============================================================================
   TECHNOLOGY SUBLIMATION PAGE SPECIFIC STYLES
   ============================================================================= */

.button-primary-large {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button-primary-large:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.button-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button-secondary-large:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.intro-block {
  max-width: 900px;
  margin: var(--space-2xl) auto;
  text-align: center;
}

.intro-block h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  line-height: 1.2;
}

.intro-block p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-800);
}

.large-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-800);
  font-weight: 400;
}

.info-section {
  margin: var(--space-2xl) 0;
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: 16px;
}

.info-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  line-height: 1.2;
}

.info-section h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: var(--space-lg) 0 var(--space-md);
  color: var(--color-primary);
}

.info-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
}

.info-section p {
  line-height: 1.7;
  color: var(--color-gray-800);
  margin-bottom: var(--space-md);
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.info-section ul li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.info-section ul li::before {
  content: '•';
  position: absolute;
  left: var(--space-sm);
  color: var(--color-accent);
  font-weight: 700;
}

.highlight-section {
  background: var(--color-gray-50);
  border-radius: 16px;
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.highlight-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  text-align: center;
}

.highlight-section p {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-gray-800);
}

/* FAQ Premium with <details> */
details.faq-premium {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  border: 2px solid var(--color-gray-200);
  transition: all 0.3s ease;
}

details.faq-premium:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

details.faq-premium summary {
  font-size: 1.25rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary);
}

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

details.faq-premium summary span:last-child {
  transition: transform 0.3s;
  color: var(--color-accent);
  font-size: 1.5rem;
}

details.faq-premium[open] summary span:last-child {
  transform: rotate(90deg);
}

.premium-cta-section {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.premium-cta-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.premium-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  line-height: 1.2;
}

.premium-cta-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-xl);
}

.premium-cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .premium-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button-primary-large,
  .button-secondary-large {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================================================
   CREER MARQUE PAGE - MISSING CLASSES
   ============================================================================= */

/* Section Headers */
.section-header-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
}

.section-header-centered h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Answer Box */
.answer-box {
  background: var(--color-gray-50);
  border-radius: 16px;
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  align-items: start;
  margin: var(--space-2xl) 0;
}

.answer-box__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.answer-box__icon svg {
  width: 28px;
  height: 28px;
}

.answer-box__content {
  flex: 1;
}

.answer-box__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.answer-box__content p {
  line-height: 1.7;
  color: var(--color-gray-800);
  margin: 0;
}

/* Background Utilities */
.bg-subtle {
  background: var(--color-gray-50);
}

.bg-accent-subtle {
  background: rgba(25, 230, 107, 0.05);
}

/* CTA Box - Premium variant */
.cta-box {
  background: white;
  border: 3px solid var(--color-gray-200);
  border-radius: 16px;
  padding: var(--space-2xl);
  text-align: center;
  transition: all 0.3s ease;
}

.cta-box:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.cta-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  border-radius: 16px;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
}

.cta-box__icon svg {
  width: 40px;
  height: 40px;
}

.cta-box h2 {
  margin-bottom: var(--space-md);
}

.cta-box p {
  color: var(--color-gray-800);
  margin-bottom: var(--space-lg);
}

/* Reveal Animation Utility */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Process Step - Fixed for creer-marque page */
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-gray-200);
}

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

.process-step .step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
}

.process-step .step-number svg {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.process-step .step-content {
  flex: 1;
  padding-top: var(--space-sm);
}

.process-step .step-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  line-height: 1.3;
}

.process-step .step-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-primary);
}

.process-step .step-content p {
  line-height: 1.7;
  color: var(--color-gray-800);
  margin-bottom: var(--space-md);
}

.process-step .step-content ul,
.process-step .step-content ol {
  margin: var(--space-md) 0;
  padding: 0;
  list-style: none;
}

.process-step .step-content ul li,
.process-step .step-content ol li {
  background: var(--color-gray-50);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-sm);
  border-radius: 0;
  line-height: 1.7;
  color: var(--color-gray-800);
  font-weight: 500;
  transition: all 0.3s ease;
}

.process-step .step-content ul li:hover,
.process-step .step-content ol li:hover {
  background: white;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.process-step .step-content ul li strong,
.process-step .step-content ol li strong {
  color: var(--color-primary);
  font-weight: 700;
}

.process-step .step-content table {
  width: 100%;
  margin: var(--space-md) 0;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Features Grid for step content */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.feature-card {
  background: white;
  border: 2px solid var(--color-gray-200);
  border-radius: 12px;
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray-800);
  margin: 0;
}

/* Responsive for process steps */
@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: var(--space-md);
  }

  .process-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .process-step .step-number svg {
    width: 20px;
    height: 20px;
    top: 8px;
  }

  .answer-box {
    flex-direction: column;
    padding: var(--space-lg);
  }

  .answer-box__icon {
    width: 50px;
    height: 50px;
  }

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

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 768px) {
  :root {
    --section-padding: var(--space-xl);
  }

  .premium-container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .hero-vertical__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

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

  .header-with-icon svg {
    width: 2rem;
    height: 2rem;
  }

  /* Table responsive on mobile */
  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 13px;
  }

  .comparison-table .price-big {
    font-size: 20px !important;
  }

  .comparison-table td.label-col {
    font-size: 13px;
  }
}

/* ============================================================================
   STATS BAR - Horizontal Stats Display
   ============================================================================ */
.stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 3rem 2rem;
  border: 2px solid var(--color-gray-200);
  margin: 2rem 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--color-gray-200);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-gray-800);
  font-weight: 600;
  line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .stats-bar {
    flex-direction: row;
    gap: 0.5rem;
    padding: 1rem;
    flex-wrap: nowrap;
    justify-content: space-around;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-gray-200);
    padding-bottom: 1.5rem;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .stat-value {
    font-size: 3rem;
  }
}
