* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend Deca", sans-serif;
}

:root {
  --primary-blue: #1149ff;
  --secondary-cyan: #06b6d4;
  --primary-gradient: linear-gradient(135deg, #1149ff 0%, #06b6d4 100%);
  --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
  --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);

  /* Phase Colors */
  --scan-color: #3b82f6;
  --create-color: #10b981;
  --amplify-color: #f59e0b;
  --leverage-color: #8b5cf6;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: #000;
  color: white;
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
.main-container {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #000 0%, #0f172a 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   HERO SECTION REVOLUCIONÁRIA
   ======================================== */
.hero-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  margin-top: 7rem;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #000 0%, #1e293b 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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: 100px 100px, 150px 150px, 80px 80px;
  animation: particleFloat 20s linear infinite;
  z-index: 1;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(-5px) translateX(-5px);
  }
  75% {
    transform: translateY(-15px) translateX(3px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.scale-text {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: textGlow 3s ease-in-out infinite alternate;
}

.subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: #94a3b8;
  font-family: "Playfair Display", serif;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-soft);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out;
}

.methodology-preview {
  position: relative;
  width: 400px;
  height: 400px;
}

.phase-preview {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.phase-preview:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phase-preview.scan {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(59, 130, 246, 0.2);
  animation: float 3s ease-in-out infinite;
}

.phase-preview.create {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(16, 185, 129, 0.2);
  animation: float 3s ease-in-out infinite 0.5s;
}

.phase-preview.amplify {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(245, 158, 11, 0.2);
  animation: float 3s ease-in-out infinite 1s;
}

.phase-preview.leverage {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(139, 92, 246, 0.2);
  animation: float 3s ease-in-out infinite 1.5s;
}

.phase-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.phase-preview span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--primary-gradient);
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #1149ff;
}

/* ========================================
   DIFERENCIAL SECTION
   ======================================== */
.diferencial-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 1rem;
}

.diferencial-section .container {
  border-radius: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.comparison-card.scale {
  border-color: var(--primary-blue);
  box-shadow: 0 0 30px rgba(17, 73, 255, 0.2);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.card-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card-badge.old {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.card-badge.new {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-list .fas {
  font-size: 1rem;
  width: 20px;
}

.comparison-list .fa-times {
  color: #ef4444;
}

.comparison-list .fa-check {
  color: #10b981;
}

/* ========================================
   METHODOLOGY PHASES
   ======================================== */
.methodology-section {
  padding: 6rem 0;
  background: #000;
}

.phase-container {
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-smooth);
}

.phase-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.phase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.phase-content.reverse {
  direction: rtl;
}

.phase-content.reverse > * {
  direction: ltr;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.phase-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--primary-gradient);
  color: white;
}

.phase-title h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.scan-phase .phase-title h3 {
  color: var(--scan-color);
}
.create-phase .phase-title h3 {
  color: var(--create-color);
}
.amplify-phase .phase-title h3 {
  color: var(--amplify-color);
}
.leverage-phase .phase-title h3 {
  color: var(--leverage-color);
}

.phase-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
}

.phase-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #06b6d4;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--secondary-cyan);
  font-family: "Playfair Display", serif;
}

.phase-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.phase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.feature-item i {
  color: var(--secondary-cyan);
  width: 20px;
}

.phase-results h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.phase-results ul {
  list-style: none;
  padding-left: 1rem;
}

.phase-results li {
  position: relative;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.phase-results li::before {
  content: "→";
  position: absolute;
  left: -1rem;
  color: var(--secondary-cyan);
  font-weight: bold;
}

/* Phase Visuals */
.visual-container {
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* SCAN Visual */
.scan-visual {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.data-points {
  position: absolute;
  width: 100%;
  height: 100%;
}

.data-point {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--scan-color);
  border-radius: 50%;
  animation: scanPulse 2s ease-in-out infinite;
}

.data-point:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: var(--delay);
}

.data-point:nth-child(2) {
  top: 60%;
  right: 25%;
  animation-delay: var(--delay);
}

.data-point:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: var(--delay);
}

.data-point:nth-child(4) {
  top: 40%;
  right: 40%;
  animation-delay: var(--delay);
}

.scan-icon {
  font-size: 3rem;
  color: var(--scan-color);
  animation: scanRotate 4s linear infinite;
}

/* CREATE Visual */
.create-visual {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.2) 0%,
    transparent 70%
  );
  border-radius: 20px;
}

.experiment-tubes {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  position: absolute;
  bottom: 30%;
}

.tube {
  width: 20px;
  background: linear-gradient(to top, var(--create-color), transparent);
  border-radius: 10px 10px 0 0;
  animation: tubeGrow 3s ease-in-out infinite;
  animation-delay: var(--delay);
  height: var(--height);
}

.create-icon {
  font-size: 3rem;
  color: var(--create-color);
  animation: createShake 2s ease-in-out infinite;
}

/* AMPLIFY Visual */
.amplify-visual {
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.2) 0%,
    transparent 70%
  );
  border-radius: 20px;
}

.growth-chart {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  position: absolute;
  bottom: 20%;
}

.chart-bar {
  width: 15px;
  background: linear-gradient(
    to top,
    var(--amplify-color),
    rgba(245, 158, 11, 0.5)
  );
  border-radius: 8px 8px 0 0;
  animation: chartGrow 2s ease-out infinite;
  animation-delay: var(--delay);
  height: var(--height);
}

.amplify-icon {
  font-size: 3rem;
  color: var(--amplify-color);
  animation: amplifyPulse 2s ease-in-out infinite;
}

/* LEVERAGE Visual */
.leverage-visual {
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.infinity-loop {
  position: absolute;
  width: 200px;
  height: 100px;
}

.loop-path {
  width: 100%;
  height: 100%;
  border: 3px solid var(--leverage-color);
  border-radius: 50px;
  position: relative;
}

.loop-path::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 100%;
  background: #000;
}

.loop-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--leverage-color);
  border-radius: 50%;
  animation: loopMove 4s linear infinite;
  animation-delay: var(--delay);
}

.leverage-icon {
  font-size: 3rem;
  color: var(--leverage-color);
  animation: leverageRotate 6s linear infinite;
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-blue);
}

.result-icon {
  font-size: 2rem;
  color: var(--secondary-cyan);
  margin-bottom: 1rem;
}

.result-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-description {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* ========================================
   SEGMENTS SECTION
   ======================================== */
.segments-section {
  padding: 6rem 0;
  background: #000;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.segment-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.segment-card.clinicas:hover {
  border-color: #ef4444;
}
.segment-card.ecommerce:hover {
  border-color: #f59e0b;
}
.segment-card.saas:hover {
  border-color: #06b6d4;
}
.segment-card.energia:hover {
  border-color: #10b981;
}

.segment-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.segment-card.clinicas .segment-icon {
  color: #ef4444;
}
.segment-card.ecommerce .segment-icon {
  color: #f59e0b;
}
.segment-card.saas .segment-icon {
  color: #06b6d4;
}
.segment-card.energia .segment-icon {
  color: #10b981;
}

.segment-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f1f5f9;
}

.mini-phase {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.mini-phase strong {
  color: var(--secondary-cyan);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1149ff 0%, #06b6d4 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-primary.large,
.cta-secondary.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.cta-primary.large {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-primary.large:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary.large {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary.large:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.back-b {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 4rem 0;
}

.newsletter {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.formulario h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.formulario p {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.formulario input {
  width: 100%;
  max-width: 400px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.formulario input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(17, 73, 255, 0.3);
}

.formulario input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.formulario button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.formulario button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

/* ========================================
   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 textGlow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(17, 73, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(17, 73, 255, 0.8),
      0 0 40px rgba(6, 182, 212, 0.3);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes scanPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes scanRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes tubeGrow {
  0%,
  100% {
    height: 20%;
  }
  50% {
    height: var(--height);
  }
}

@keyframes createShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

@keyframes chartGrow {
  0% {
    height: 10%;
  }
  100% {
    height: var(--height);
  }
}

@keyframes amplifyPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes loopMove {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

@keyframes leverageRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero-content,
  .phase-content,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .phase-content.reverse {
    direction: ltr;
  }

  .hero-visual {
    order: -1;
  }

  .methodology-preview {
    width: 300px;
    height: 300px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .scale-text {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .phase-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .phase-features {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 80vh;
  }

  .scale-text {
    font-size: 2.5rem;
  }

  .methodology-preview {
    width: 250px;
    height: 250px;
  }

  .phase-preview {
    width: 80px;
    height: 80px;
  }

  .phase-preview span {
    font-size: 0.7rem;
  }

  .visual-container {
    width: 200px;
    height: 200px;
  }
}
