/* ============================================================
   CONGO CALL CENTER — Design System & Main Stylesheet
   Version: 2.0 | Modern, Premium, Corporate
   Palette: RDC-inspired blues, golds, clean whites
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Identity — Congo Call Center */
  --brand-green: #adc90e;
  --brand-orange: #ef7f07;
  --brand-dark: #3d3d3b;

  /* Primary — Using Brand Green (success, results) */
  --primary-900: #3c4605;
  --primary-800: #566407;
  --primary-700: #718309;
  --primary-600: #8ba20b;
  --primary-500: #adc90e;
  --primary-400: #bdd33e;
  --primary-300: #cedf6e;
  --primary-200: #dfeb9f;
  --primary-100: #eff5cf;
  --primary-50: #f7f9e7;

  /* Accent — Using Brand Orange (energy, interaction) */
  --accent-900: #542d02;
  --accent-800: #7f4404;
  --accent-700: #aa5a05;
  --accent-600: #d47106;
  --accent-500: #ef7f07;
  --accent-400: #f29938;
  --accent-300: #f5b26a;
  --accent-200: #f9cc9c;
  --accent-100: #fce5cd;
  --accent-50: #fef2e6;

  /* Service Specific Colors */
  --service-market: #ede80a;
  --service-telemarketing: #f3902e;
  --service-training: #e93230;
  --service-social: #be1c89;

  /* Neutrals override */
  --gray-900: #3d3d3b;
  /* Using brand dark grey for consistency */

  /* Red accent (CTA, RDC flag) */
  --red-600: #c0392b;
  --red-500: #e74c3c;
  --red-400: #f06a5e;
  --red-100: #fde8e6;

  /* Green accent (success, RDC flag) */
  --green-600: #1e7a46;
  --green-500: #27ae60;
  --green-400: #4cd283;
  --green-100: #e8f8ef;

  /* Neutrals */
  --gray-950: #0b0f14;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--primary-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: -0.015em;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

h5 {
  font-size: 1.1rem;
}

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

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

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

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

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

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

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

.section-lg {
  padding: var(--space-24) 0;
}

.grid {
  display: grid;
  gap: var(--space-8);
}

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

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

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

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

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

@media (max-width: 640px) {

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

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

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

.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--primary-50);
  color: var(--primary-500);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-green) 0%, #98b00c 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(173, 201, 14, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #98b00c 0%, var(--brand-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(173, 201, 14, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d47106 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(239, 127, 7, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #d47106 0%, var(--brand-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 127, 7, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-500);
  border-color: var(--primary-300);
}

.btn-outline:hover {
  background: var(--primary-500);
  color: var(--white);
  border-color: var(--primary-500);
}

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

.btn-white:hover {
  background: var(--gray-50);
  color: var(--primary-500);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn i {
  font-size: 0.875em;
}

/* ---------- HEADER / NAVBAR ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary-500);
}

.header.scrolled .logo-text {
  color: var(--primary-700);
}

.header.scrolled .logo-sub {
  color: var(--gray-500);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  z-index: 1001;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition-base);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.header.scrolled .logo-sub {
  color: var(--gray-400);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  background: var(--primary-50);
}

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

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
  border: 1px solid var(--gray-100);
}

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

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: 0.875rem;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

.nav-dropdown-menu a i {
  color: var(--primary-400);
  width: 20px;
  text-align: center;
}

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

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.header.scrolled .menu-toggle span {
  background: var(--gray-700);
}

.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);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
  opacity: 1;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transition: right var(--transition-slow);
  overflow-y: auto;
  padding: calc(var(--header-height) + var(--space-4)) var(--space-6) var(--space-6);
}

.mobile-nav.active {
  right: 0;
}

/* ---------- HERO IMAGE ---------- */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover {
  transform: translateY(-10px);
}

.hero-agent-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--primary-50);
  color: var(--primary-600);
}

.mobile-nav .nav-section-title {
  padding: var(--space-4) var(--space-4) var(--space-2);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav,
  .mobile-nav-overlay {
    display: block;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2a2a28 0%, #3d3d3b 50%, #4a4a48 100%);
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--brand-green);
}

.hero-shape:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.hero-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 60%;
  animation: float 15s ease-in-out infinite 3s;
}

@keyframes float {

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

  33% {
    transform: translate(30px, -30px);
  }

  66% {
    transform: translate(-20px, 20px);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--space-16)) var(--space-6) var(--space-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(173, 201, 14, 0.15);
  border: 1px solid rgba(173, 201, 14, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: var(--space-6);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--brand-green), #cedf6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: var(--space-8);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: var(--space-1);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 460px;
}

.hero-image-wrapper {
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-agent-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

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

.hero-card-dot.green {
  background: var(--green-500);
}

.hero-card-dot.yellow {
  background: var(--accent-500);
}

.hero-card-dot.red {
  background: var(--red-500);
}

.hero-card-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-metric:last-child {
  border-bottom: none;
}

.hero-card-metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-card-metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.hero-card-metric-badge {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.hero-card-metric-badge.up {
  background: rgba(39, 174, 96, 0.2);
  color: var(--green-400);
}

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

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  padding: var(--space-12) 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar p {
  text-align: center;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: var(--space-6);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  opacity: 0.5;
}

.trust-logos span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
}

/* Client Logos Grid */
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-8);
  align-items: center;
  justify-items: center;
  margin-top: var(--space-12);
}

.client-logo-item {
  width: 100%;
  max-width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-base);
}

.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- SERVICES CARDS ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-green);
  opacity: 0;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-100);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-50);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
  margin-bottom: var(--space-6);
  transition: var(--transition-base);
}

/* Service-specific modifications */
.service-card--market .service-card-icon {
  background: #fefce8;
  color: var(--service-market);
}

.service-card--market::before {
  background: var(--service-market);
}

.service-card--telemarketing .service-card-icon {
  background: #fff7ed;
  color: var(--service-telemarketing);
}

.service-card--telemarketing::before {
  background: var(--service-telemarketing);
}

.service-card--training .service-card-icon {
  background: #fef2f2;
  color: var(--service-training);
}

.service-card--training::before {
  background: var(--service-training);
}

.service-card--social .service-card-icon {
  background: #fdf2f8;
  color: var(--service-social);
}

.service-card--social::before {
  background: var(--service-social);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.service-card .card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-500);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast);
}

.service-card:hover .card-link {
  gap: var(--space-3);
}

/* ---------- WHY US / Features ---------- */
.why-us {
  background: linear-gradient(135deg, #2a2a28 0%, #3d3d3b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 23, 0.08), transparent 60%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-us-text h2 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.why-us-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  margin-bottom: var(--space-8);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(232, 168, 23, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-400);
  font-size: 1.15rem;
}

.feature-item h4 {
  color: var(--white);
  margin-bottom: var(--space-1);
  font-size: 1.05rem;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- STATS ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-item {
  padding: var(--space-6);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, var(--white), var(--accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- SECTORS ---------- */
.sector-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.sector-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.sector-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sector-card h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.sector-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.testimonial-stars {
  color: var(--accent-500);
  font-size: 0.875rem;
  margin-bottom: var(--space-4);
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--primary-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
  gap: var(--space-4);
  user-select: none;
}

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

.faq-question i {
  transition: transform var(--transition-base);
  color: var(--gray-400);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 0.9375rem;
}

/* ---------- FORMS ---------- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-label .required {
  color: var(--red-500);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--gray-800);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(30, 77, 142, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary-500);
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--gray-950);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--primary-500);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: var(--space-5);
  font-size: 0.9375rem;
}

.footer-col a {
  display: block;
  padding: var(--space-1) 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

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

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

/* ---------- PAGE HERO (Inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #2a2a28 0%, #3d3d3b 50%, #4a4a48 100%);
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-4);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- CARDS (Generic) ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* ---------- BLOG CARDS ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 200px;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-300);
}

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

.blog-card-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  gap: var(--space-4);
}

/* ---------- CASE STUDY CARDS ---------- */
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.case-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-50);
  color: var(--accent-700);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.case-card h3 {
  margin-bottom: var(--space-3);
}

.case-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: var(--space-5);
}

.case-results {
  display: flex;
  gap: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--gray-100);
}

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

.case-result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-500);
}

.case-result-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ---------- RECRUITMENT ---------- */
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.job-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
}

.job-info h4 {
  margin-bottom: var(--space-1);
}

.job-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 2px 10px;
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
}

@media (max-width: 640px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- CONTACT MAP ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.contact-info-item a {
  color: var(--primary-500);
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- ANIMATIONS (Scroll Reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

.reveal-delay-5 {
  transition-delay: 500ms;
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 200ms;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 300ms;
}

.stagger-children .reveal:nth-child(5) {
  transition-delay: 400ms;
}

.stagger-children .reveal:nth-child(6) {
  transition-delay: 500ms;
}

/* Counter animation */
.counter {
  display: inline-block;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-400);
  transform: translateY(-4px);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: calc(var(--space-6) + 64px);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: all var(--transition-base);
  text-decoration: none;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

@keyframes pulse-wa {

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

  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4) var(--space-6);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  z-index: 9999;
  font-size: 0.875rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
}

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

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- THANK YOU PAGE ---------- */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 2rem;
  color: var(--green-500);
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: var(--space-2);
}

/* ---------- UTILITY ---------- */
.bg-gray-50 {
  background: var(--gray-50);
}

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

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

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- PRINT ---------- */
@media print {

  .header,
  .footer,
  .whatsapp-float,
  .back-to-top,
  .cookie-banner {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}