/* ============================================
   Portal de Negócios Sebrae MG - Design System
   ============================================ */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores do Sebrae */
  --azul: #2a4fda;
  --atlantico: #0b2574;
  --ceu: #65b7fb;
  --offwhite: #eff3ee;
  --pera: #cadf61;
  --jacaranda: #8f85f4;
  --begonia: #ff80c8;
  --acerola: #f39d72;
  --ipe: #f2afab;
  /*Semantic*/
  --comprador: var(--pera);
  --vendedor: var(--begonia);
  --primaria: var(--atlantico);
  --secundaria: var(--azul);
  --terciaria: var(--ceu);


  --primary-blue: #0052CC;
  --primary-blue-dark: #0747A6;
  --primary-blue-light: #4C9AFF;
  --accent-yellow: #FFAB00;
  --accent-orange: #FF5630;
  --accent-teal: #00B8D9;
  --accent-green: #36B37E;

  --gradient-hero: linear-gradient(135deg, #0052CC 0%, #0065FF 50%, #2684FF 100%);
  --gradient-primary: linear-gradient(135deg, #0052CC 0%, #2684FF 100%);
  --gradient-atlantico-ceu: linear-gradient(135deg, var(--atlantico) 0%, var(--ceu) 100%);
  --gradient-ceu-azul: linear-gradient(135deg, var(--ceu) 0%, var(--azul) 100%);
  --gradient-ceu-begonia: linear-gradient(135deg, var(--ceu) 0%, var(--begonia) 100%);
  --gradient-soft: linear-gradient(135deg, #ffffff 0%, var(--offwhite) 100%);
  --gradient-azul-atlantico: linear-gradient(135deg, #061a57 0%, var(--atlantico) 100%);

  /* Neutrals (adjusted for better contrast) */
  --gray-900: #172B4D;
  --gray-800: #253858;
  --gray-700: #42526E;
  --gray-600: #5E6C84;
  --gray-500: #7A869A;
  --gray-400: #97A0AF;
  --gray-300: #C1C7D0;
  --gray-200: #DFE1E6;
  --gray-100: #EBECF0;
  --gray-50: #F4F5F7;
  --white: #FFFFFF;

  /* === Semantic Colors === */
  --success: #36B37E;
  --warning: #FFAB00;
  --error: #FF5630;
  --info: #00B8D9;

  /* === Typography === */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.75rem;
  /* Adjusted scalings */
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;

  /* === Spacing === */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-48: 12rem;
  --space-64: 16rem;

  /* === Shadows & Effects === */
  --shadow-sm: 0 1px 2px rgba(9, 30, 66, 0.25);
  --shadow-md: 0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31);
  --shadow-lg: 0 8px 16px -4px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31);
  --shadow-xl: 0 12px 24px -6px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31);
  --shadow-2xl: 0 20px 48px -12px rgba(9, 30, 66, 0.25);

  --shadow-blue-glow: 0 0 20px rgba(76, 154, 255, 0.6);
  --shadow-orange-glow: 0 8px 20px rgba(255, 86, 48, 0.4);

  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --glass-blur: blur(12px);

  /* === Border Radius === */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* === Layout === */
  --container-max: 1280px;
  --container-padding: var(--space-6);
  --header-height: 80px;

  /* === Transitions === */
  --transition-fast: 200ms cubic-bezier(0.2, 0, 0, 1);
  --transition-base: 300ms cubic-bezier(0.2, 0, 0, 1);
  --transition-smooth: 500ms cubic-bezier(0.2, 0, 0, 1);

  /* === Z-Index === */
  /* Kept same */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

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

/* === Base Styles === */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--gray-700);
  line-height: var(--line-height-relaxed);
}

a {
  max-height: 50px;
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-blue-light);
}

/* === Container === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* === Section === */
section {
  padding: var(--space-20) 0;
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

section.section-alt {
  background-color: var(--blue-lighter);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #eff3ee;
  color: var(--primary-blue);
  border: 1px solid #2a50da45;
}

.btn-primary:hover {
  color: #eff3ee;
  background: var(--atlantico);

}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-blue-dark);
  border-color: var(--primary-blue-light);
}

.btn-ghost {
  background: transparent;
  color: #eff3ee;
  border: 1px solid #eff3ee;
}

.btn-ghost:hover {
  box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
  color: #eff3ee;
  background: var(--atlantico);
  border: 1px solid var(--atlantico);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
}

/* === Cards === */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow),
    box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
}

.card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.card-gradient h3,
.card-gradient h4,
.card-gradient p {
  color: var(--white);
}

/* === Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: transparent;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.100);
}

header.scrolled {
  background: var(--gradient-atlantico-ceu);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

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

.logo {
  height: 50px;
  width: auto;
}

nav {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
}

nav a {
  color: var(--gray-700);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

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

.header-actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none !important;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: all var(--transition-base);
}

/* === Hero Section === */
.hero {
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-20);
  /* New Gradient Background */
  background: var(--gradient-atlantico-ceu);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  /* Ensure text is white */
}

/* Decorative Elements (Updated for dark bg) */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  filter: blur(80px);
}

.hero-decoration-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 184, 217, 0.3);
  /* Teal */
  top: -150px;
  right: -100px;
}

.hero-decoration-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 171, 0, 0.2);
  /* Yellow/Orange */
  bottom: -100px;
  left: -50px;
}

.hero-decoration-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 86, 48, 0.15);
  /* Red/Orange */
  top: 40%;
  left: 60%;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  color: #eff3ee;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1.5px;
  margin-bottom: var(--space-8);
  transition: all var(--transition-base);
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-badge svg {
  color: var(--accent-teal);
  margin-right: 8px;
}

/* Hero Title */
.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.text-vendedor {
  color: var(--vendedor);
  position: relative;
  display: inline-block;
}

.text-comprador {
  color: var(--comprador);
  position: relative;
  display: inline-block;
}

/* Hero Description */
.hero-description {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-10);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

/* Hero Buttons - Vibrant Style */
.btn-hero {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-xl);
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all var(--transition-base);
  min-width: 240px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-primary {
  background: var(--accent-yellow);
  color: var(--gray-900);
  border: none;
  box-shadow: 0 10px 25px -5px rgba(255, 171, 0, 0.4);
}

.btn-hero-primary:hover {
  background: #FFC400;
  /* Lighter yellow */
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -5px rgba(255, 171, 0, 0.5);
}

.btn-hero-primary .btn-hero-label {
  color: var(--gray-900);
  /* Dark text on yellow */
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  border-color: var(--white);
}

.btn-hero-secondary .btn-hero-label {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--white);
}

/* === Hero Widget (Refactored) === */
.hero-widget-container {
  max-width: 1000px;
  margin: var(--space-20) auto 0;
  text-align: left;
  color: var(--white);
}

.hero-widget-tabs {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-16);
}

.widget-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Typography */
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.widget-tab svg {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.widget-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: var(--white);
}

.widget-tab.active {
  background: var(--white);
  color: var(--primary-blue);
  font-weight: var(--font-weight-bold);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.widget-tab.active svg {
  color: var(--primary-blue);
}

/* Content Area */
.widget-body {
  position: relative;
  min-height: 400px;
  /* Prevent layout shift */
}

.widget-content {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
  animation: fadeIn 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.widget-content.active {
  display: grid;
}

/* Text Column */
.widget-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.widget-text-col h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
  color: var(--white);
  line-height: 1.2;
}

.widget-text-col p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-12);
  font-size: 15px;
  line-height: var(--line-height-relaxed);
}

.widget-cta-wrapper {
  margin-bottom: var(--space-10);
}

.widget-comprador-btn {
  display: inline-flex;
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  background: var(--comprador);
  color: black;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-bold);
}

.widget-comprador-btn:hover {
  background: transparent;
  transform: translateY(-3px);
  border: 1px solid var(--comprador);
  color: var(--comprador);

}

.widget-vendedor-btn {
  display: inline-flex;
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  background: var(--comprador);
  color: black;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-bold);
}

.widget-vendedor-btn:hover {
  background: transparent;
  transform: translateY(-3px);
  border: 1px solid var(--comprador);
  color: var(--comprador);

}

/* Testimonial Mini */
.testimonial-mini {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}

.t-content p {
  font-size: 14px;
  font-style: italic;
  margin-bottom: var(--space-1);
  color: rgba(255, 255, 255, 0.9);
}

.t-content span {
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Visual Column - Glass Mockup & Images */
.widget-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  transition: transform 0.5s ease;
  display: block;
}

.visual-card-image:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.visual-card-glass {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.visual-card-glass:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.glass-header {
  background: #F1F3F5;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #E9ECEF;
}

.glass-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red {
  background: #FF5F57;
}

.yellow {
  background: #FEBC2E;
}

.green {
  background: #28C840;
}

.glass-header span {
  font-size: 12px;
  color: var(--gray-500);
  margin-left: 12px;
  font-family: monospace;
}

.glass-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid #E9ECEF;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.glass-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-blue-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gi-icon {
  width: 40px;
  height: 40px;
  background: #F8F9FA;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.gi-tag {
  background: var(--blue-light);
  color: var(--primary-blue);
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.gi-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gi-info strong {
  font-size: 14px;
  color: var(--gray-900);
}

.gi-info span {
  font-size: 12px;
  color: var(--gray-500);
}

.gi-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #E9ECEF;
}

.glass-item:hover .gi-check {
  background: var(--success);
  border-color: var(--success);
}

.gi-arrow {
  color: var(--gray-400);
  font-weight: bold;
}

@media (max-width: 900px) {
  .widget-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .widget-text-col {
    align-items: center;
  }

  .widget-visual-col {
    display: none;
    /* Hide visual on tablet/mobile for simplicity or stack it */
  }
}

/* Hide mobile class */
.hide-mobile {
  display: inline;
}

/* === Trust Bar === */
.trust-bar {
  padding: var(--space-12) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.trust-bar-content {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  animation: scroll 30s linear infinite;
}

.trust-logo {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-base);
}

.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

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

/* === Interactive Benefits Section === */
#interactive-benefits {
  padding: var(--space-10) 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: var(--space-16);
  align-items: center;
}

.benefits-tabs {
  padding-right: var(--space-8);
}

.benefits-main-title {
  font-size: var(--font-size-3xl) !important;
  font-weight: var(--font-weight-extrabold);
  color: var(--gray-900);
  margin-bottom: var(--space-12);
  line-height: 1.2;
}

.benefits-tab-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.benefits-tab {
  display: block;
  padding: var(--space-6) 0;
  padding-left: var(--space-6);
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base),
    border-left-color var(--transition-fast),
    transform var(--transition-base);
  text-align: left;
  width: 100%;
  position: relative;
}


.benefits-tab:hover {
  background: rgba(0, 82, 204, 0.04);
  transform: translateX(4px);
  border-left-color: var(--primary-blue-light);
}

.benefits-tab.active {
  border-left-color: var(--primary-blue);
  background: linear-gradient(90deg, rgba(0, 82, 204, 0.08) 0%, transparent 100%);
}

.benefits-tab h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-700);
  margin-bottom: var(--space-2);
  transition: color var(--transition-base), transform var(--transition-base);
}

.benefits-tab.active h3 {
  color: var(--primary-blue);
}

.benefits-tab p {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  line-height: var(--line-height-relaxed);
  margin: 0;
  transition: color var(--transition-base);
}

.benefits-tab.active p {
  color: var(--gray-600);
}

.benefits-visual {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #F8F9FA;
  min-height: 500px;
}

.benefits-visual-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow) ease-in-out,
    visibility var(--transition-slow) ease-in-out,
    transform var(--transition-slow) ease-in-out;
  transform: scale(0.95);
}

.benefits-visual-content.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.benefits-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

/* === Features Showcase Section - Vertical Timeline === */
#features-showcase {
  padding: var(--space-32) 0;
  background: #FAFBFC;
  position: relative;
  overflow: hidden;
}

.features-showcase-header {
  text-align: center;
  margin-bottom: var(--space-24);
}

.features-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: rgba(0, 82, 204, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.features-title {
  font-size: clamp(1rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--gray-900);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Timeline Container */
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* The vertical line track */
.timeline-track {
  position: absolute;
  top: 0;
  left: 50%;
  /* Centered */
  width: 2px;
  height: 100%;
  background: var(--gray-200);
  z-index: 1;
  transform: translateX(-50%);
}

/* The dragging/progress line */
.timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  /* Centered */
  width: 2px;
  height: 0%;
  /* JS will update this */
  background: var(--ipe);
  /* Using the yellow accent */
  background: linear-gradient(to bottom, var(--ipe), var(--acerola));
  transition: height 0.1s linear;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 171, 0, 0.4);
  transform: translateX(-50%);
}

/* Timeline Items Base */
.timeline-item {
  position: relative;
  margin-bottom: var(--space-20);
  /* Spacing */
  width: 50%;
  /* Takes half width */
  box-sizing: border-box;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Item 1, 3 (Even Children in DOM because of track) -> Right Side */
.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 60px;
  text-align: left;
}

/* Item 2 (Odd Child) -> Left Side */
.timeline-item:nth-child(odd) {
  margin-left: 0;
  padding-right: 60px;
  text-align: right;
}

/* The dot on the line */
.timeline-dot {
  position: absolute;
  top: 40px;
  width: 12px;
  height: 12px;
  background: var(--gray-900);
  border-radius: 50%;
  z-index: 3;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Dot Position for Right Items */
.timeline-item:nth-child(even) .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

/* Dot Position for Left Items */
.timeline-item:nth-child(odd) .timeline-dot {
  right: 0;
  transform: translateX(50%);
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.5);
}

.timeline-item:nth-child(odd):hover .timeline-dot {
  transform: translateX(50%) scale(1.5);
}

.timeline-item.active .timeline-dot {
  background: var(--acerola);
  box-shadow: 0 0 0 4px #f39d7220;
  /* Maintain centering transform + scale */
}

.timeline-item:nth-child(even).active .timeline-dot {
  transform: translateX(-50%) scale(1.2);
}

.timeline-item:nth-child(odd).active .timeline-dot {
  transform: translateX(50%) scale(1.2);
}

.timeline-item.active .timeline-step-title {
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

/* Content Layout */
.timeline-content {
  display: block;
  /* No grid needed for text-only */
}

/* Text Side */
.timeline-text {
  position: relative;
}

.timeline-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  color: var(--gray-500);
  background: var(--white);
}

.timeline-step-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* Align flex column items */
.timeline-item:nth-child(even) .timeline-step-title {
  align-items: flex-start;
}

.timeline-item:nth-child(odd) .timeline-step-title {
  align-items: flex-end;
}

.step-number {
  font-size: 3rem;
  color: var(--gray-300);
  /* Muted number */
  display: block;
  margin-bottom: var(--space-2);
  font-variant-numeric: tabular-nums;
}

.timeline-description {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  line-height: 1.6;
}

.timeline-description strong {
  color: var(--gray-900);
  display: block;
  /* or inline */
  margin-bottom: var(--space-2);
}

/* Visuals Side - Hidden/Removed by User, styles kept just in case or can be removed */
.timeline-visual {
  display: none;
}

/* Glass Card Base Style */
.glass-card-visual {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Very subtle border */
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05), 0 10px 15px -5px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -5px rgba(0, 0, 0, 0.08), 0 15px 20px -5px rgba(0, 0, 0, 0.04);
}

/* VISUAL 1: Chat Bubbles */
.glass-body-centered {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F8F9FA;
  min-height: 300px;
  justify-content: center;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 80%;
  animation: floatUp 3s infinite ease-in-out;
}

.chat-bubble.left {
  background: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: var(--gray-700);
}

.chat-bubble.right {
  background: var(--primary-blue);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 50, 200, 0.2);
}

.chat-bubble:nth-child(2) {
  animation-delay: 1s;
}

.chat-bubble:nth-child(3) {
  animation-delay: 2s;
}

/* VISUAL 2: Matches Stack */
.matches-stack {
  height: 300px;
  position: relative;
  background: #F8F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-card {
  width: 220px;
  height: 140px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: absolute;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.match-card.p1 {
  transform: scale(0.9) translateY(-40px);
  opacity: 0.6;
  z-index: 1;
}

.match-card.p2 {
  transform: scale(0.95) translateY(-20px);
  opacity: 0.8;
  z-index: 2;
}

.match-card.p3 {
  transform: scale(1) translateY(0);
  z-index: 3;
  border: 1px solid var(--success);
}

.timeline-item:hover .match-card.p1 {
  transform: scale(0.9) translateY(-30px) rotate(-5deg);
}

.timeline-item:hover .match-card.p2 {
  transform: scale(0.95) translateY(-10px) rotate(5deg);
}

.mc-avatar {
  width: 40px;
  height: 40px;
  background: #E9ECEF;
  border-radius: 50%;
}

.mc-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mc-lines span {
  height: 6px;
  background: #E9ECEF;
  border-radius: 3px;
}

.mc-lines span:first-child {
  width: 80%;
}

.mc-lines span:last-child {
  width: 60%;
}

.mc-check {
  width: 32px;
  height: 32px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 8px;
}

.mc-check svg {
  width: 18px;
  height: 18px;
}

.mc-text {
  font-weight: bold;
  color: var(--gray-800);
}


/* VISUAL 3: Charts */
.chart-visual {
  height: 300px;
  background: #F8F9FA;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding-bottom: 40px;
}

.chart-bar {
  width: 30px;
  border-radius: 8px 8px 0 0;
  background: #E9ECEF;
  position: relative;
  transition: height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.chart-bar.active {
  background: var(--primary-blue);
  box-shadow: 0 0 20px rgba(0, 82, 204, 0.3);
}

.chart-tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.chart-tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: var(--gray-900) transparent transparent;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* Mobile Adjustments */
@media (max-width: 768px) {
  .timeline-container {
    padding-left: 24px;
    /* Space for line on left */
  }

  .timeline-track,
  .timeline-progress {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 40px !important;
    /* Space from line */
    padding-right: 0 !important;
    text-align: left !important;
    margin-bottom: var(--space-16);
  }

  .timeline-dot {
    left: 14px !important;
    right: auto !important;
    top: 40px;
    transform: none !important;
  }

  .timeline-item:nth-child(even) .timeline-step-title,
  .timeline-item:nth-child(odd) .timeline-step-title {
    align-items: flex-start;
  }
}


.feature-content {
  margin-bottom: 0px;
}

.feature-label {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: var(--space-4);
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0 0 var(--space-3) 0;
}

.feature-description {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.feature-visual {
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-light {
  background: #F8F9FA;
  border: 1px solid #E8EAED;
}

.feature-visual-dark {
  background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
}

.feature-visual-gradient {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border: 1px solid #BAE6FD;
}

.feature-visual-chart {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1px solid #FED7AA;
}

/* MatchIAs Demo */
.matchias-demo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

.matchias-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.avatar-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 96, 171, 0.2);
}

.avatar-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.matchias-message {
  width: 100%;
}

.message-bubble {
  background: var(--white);
  border: 1px solid #E0F2FE;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-3);
}

.message-actions {
  display: flex;
  gap: var(--space-2);
}

.action-chip {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1px solid #BAE6FD;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--primary-blue);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.action-chip:hover {
  background: #F0F9FF;
  border-color: var(--primary-blue);
  color: var(--primary-blue-dark);
}

/* New Helper Class for Sections */
.bg-vibrant-gradient {
  background: var(--gradient-hero) !important;
  color: var(--white);
}

.bg-vibrant-gradient h2,
.bg-vibrant-gradient p {
  color: var(--white) !important;
}

/* Learning Demo */
.learning-demo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.learning-cycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.cycle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.step-number {


  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acerola);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.step-label {
  font-size: 11px;
  color: #9A3412;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cycle-arrow {
  font-size: 24px;
  color: #FED7AA;
  font-weight: bold;
}

.learning-progress {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.progress-label {
  font-size: 11px;
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-bar-container {
  position: relative;
  height: 24px;
  background: #FFF7ED;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #FB923C 0%, #F97316 100%);
  border-radius: var(--radius-md);
  transition: width var(--transition-slow);
  animation: growWidth 1.5s ease-out;
}

@keyframes growWidth {
  from {
    width: 0 !important;
  }
}

.progress-value {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--white);
}

/* Journey Timeline Demo */
.journey-demo {
  width: 100%;
  padding: var(--space-4);
}

.journey-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--gray-200);
  color: var(--gray-500);
  border: 3px solid var(--gray-300);
  transition: all var(--transition-base);
}

.timeline-step.completed .step-icon {
  background: var(--success);
  color: var(--white);
  border-color: var(--success);
}

.timeline-step.active .step-icon {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

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

.step-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--gray-900);
  margin-bottom: 2px;
}

.step-desc {
  font-size: 11px;
  color: var(--gray-500);
}

.timeline-connector {
  flex: 1;
  height: 3px;
  background: var(--gray-300);
  margin: 0 var(--space-2);
  position: relative;
  top: -24px;
}

.timeline-connector.completed {
  background: var(--success);
}

.timeline-connector.active {
  background: linear-gradient(90deg, var(--success) 0%, var(--primary-blue) 100%);
}

/* Insights Demo */
.insights-demo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
}

.insight-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: all var(--transition-fast);
}

.insight-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.insight-icon {
  font-size: 24px;
}

.insight-badge {
  font-size: 10px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.9);
}

.insight-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2);
}

.insight-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--line-height-relaxed);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* === Section Headers === */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--blue-light);
  color: var(--acerola);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Big Numbers === */
.big-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

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

.big-number-value {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-2);
}

.big-number-label {
  color: var(--gray-600);
  font-size: var(--font-size-base);
}

/* === FAQ === */
.faq-item {
  background: var(--white);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition-slow), box-shadow var(--transition-base);
}



.faq-question {
  width: 100%;
  padding: var(--space-6);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

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

.faq-icon {
  transition: transform var(--transition-slow);
  font-size: var(--font-size-xl);
  color: var(--primary-blue);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity var(--transition-base);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer-content {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--gray-700);
  line-height: var(--line-height-relaxed);
}

/* === Footer === */
footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  margin-bottom: var(--space-6);
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--gray-400);
  margin-bottom: var(--space-6);
}

.footer-section h4 {
  color: var(--white);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-800);
  text-align: center;
  color: var(--gray-500);
  font-size: var(--font-size-sm);
}

/* === Utilities === */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0.95;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

/* === Responsive Design === */
@media (max-width: 1024px) {
  :root {
    --font-size-6xl: 2.5rem;
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
  }

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

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .benefits-visual {
    height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-6xl: 2rem;
    --font-size-5xl: 1.75rem;
    --font-size-4xl: 1.5rem;
    --container-padding: var(--space-4);
  }

  section {
    padding: var(--space-12) 0;
  }

  .bifurcation-cards,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    padding: var(--space-6);
    gap: 0;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }

  nav a {
    display: block;
    padding: var(--space-4) 0;
  }

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

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

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

  body.menu-open {
    overflow: hidden;
  }

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

  .hero {
    padding-top: calc(var(--header-height) + var(--space-16));
    padding-bottom: var(--space-20);
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: var(--font-size-base);
  }

  .hide-mobile {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: var(--space-4);
  }

  .btn-hero {
    width: 100%;
    min-width: auto;
  }

  .hero-decoration-1,
  .hero-decoration-2,
  .hero-decoration-3 {
    opacity: 0.2;
  }

  .benefits-main-title {
    font-size: var(--font-size-2xl);
  }

  .benefits-visual {
    height: 300px;
  }

  .benefits-tab h3 {
    font-size: var(--font-size-lg);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    padding: var(--space-8);
  }

  .feature-visual {
    min-height: 160px;
    padding: var(--space-6);
  }

  .features-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .big-numbers {
    grid-template-columns: 1fr;
  }

  .bifurcation-card {
    padding: var(--space-6);
  }

  .btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--font-size-base);
  }
}

@media (max-width: 500px) {
  .logo {
    height: 35px;
  }

  .header-actions {
    gap: var(--space-2);
  }

  .header-actions .btn {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-xs);
  }
}

/* === Video Showcase Section === */
.video-showcase-section {
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
  background: url('./assets/bg-video-2.png') no-repeat center center;
  background-size: 100%;
}

/* Ensure white text for this dark section */
.video-showcase-section h2,
.video-showcase-section p {
  color: var(--atlantico);
}

.video-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.video-decoration-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.video-decoration-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.video-content-wrapper {
  position: relative;
  z-index: 2;
}

.video-header {
  text-align: center;
  margin-bottom: var(--space-20);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.video-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: rgba(0, 82, 204, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.video-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--gray-900);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.video-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.video-display-container {
  max-width: 100%;
}

.video-aspect-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--offwhite);
}

.video-trigger {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-trigger:hover {
  transform: scale(1.02);
}

.video-placeholder-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.9;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.play-button svg {
  width: 28px;
  height: 28px;
}

.video-trigger:hover .play-button {
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Optional Overlay Gradient */
.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* === Bento Grid Section === */
/* === Bento Grid V2 Section === */
.section-bento {
  padding: var(--space-24) 0;
  background: var(--gradient-soft);
}

.bento-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.bento-grid-v2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: minmax(312px, auto);
}

.bento-card-v2 {
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.bento-card-v2:hover {
  transform: translateY(-8px);
}

.card-quote-style {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f39d7210;
  color: var(--acerola);
}


.quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gray-900);
}



.quote-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-900);
}

.quote-footer {
  margin-top: var(--space-8);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--gray-900);
}

.quote-footer-tag {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gray-900);
}

/* Base Colors */
.card-blue {
  background: linear-gradient(135deg, #0052CC 0%, #0747A6 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.3);
}

/* Image Background Cards (Hero Style) */
.card-image-bg,
.card-image-mesh {
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-image-bg {
  background-image: url('./assets/bento-bg.png');
}

.card-image-mesh {
  background-image: url('./assets/bento-mesh.png');
  /* Abstract Mesh Image */
}



.card-image-bg:hover::before,
.card-image-mesh:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* Centered Content Layout (Reference Style) */
.card-overlay-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--white);
  padding: var(--space-4);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-card-desc {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--offwhite);
  max-width: 512px;
  margin-bottom: var(--space-8);
}

/* Bento Grid V2 - Strict 7-Card Reference Layout */
@media (min-width: 900px) {
  .bento-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    /* Rows: Top (Std), Middle (Bar), Bottom (Std) */
    grid-template-rows: 240px 180px 240px !important;
    grid-auto-rows: auto;
    gap: var(--space-4);
  }

  /* 
    Grid Map (3 Cols x 3 Rows):
    [ 1 ] [ 2 ] [ 3 ]  <- Row 1 (280px)
    [ 1 ] [ 4   4 ]    <- Row 2 (200px)
    [ 5 ] [ 6 ] [ 7 ]  <- Row 3 (280px)
  */

  /* Card 1: Tall Left (Spans Row 1 & 2) */
  .slot-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  /* Card 2: Top Mid */
  .slot-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  /* Card 3: Top Right */
  .slot-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  /* Card 4: Middle Wide (Spans Col 2 & 3) */
  .slot-4 {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }

  /* Card 5: Bot Left */
  .slot-5 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  /* Card 6: Bot Mid */
  .slot-6 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  /* Card 7: Bot Right */
  .slot-7 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
  }
}

/* Mobile Fallback */
@media (max-width: 899px) {
  .bento-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }

  .bento-card-v2 {
    min-height: 260px;
  }
}

/* Card Styling - Reference strictness */
.bento-card-v2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.bg-azul {
  background-color: var(--atlantico);
  color: var(--offwhite);
  border: none;
}

.bg-offwhite {
  background-color: white;
  color: var(--atlantico);

}

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

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

/* Typography - Reference: Label Top, Big Number Bottom */
.bento-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.bento-label {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.01em;
}

.bento-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: auto;
  /* Push to bottom */
}

/* Specific adjustment for long text in value slots */
.value-text {
  font-size: 2rem;
  line-height: 1.1;
}



/* Image Fills */
.card-photo-fill {
  padding: 0 !important;
}

.card-photo-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}



.hero-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero-card-btn:hover {
  background: var(--white);
  color: var(--gray-900);

}

.card-yellow {
  background: linear-gradient(135deg, #FFAB00 0%, #FF991F 100%);
  color: var(--gray-900);
  box-shadow: 0 10px 30px rgba(255, 171, 0, 0.3);
}

.card-light {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Grid Spans */
.card-small {
  grid-column: span 2;
  grid-row: span 1;
}

.card-tall {
  grid-row: span 2;
  grid-column: span 2;
}

.card-wide {
  grid-column: span 3;
}

.card-full {
  grid-column: span 6;
}

/* Content Layouts */
.card-content-flex {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.card-content-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: left;
}

.card-row-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  height: 100%;
}

.card-col-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--space-6);
}

/* Typography & Visuals */
.stat-group {
  margin-bottom: var(--space-6);
}

.stat-huge {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  display: block;
}

.stat-large {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label-light {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-2);
  font-weight: 500;
}

.stat-label-dark {
  font-size: 1rem;
  color: var(--gray-800);
  margin-top: var(--space-2);
  font-weight: 600;
  line-height: 1.4;
}

.card-footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-4);
  margin-top: auto;
}

.bento-card-v2 h3 {
  font-size: 2.5rem;
  margin-bottom: var(--space-6);
}

.bento-card-v2 p {
  font-size: 1.3rem;
  color: #FFFFFF80;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Graph Animation */
.visual-graph-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin: var(--space-8) 0;
  opacity: 0.8;
}

.v-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px 4px 0 0;
  animation: barGrow 2s ease-out infinite alternate;
}

.b1 {
  height: 30%;
  animation-delay: 0s;
}

.b2 {
  height: 50%;
  animation-delay: 0.2s;
}

.b3 {
  height: 70%;
  animation-delay: 0.4s;
  background: rgba(255, 255, 255, 0.6);
}

.b4 {
  height: 60%;
  animation-delay: 0.3s;
}

.b5 {
  height: 85%;
  animation-delay: 0.5s;
  background: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@keyframes barGrow {
  0% {
    transform: scaleY(0.9);
  }

  100% {
    transform: scaleY(1.1);
  }
}

/* Indicators */
.trend-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: var(--space-4);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  width: fit-content;
}

.trend-indicator.up svg {
  color: var(--gray-900);
}

/* Icons */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-orange {
  background: #FFF0E6;
  /* Light Orange */
  color: #FF5630;
}

.icon-teal {
  background: #E6FCFF;
  /* Light Teal */
  color: #00B8D9;
}

/* Responsive */
@media (max-width: 900px) {
  .bento-grid-v2 {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .card-tall,
  .card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .card-row-content {
    flex-direction: column;
  }

  .stat-huge {
    font-size: 3.5rem;
  }

  .visual-graph-bars {
    height: 80px;
  }
}

/* === Ecosystem Sebrae Section === */
.section-ecosystem {
  padding: var(--space-20) 0;
  background-color: var(--white);
  /* Or different if needed to contrast */
  border-bottom: 1px solid var(--gray-200);
  /* subtle separator */
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: flex-start;
}



.ecosystem-label {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--gray-500);
  /* Muted/Intro style */
  display: block;
}

.ecosystem-right {
  max-width: 800px;
}

.ecosystem-title {
  margin-bottom: var(--space-6);
}

.ecosystem-text {
  font-size: var(--font-size-lg);
  /* Slightly larger for main text */
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  font-size: var(--font-size-base);
  transition: gap 0.3s ease, color 0.3s ease;
  color: var(--azul);
}

.btn-text-link:hover {
  color: var(--ceu);
}

.btn-text-link span {
  font-size: 1.2em;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .ecosystem-left {
    margin-bottom: var(--space-4);
  }

  .ecosystem-label {
    font-size: var(--font-size-lg);
  }
}

/* === Referral Program Section === */
.section-referral {
  padding: var(--space-20) 0;
  background: var(--gray-900);
  background: var(--gradient-azul-atlantico);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Add a subtle glow graphic */
.section-referral::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(42, 79, 218, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.referral-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-20);
  align-items: center;
}

.referral-content {
  position: relative;
  z-index: 2;
}

.referral-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ceu);
  background: #65b7fb10;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.referral-title {
  font-size: var(--font-size-4xl);
  color: var(--white);
  margin-bottom: var(--space-6);
}

.referral-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-10);
  max-width: 500px;
}

.referral-description strong {
  color: var(--white);
}

.btn-glow {
  border: none;
}



/* Benefits Side */
.referral-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.ref-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.ref-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.ref-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.ref-card:nth-child(2) .ref-icon {
  color: var(--accent-yellow);
  /* Different color for second icon */
}

.ref-info h4 {
  font-size: var(--font-size-xl);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.ref-info p {
  font-size: var(--font-size-base);
  color: var(--offwhite);
  margin-top: 16px;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .referral-container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .referral-title {
    font-size: var(--font-size-3xl);
  }

  .ref-card {
    padding: var(--space-4);
  }
}