/* Base & Variables */
:root {
  /* Logo Colors & Brand */
  --color-orange: #ef8b00;
  --color-orange-light: #ffaa33;
  --color-blue-dark: #003775;
  --color-blue: #3a87cb;
  --color-blue-light: #70baff;
  --color-green: #10b981;
  --color-red: #ef4444;
  --color-yellow: #f59e0b;
  
  /* Theme Colors - Dark Futuristic */
  --bg-main: #060b13;
  --bg-surface: #0a1424;
  --bg-surface-glass: rgba(10, 20, 36, 0.6);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --border-color: rgba(58, 135, 203, 0.2);
  --glow-orange: rgba(239, 139, 0, 0.2);
  --glow-blue: rgba(58, 135, 203, 0.15);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-orange { color: var(--color-orange); }
.text-blue { color: var(--color-blue); }
.text-green { color: var(--color-green); }
.text-gradient {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--color-orange), #ff9e22);
  color: #fff;
  box-shadow: 0 4px 15px var(--glow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 139, 0, 0.4);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}

.btn-outline-primary:hover {
  background: var(--glow-orange);
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

.btn-massive {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 12px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-blue-light);
  letter-spacing: -1px;
}

.nav-links {
  display: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-orange);
}

.nav-cta { padding: 0.5rem 1rem; font-size: 0.85rem; white-space: nowrap; }

@media (min-width: 769px) {
  .logo-text { font-size: 1.8rem; }
  .nav-links { display: flex; gap: 2rem; }
  .nav-cta { padding: 0.8rem 1.8rem; font-size: 1rem; }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
  z-index: -1;
  filter: blur(100px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
  z-index: -1;
  filter: blur(80px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(58, 135, 203, 0.1);
  color: var(--color-blue-light);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 auto 2.5rem;
  max-width: 90%;
}

@media (min-width: 993px) {
  .hero-container { grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-subtitle { margin: 0 0 2.5rem 0; }
  .hero-title { font-size: 3.5rem; }
  .hero { padding-top: 180px; }
}

/* Glass Dashboard Visual */
.hero-visual { width: 100%; position: relative; }

.glass-dashboard {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.glass-dashboard:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dash-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-group { display: flex; gap: 6px; margin-right: 1rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: var(--color-red); }
.dot.yellow { background: var(--color-yellow); }
.dot.green { background: var(--color-green); }
.dash-title { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }

.dash-body { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 576px) { 
  .dash-body { grid-template-columns: 1fr 1fr; } 
  .dash-chart { grid-column: span 2; }
}

.dash-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-info { display: flex; flex-direction: column; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.2rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; font-family: var(--font-heading); }

.dash-chart {
  grid-column: span 1;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 1rem;
}

.bar {
  width: 15%;
  background: linear-gradient(to top, var(--color-blue), var(--color-blue-light));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s ease-out forwards;
  opacity: 0;
}

.bar.h-30 { height: 30%; animation-delay: 0.1s; }
.bar.h-40 { height: 40%; animation-delay: 0.2s; }
.bar.h-60 { height: 60%; animation-delay: 0.3s; }
.bar.h-80 { height: 80%; animation-delay: 0.4s; }
.bar.h-100 { height: 100%; animation-delay: 0.5s; }

@keyframes barGrow {
  0% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

/* Social Proof */
.social-proof {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0, 0, 0, 0.2);
}

.proof-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.proof-item { text-align: center; }
.proof-number { font-size: 2.5rem; font-weight: 800; color: var(--color-blue-light); }
.proof-text { color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; font-weight: 600; }
.proof-divider { display: none; }

@media(min-width: 769px) { .proof-divider { display: block; width: 1px; height: 50px; background: rgba(255,255,255,0.1); } }

/* Shared Section Styles */
section { padding: 100px 0; }
.section-header { margin-bottom: 4rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Problems Section */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--color-red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}

.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.problem-icon {
  width: 50px; height: 50px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-red);
  margin-bottom: 1.5rem;
}

.problem-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.problem-card p { color: var(--text-secondary); font-size: 0.95rem; }


/* Solution Section */
.solution { background: rgba(10, 20, 36, 0.3); }
.solution-container { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }

.solution-list { list-style: none; margin-top: 2rem; }
.solution-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-secondary);
}
.solution-list li strong { color: var(--text-primary); }

.solution-visual.glass-box {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.sync-graphic { position: relative; width: 200px; height: 200px; }
.pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px solid var(--color-blue);
  animation: pulseRing 3s infinite;
}
.center-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; color: var(--text-primary); z-index: 2;
}
.floating-icon {
  position: absolute; width: 32px; height: 32px; color: var(--color-orange);
  animation: floatIcon 4s ease-in-out infinite alternate;
}
.floating-icon.up { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.floating-icon.right { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1s; }
.floating-icon.left { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 2s; }

@keyframes pulseRing {
  0% { width: 100px; height: 100px; opacity: 1; }
  100% { width: 300px; height: 300px; opacity: 0; }
}
@keyframes floatIcon {
  0% { transform: translate(-50%, -10px); }
  100% { transform: translate(-50%, 10px); }
}

@media (min-width: 993px) { .solution-container { grid-template-columns: 1fr 1fr; } }


/* Innovations Section */
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.innovation-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s;
}

.hover-glow:hover {
  background: rgba(58, 135, 203, 0.05); border-color: rgba(58, 135, 203, 0.3);
  box-shadow: 0 0 20px rgba(58, 135, 203, 0.1); transform: translateY(-3px);
}

.card-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(239, 139, 0, 0.2), rgba(239, 139, 0, 0.05));
  color: var(--color-orange); display: flex; align-items: center; justify-content: center;
}

.innovation-card h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.innovation-card p { color: var(--text-secondary); font-size: 0.9rem; }


/* Modules Section */
.modules { background: rgba(10, 20, 36, 0.3); }
.modules-tabs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
}

.module-category {
  background: rgba(0, 0, 0, 0.2); border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.module-cat-header {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-blue-light);
}

.module-list { list-style: none; }
.module-list li {
  padding: 0.5rem 0; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem;
}
.module-list li::before { content: '→'; color: var(--color-orange); font-size: 1.2rem; }


/* Impact / Parallax Section */
.impact {
  position: relative; padding: 120px 0; background: var(--color-blue-dark);
  text-align: center; overflow: hidden;
}

.impact::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.impact-text { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; position: relative; z-index: 2; }
.impact-text .highlight { color: var(--color-orange); }
@media (min-width: 769px) { .impact-text { font-size: 2.2rem; } }


/* Results Section */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.result-item { text-align: center; padding: 2rem; }
.result-icon-large {
  width: 80px; height: 80px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
}
.result-icon-large svg { width: 40px; height: 40px; }


/* CTA Final */
.final-cta { padding: 120px 0; position: relative; }
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60%; height: 60%; background: radial-gradient(circle, var(--glow-orange) 0%, transparent 60%);
  z-index: -1; filter: blur(60px); opacity: 0.5;
}

.urgency-text { margin-top: 1.5rem; color: var(--text-secondary); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* Animations */
.cta-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 139, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(239, 139, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 139, 0, 0); }
}

/* FAB WhatsApp */
.fab-whatsapp {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px; border-radius: 50%;
  background-color: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); z-index: 999;
  transition: all 0.3s;
  animation: fabPulse 2s infinite;
}

.fab-whatsapp:hover { transform: scale(1.1); }

@keyframes fabPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Clientes Marquee */
.clients-marquee {
  width: 100%; overflow: hidden; background: rgba(0, 0, 0, 0.4);
  padding: 2.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-content {
  display: flex; gap: 4rem; padding: 0 2rem;
}
.client-logo {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 2px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Depoimentos */
.testimonials { background: var(--bg-main); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
}
.testimonial-card {
  background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px; padding: 2.5rem 2rem; position: relative;
}
.quote-icon {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255, 255, 255, 0.05);
}
.quote-icon svg { width: 48px; height: 48px; }
.testimonial-text {
  color: var(--text-secondary); font-style: italic; font-size: 1.05rem;
  margin-bottom: 2rem; position: relative; z-index: 1;
}
.testimonial-author h4 { font-size: 1.1rem; color: var(--color-blue-light); margin-bottom: 0.2rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-secondary); }

/* Mega Footer */
.footer-mega { border-top: 1px solid rgba(255,255,255,0.1); padding: 5rem 0 2rem; margin-top: 4rem; background: #040910;}
.footer-mega-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem;
}
@media (min-width: 577px) {
  .footer-mega-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 993px) {
  .footer-mega-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--text-primary); }
.footer-desc { color: var(--text-secondary); font-size: 0.95rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; justify-content: center; color: var(--text-primary);
  transition: all 0.3s;
}
.footer-socials a:hover { background: var(--color-orange); color: white; transform: translateY(-3px); }
.footer-links-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.footer-links-col ul { list-style: none; padding: 0; }
.footer-links-col ul li { margin-bottom: 0.8rem; }
.footer-links-col ul li a {
  color: var(--text-secondary); font-size: 0.95rem; transition: color 0.3s;
}
.footer-links-col ul li a:hover { color: var(--color-orange); }
.footer-mega-bottom {
  text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem; color: var(--text-secondary); font-size: 0.9rem;
}

/* Pricing Section */
.pricing { background: var(--bg-surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.pricing-card { background: var(--bg-main); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 2.5rem 2rem; transition: all 0.3s; display: flex; flex-direction: column; position: relative; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); border-color: var(--color-blue); }
.pro-card { background: linear-gradient(145deg, rgba(10, 20, 36, 1), rgba(0, 55, 117, 0.3)); border-color: var(--color-orange); box-shadow: 0 0 30px var(--glow-orange); }
.pro-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--color-orange); color: #fff; padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pricing-header { text-align: center; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 2rem; }
.pricing-header h3 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 1rem; }
.price { font-size: 3rem; font-family: var(--font-heading); font-weight: 800; color: var(--text-primary); display: flex; justify-content: center; align-items: baseline; line-height: 1; }
.price span { font-size: 1rem; color: var(--text-secondary); margin-left: 0.5rem; font-weight: 500; }
.pricing-desc { margin-top: 1rem; color: var(--text-secondary); font-size: 0.95rem; }
.pricing-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; color: var(--text-secondary); font-size: 0.95rem; }
.pricing-features li svg { width: 18px; height: 18px; color: var(--color-green); flex-shrink: 0; }
.btn-block { width: 100%; }

/* Consulting */
.consulting { background: var(--bg-main); position: relative; padding: 120px 0; }
.consulting-box { padding: 2rem; text-align: center; border-color: rgba(239, 139, 0, 0.3); border-width: 2px; }
.consulting-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--glow-orange); color: var(--color-orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.consulting-icon svg { width: 40px; height: 40px; }

/* Representative */
.representative { background: rgba(10, 20, 36, 0.3); }
.representative-container { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.badge-accent { display: inline-block; padding: 0.4rem 1rem; background: rgba(239, 139, 0, 0.1); color: var(--color-orange); border: 1px solid var(--color-orange); border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; }
.rep-visual { display: flex; justify-content: center; }
.rep-graphic { width: 280px; height: 280px; border-radius: 50%; border: 2px dashed rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; position: relative; animation: spinDash 20s linear infinite; }
.rep-icon-main { width: 80px; height: 80px; color: var(--color-blue-light); animation: spinDashReverse 20s linear infinite; }
.rep-connection { position: absolute; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-surface); border: 2px solid var(--color-orange); display: flex; align-items: center; justify-content: center; }
.dot-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.dot-2 { bottom: 20px; right: -10px; }
.dot-3 { bottom: 20px; left: -10px; }

@keyframes spinDash { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes spinDashReverse { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }

@media (min-width: 993px) { .representative-container { grid-template-columns: 1fr 1fr; } .consulting-box { padding: 4rem; } }

/* Integrations */
.integrations { background: rgba(10, 20, 36, 0.5); padding: 100px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.integrations-container { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 993px) { .integrations-container { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }
.integration-img { box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.integration-img:hover { transform: scale(1.05); box-shadow: 0 20px 50px rgba(58, 135, 203, 0.2); }

/* Support & Training */
.support-training { padding: 120px 0; background: var(--bg-main); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.video-container { padding: 4rem 2rem; border: 1px solid rgba(255,0,0,0.3); background: rgba(10, 20, 36, 0.8); max-width: 800px; margin: 0 auto; text-align: center; border-radius: 24px; transition: transform 0.3s ease; }
.video-container:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(239, 68, 68, 0.15); border-color: rgba(255,0,0,0.5); }
.youtube-icon-huge { width: 80px; height: 80px; color: #ff0000; margin-bottom: 1.5rem; filter: drop-shadow(0 0 15px rgba(255,0,0,0.4)); }
.youtube-banner h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-primary); }
.youtube-banner p { color: var(--text-secondary); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }
