/* ============================================
   ONDEMAND - Website Styles
   Brand Colors: Cyan #00D4D4, Purple #6366F1, Navy #0D1B2A
   ============================================ */

/* CSS Variables */
:root {
  --primary-cyan: #00D4D4;
  --primary-cyan-dark: #00B4B4;
  --secondary-purple: #6366F1;
  --secondary-purple-dark: #4F46E5;
  --navy-dark: #0D1B2A;
  --navy-medium: #1B3A4B;
  --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;
  --accent-orange: #FF6B35;
  --accent-orange-dark: #E85A2A;
  --gradient-brand: linear-gradient(135deg, var(--primary-cyan) 0%, var(--secondary-purple) 100%);
  --gradient-brand-reverse: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-cyan) 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-lg {
  max-width: 1400px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-cyan);
}

.nav-links a.active {
  color: var(--primary-cyan);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(0, 212, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 212, 212, 0.4);
}

.btn-secondary {
  background: var(--accent-orange);
  color: var(--white);
  border: 2px solid var(--accent-orange);
  box-shadow: 0 2px 8px 0 rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
  background: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px 0 rgba(255, 107, 53, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-cyan);
  border: 2px solid var(--primary-cyan);
}

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

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

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0, 212, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 212, 0.1);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-cyan-dark);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-helper-text {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.cta-section .cta-helper-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

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

.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

.hero-illustration {
  width: 100%;
  max-width: 550px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--gray-300);
}

.section-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

/* ============================================
   PROBLEM/PAIN SECTION
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pain-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}

.pain-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #EF4444;
}

/* Different colors for each pain card icon */
.pain-card:nth-child(1) .pain-card-icon { background: rgba(239, 68, 68, 0.1); }
.pain-card:nth-child(1) .pain-card-icon svg { stroke: #EF4444; }

.pain-card:nth-child(2) .pain-card-icon { background: rgba(245, 158, 11, 0.1); }
.pain-card:nth-child(2) .pain-card-icon svg { stroke: #F59E0B; }

.pain-card:nth-child(3) .pain-card-icon { background: rgba(99, 102, 241, 0.1); }
.pain-card:nth-child(3) .pain-card-icon svg { stroke: #6366F1; }

.pain-card:nth-child(4) .pain-card-icon { background: rgba(16, 185, 129, 0.1); }
.pain-card:nth-child(4) .pain-card-icon svg { stroke: #10B981; }

.pain-card:nth-child(5) .pain-card-icon { background: rgba(139, 92, 246, 0.1); }
.pain-card:nth-child(5) .pain-card-icon svg { stroke: #8B5CF6; }

.pain-card:nth-child(6) .pain-card-icon { background: rgba(236, 72, 153, 0.1); }
.pain-card:nth-child(6) .pain-card-icon svg { stroke: #EC4899; }

.pain-card h4 {
  margin-bottom: 0.75rem;
}

.pain-card p {
  font-size: 1rem;
  color: var(--gray-500);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-content h2 {
  margin-bottom: 1.5rem;
}

.solution-content p {
  margin-bottom: 2rem;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.solution-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 212, 0.15);
  border-radius: 50%;
  margin-top: 2px;
}

.solution-item-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary-cyan);
}

.solution-item-text {
  font-size: 1rem;
  color: var(--gray-700);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-container {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.3;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

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

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 14px 0 rgba(0, 212, 212, 0.3);
}

.step-card h4 {
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* ============================================
   AGENTS SECTION
   ============================================ */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.agent-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--agent-color, var(--gradient-brand));
}

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

.agent-card.dora { --agent-color: #00D4D4; }
.agent-card.clara { --agent-color: #6366F1; }
.agent-card.vera { --agent-color: #10B981; }
.agent-card.prima { --agent-color: #F59E0B; }

.agent-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 212, 0.1);
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--agent-color, var(--primary-cyan));
}

.agent-card.dora .agent-icon { background: rgba(0, 212, 212, 0.1); color: #00D4D4; }
.agent-card.clara .agent-icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.agent-card.vera .agent-icon { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.agent-card.prima .agent-icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

.agent-title h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.agent-title span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.agent-description {
  margin-bottom: 1.5rem;
}

.agent-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agent-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.agent-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-cyan);
  flex-shrink: 0;
}

/* ============================================
   SOLUTIONS/FLOWS SECTION
   ============================================ */
.flows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.flow-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.flow-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.flow-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.flow-card h3 {
  margin-bottom: 1rem;
}

.flow-card p {
  margin-bottom: 1.5rem;
}

.flow-results {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.flow-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.flow-result svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-cyan);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-cyan);
  position: relative;
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
  content: 'Mais Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.pricing-value {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.pricing-value strong {
  color: var(--primary-cyan);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   TARGET AUDIENCE
   ============================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.audience-column h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.audience-column h3 svg {
  width: 24px;
  height: 24px;
}

.audience-column.ideal h3 {
  color: #34d399;
}

.audience-column.ideal h3 svg {
  stroke: #34d399;
}

.audience-column.not-ideal h3 {
  color: #f87171;
}

.audience-column.not-ideal h3 svg {
  stroke: #f87171;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.audience-column.ideal .audience-item {
  background: rgba(16, 185, 129, 0.05);
}

.audience-column.ideal .audience-item:hover {
  background: rgba(16, 185, 129, 0.1);
  border-left-color: #10b981;
}

.audience-column.not-ideal .audience-item {
  background: rgba(239, 68, 68, 0.05);
}

.audience-column.not-ideal .audience-item:hover {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: #ef4444;
}

.audience-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.audience-column.ideal .audience-item svg {
  stroke: #34d399;
}

.audience-column.not-ideal .audience-item svg {
  stroke: #f87171;
}

.audience-item span {
  font-size: 0.9375rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* ============================================
   WORKFLOW CONTAINER
   ============================================ */
.workflow-container {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 1.5rem;
  padding: 3.75rem 2.5rem;
}

.workflow-flow {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Client/Input Section */
.flow-client {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
}

.client-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 2rem 1.25rem;
  transition: all 0.3s ease;
}

.client-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.client-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.client-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.client-description {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Arrow */
.flow-arrow {
  flex-shrink: 0;
  font-size: 2.5rem;
  color: #00D4D4;
  font-weight: bold;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Agents Processing Section */
.flow-agents {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
}

.agents-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00D4D4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

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

.agent-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.agent-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.agent-icon-dora {
  background: linear-gradient(135deg, #00D4D4 0%, #00B4B4 100%);
  box-shadow: 0 4px 12px rgba(0, 212, 212, 0.3);
}

.agent-icon-clara {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.agent-icon-vera {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.agent-icon-prima {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.agent-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.agent-role {
  font-size: 0.6875rem;
  color: #64748b;
}

/* Output/Delivery Section */
.flow-output {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
}

.output-box {
  background: linear-gradient(135deg, #00D4D4 0%, #00B4B4 100%);
  border-radius: 1rem;
  padding: 2rem 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 212, 212, 0.4);
}

.output-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 212, 212, 0.5);
}

.output-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.output-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.output-description {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
  .workflow-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

  .flow-client,
  .flow-output {
    width: 100%;
  }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem;
}

.trust-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 212, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-cyan);
}

.trust-item h4 {
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--navy-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 212, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--gray-300);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 212, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-cyan);
}

.contact-detail-text h4 {
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  font-size: 1rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--gray-800);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary-cyan);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.9375rem;
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-bottom-links a:hover {
  color: var(--primary-cyan);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ILLUSTRATIONS (SVG placeholders)
   ============================================ */
.illustration-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(0, 212, 212, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.illustration-placeholder::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='%2300D4D4' fill-opacity='0.05'%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");
}

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

  .hero-text {
    max-width: 100%;
  }

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

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

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .solution-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-line {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .agents-grid,
  .flows-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand .logo {
    justify-content: center;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-hero-content h1 {
  margin-bottom: 1rem;
}

.contact-hero-content > p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 212, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.contact-benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-cyan);
}

.contact-benefit-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-benefit-text p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.main-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.main-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.main-form-card > p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--gray-500);
}

.form-error {
  display: none;
  background: #FEE2E2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #DC2626;
  font-size: 0.9375rem;
}

.form-error.show {
  display: block;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 212, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-cyan);
}

.contact-detail-text h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--gray-500);
}

.contact-detail-text p {
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }
  .main-form-card {
    order: -1;
  }
}

/* ============================================
   AGENT DETAIL PAGE STYLES
   ============================================ */
.agent-detail {
  padding: 5rem 0;
  scroll-margin-top: 100px;
}

.agent-detail:nth-child(even) {
  background: var(--gray-50);
}

.agent-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.agent-detail:nth-child(even) .agent-detail-grid {
  direction: rtl;
}

.agent-detail:nth-child(even) .agent-detail-grid > * {
  direction: ltr;
}

.agent-detail-content {
  max-width: 540px;
}

.agent-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.agent-detail-badge.dora { 
  background: rgba(0, 212, 212, 0.1); 
  color: #00B4B4; 
}

.agent-detail-badge.clara { 
  background: rgba(99, 102, 241, 0.1); 
  color: #6366F1; 
}

.agent-detail-badge.vera { 
  background: rgba(16, 185, 129, 0.1); 
  color: #10B981; 
}

.agent-detail-badge.prima { 
  background: rgba(245, 158, 11, 0.1); 
  color: #F59E0B; 
}

.agent-detail-content h2 {
  margin-bottom: 0.5rem;
}

.agent-detail-content .subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.agent-detail-content > p {
  margin-bottom: 2rem;
}

.agent-detail-section {
  margin-bottom: 2rem;
}

.agent-detail-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.agent-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agent-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.agent-detail-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.agent-detail-list.does li svg { 
  stroke: var(--primary-cyan); 
}

.agent-detail-list.doesnt li svg { 
  stroke: #EF4444; 
}

.agent-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .agent-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .agent-detail:nth-child(even) .agent-detail-grid {
    direction: ltr;
  }
  .agent-visual {
    order: -1;
  }
}
