* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-blue: #1149ff;
  --secondary-cyan: #06b6d4;
  --primary-gradient: linear-gradient(135deg, #1149ff 0%, #06b6d4 100%);
  --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --danger-red: #ef4444;

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Typography */
  --font-primary: "Lexend Deca", sans-serif;
  --font-display: "Playfair Display", serif;
  --font-mono: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: #000;
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 5rem;
  padding: 2rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(17, 73, 255, 0.3) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(6, 182, 212, 0.2) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 40%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    );
  background-size: 60px 60px, 100px 100px, 80px 80px;
  animation: floatingParticles 25s linear infinite;
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(15, 23, 42, 0.9) 100%
  );
}

@keyframes floatingParticles {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50px, -50px);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 0;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-badge i {
  color: var(--primary-blue);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.4s both;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: slideInUp 1s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  animation: slideInUp 1s ease-out 1s both;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-medium);
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-strong);
}

.cta-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: white;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.growth-chart {
  width: 100%;
  height: 400px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.chart-period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(17, 73, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  border: 1px solid rgba(17, 73, 255, 0.3);
}

#growth-animation {
  flex: 1;
  width: 100%;
  height: auto;
}

.chart-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.chart-metric {
  text-align: center;
  flex: 1;
}

.chart-metric .metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-mono);
  margin-bottom: 0.3rem;
}

.chart-metric .metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

.problem-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(239, 68, 68, 0.1) 0%,
    transparent 70%
  );
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  color: var(--danger-red);
  font-weight: 800;
}

.section-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.problem-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition-smooth);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card:hover {
  transform: translateY(-10px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 25px 50px rgba(239, 68, 68, 0.2);
}

.problem-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--danger-red) 0%, #dc2626 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition-smooth);
}

.problem-card:hover .problem-icon {
  transform: scale(1.1) rotate(5deg);
}

.problem-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.problem-impact {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger-red);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.problem-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.problem-cta p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-urgent {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--danger-red) 0%, #dc2626 100%);
  color: white;
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.cta-urgent:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
}

.services-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.tab-panel.active {
  display: block;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-info h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.service-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.value-proposition h4,
.service-process h4,
.service-includes h4,
.social-platforms h4,
.automation-flow h4,
.consulting-phases h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.benefits-list {
  list-style: none;
  margin-bottom: 3rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.benefits-list i {
  color: var(--success-green);
  font-size: 1.2rem;
}

.process-steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

.step-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.service-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.growth-simulator,
.traffic-dashboard,
.social-growth,
.automation-dashboard,
.consulting-dashboard {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

/* Growth Hacking Styles */
.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.simulator-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.simulator-status {
  background: var(--primary-gradient);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.growth-phases {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.phase-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

.phase-indicator.active .phase-dot {
  background: var(--primary-blue);
  box-shadow: 0 0 10px rgba(17, 73, 255, 0.5);
}

.phase-indicator span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.phase-indicator.active span {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Traffic Dashboard Styles */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dashboard-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

/* Social Media Styles */
.growth-metrics {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.growth-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.growth-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.growth-data {
  flex: 1;
}

.growth-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-mono);
  margin-bottom: 0.3rem;
}

.growth-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
}

.growth-trend {
  font-size: 0.8rem;
  color: var(--success-green);
  font-weight: 600;
}

/* Automation Styles */
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.status-dot.active {
  background: var(--success-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.status-indicator span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.automation-flow-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.flow-node i {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}

.flow-node span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.flow-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--secondary-cyan)
  );
  margin: 0 0.5rem;
  border-radius: 1px;
}

/* Consulting Styles */
.consulting-badge {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning-orange);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.consulting-timeline {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 25px;
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
}

.timeline-item.completed .timeline-dot {
  background: var(--success-green);
  border-color: var(--success-green);
}

.timeline-item.active .timeline-dot {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  box-shadow: 0 0 10px rgba(17, 73, 255, 0.5);
}

.timeline-content h6 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.2rem 0;
}

.timeline-content span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.consulting-results {
  display: flex;
  gap: 1rem;
}

.consulting-results .result-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.consulting-results .result-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: white;
}

.consulting-results .result-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-mono);
  margin-bottom: 0.3rem;
}

.consulting-results .result-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-stats,
.dashboard-metrics {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stat,
.metric {
  text-align: center;
}

.stat-value,
.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-mono);
}

.stat-desc,
.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Service Includes Grid */
.includes-grid,
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.include-item,
.platform {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.include-item:hover,
.platform:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.include-item i,
.platform i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

/* Automation Flow */
.flow-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.flow-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.flow-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Consulting Phases */
.phases-list {
  display: grid;
  gap: 1.5rem;
}

.phase {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.phase:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.phase-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-mono);
  min-width: 60px;
}

.phase-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.phase-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.social-proof-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

.social-proof-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  z-index: 1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.result-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition-smooth);
}

.result-card:hover::before {
  opacity: 1;
}

.result-card:hover {
  transform: translateY(-10px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.company-logo img {
  width: 80px;
  height: auto;
  border-radius: 10px;
}

.result-period {
  background: var(--success-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.result-metrics {
  display: grid;
  gap: 1.5rem;
}

.result-metrics .metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-metrics .metric:last-child {
  border-bottom: none;
}

.result-metrics .metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--success-green);
}

.result-metrics .metric-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-info p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-benefits {
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
  color: var(--success-green);
  font-size: 1.2rem;
}

.urgency-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 1.5rem;
  border-radius: 15px;
  color: var(--warning-orange);
}

.urgency-icon {
  font-size: 1.5rem;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem;
  animation: slideInLeft 1s ease-out;
}

/* Formulário Moderno */
.receber-email {
  animation: slideInRight 1s ease-out;
}

.sub-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sub-form > div {
  position: relative;
}

.sub-form input,
.sub-form select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgb(0, 0, 0);
  font-size: 1rem;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.sub-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.sub-form select {
  color: rgba(255, 255, 255, 0.7);
}

.sub-form select option {
  background: var(--dark-bg);
  color: rgb(0, 0, 0);
}

.sub-form input:focus,
.sub-form select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(17, 73, 255, 0.2);
  transform: translateY(-2px);
  color: rgb(0, 0, 0);
}

.sub-form button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.sub-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.sub-form button:hover::before {
  left: 100%;
}

.sub-form button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(17, 73, 255, 0.4);
}

.form-progress {
  margin-bottom: 3rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 3px;
  transition: width 0.5s ease;
  width: 33.33%;
}

.progress-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.form-step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(17, 73, 255, 0.1);
}

.form-group i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.btn-prev,
.btn-next,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.btn-prev {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: white;
}

.btn-prev:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-next,
.btn-submit {
  background: var(--primary-gradient);
  color: white;
  margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

.footer-contact i {
  color: var(--primary-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .hero-container,
  .service-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .problems-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }

  .flow-steps {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .includes-grid,
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-info h3 {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2.5rem;
  }

  .problem-card,
  .result-card {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}
