* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #F07900;
  --orange-light: #F8A145;
  --orange-dark: #D35100;
  --grey: #151515;
  --grey-light: #3a3a3a;
  --grey-dark: #000000;
  --white: #ffffff;
  --text-light: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--grey-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--grey-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-dark);
}

/* Header Styles */
.header {
  background-color: rgba(39, 39, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(240, 121, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 1002;
}

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

.logo-ai {
  color: var(--orange);
}

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

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--orange);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  z-index: 1002;
  position: relative;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(21, 21, 21, 0.98);
  backdrop-filter: blur(10px);
  padding: 0;
  border-top: 1px solid rgba(240, 121, 0, 0.3);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 0;
}

.mobile-menu .nav-link {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-menu .nav-link:hover {
  color: var(--orange);
  background-color: rgba(240, 121, 0, 0.08);
  padding-left: 2rem;
}

.mobile-menu .btn-primary {
  margin: 1.5rem 1.5rem 0.5rem;
  text-align: center;
  display: block;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
}

/* Desktop - Hide Mobile Elements */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

.btn-primary,
a.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover,
a.btn-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.4);
}

/* Hero Styles */
.hero {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, var(--grey-dark) 0%, var(--grey) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.highlight {
  color: var(--orange);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

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

.btn-hero-primary,
a.btn-hero-primary {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover,
a.btn-hero-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.4);
}

.btn-hero-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--grey-light);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

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

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 0;
}

/* Animated Workflow */
.animated-workflow {
  width: 100%;
  max-width: 500px;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.workflow-step {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-step.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  z-index: 2;
}

.step-visual-container {
  width: 100%;
  background: linear-gradient(145deg, rgba(39, 39, 39, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
  border: 2px solid rgba(240, 121, 0, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 121, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step 1: Upload Animation */
.upload-animation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.upload-icon-animated {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.upload-svg-animated {
  width: 48px;
  height: 48px;
  stroke: var(--orange);
  stroke-width: 2.5;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.upload-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRing 2s ease-out infinite;
}

.upload-pulse-ring::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--orange);
  border-radius: 50%;
  opacity: 0.2;
  animation: pulseRing 2s ease-out infinite 0.5s;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.step-title-animated {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.step-subtitle-animated {
  color: var(--text-light);
  font-size: 1rem;
  opacity: 0.8;
}

/* Step 2: AI Processing Animation */
.processing-animation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ai-brain-container {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.brain-icon-animated {
  font-size: 4.5rem;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(240, 121, 0, 0.4));
}

.processing-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border: 3px solid var(--orange);
  border-radius: 50%;
  opacity: 0.4;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-top-color: transparent;
  animation: spin 2s linear infinite;
}

.ring-2 {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  border-right-color: transparent;
  animation: spin 1.5s linear infinite reverse;
}

.ring-3 {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  border-bottom-color: transparent;
  animation: spin 1s linear infinite;
}

.progress-bar {
  width: 100%;
  max-width: 300px;
  height: 6px;
  background: rgba(58, 58, 58, 0.6);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1rem;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 10px;
  width: 0%;
  animation: progressFill 3s ease-out forwards;
  box-shadow: 0 0 10px rgba(240, 121, 0, 0.5);
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Step 3: Captions Animation */
.captions-animation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.captions-appearing {
  width: 100%;
  max-width: 400px;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.caption-line {
  min-height: 16px;
  background: transparent;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
  padding: 0.5rem 0;
  border-left: 3px solid var(--orange);
  padding-left: 0.75rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.5s ease-out forwards;
  border-radius: 0;
}

.caption-line.line-1 {
  width: 90%;
  animation-delay: 0.2s;
}

.caption-line.line-2 {
  width: 75%;
  animation-delay: 0.4s;
}

.caption-line.line-3 {
  width: 60%;
  animation-delay: 0.6s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hashtags-appearing {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hashtag-bubble {
  background: linear-gradient(135deg, rgba(240, 121, 0, 0.2) 0%, rgba(240, 121, 0, 0.1) 100%);
  border: 1px solid rgba(240, 121, 0, 0.4);
  border-radius: 16px;
  padding: 0.5rem 1rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: scale(0);
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  white-space: nowrap;
}

.hashtag-bubble.tag-1 {
  animation-delay: 0.8s;
}

.hashtag-bubble.tag-2 {
  animation-delay: 1s;
}

.hashtag-bubble.tag-3 {
  animation-delay: 1.2s;
}

.hashtag-bubble.tag-4 {
  animation-delay: 1.4s;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Step 4: Sharing Animation */
.sharing-animation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.platforms-grid-animated {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

.platform-icon-animated {
  background: linear-gradient(135deg, rgba(58, 58, 58, 0.6) 0%, rgba(39, 39, 39, 0.8) 100%);
  border: 2px solid rgba(240, 121, 0, 0.3);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  animation: platformAppear 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transition: all 0.3s ease;
}

.platform-icon-animated:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.3);
}

.platform-icon-animated.platform-1 {
  animation-delay: 0.2s;
}

.platform-icon-animated.platform-2 {
  animation-delay: 0.4s;
}

.platform-icon-animated.platform-3 {
  animation-delay: 0.6s;
}

.platform-icon-animated.platform-4 {
  animation-delay: 0.8s;
}

@keyframes platformAppear {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.platform-bg {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.platform-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.check-mark {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: bold;
  opacity: 0;
  transform: scale(0);
  animation: checkMarkPop 0.3s ease-out forwards;
}

.platform-icon-animated.platform-1 .check-mark {
  animation-delay: 1s;
}

.platform-icon-animated.platform-2 .check-mark {
  animation-delay: 1.2s;
}

.platform-icon-animated.platform-3 .check-mark {
  animation-delay: 1.4s;
}

.platform-icon-animated.platform-4 .check-mark {
  animation-delay: 1.6s;
}

@keyframes checkMarkPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Progress Indicator */
.workflow-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grey-light);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.progress-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(240, 121, 0, 0.6);
  transform: scale(1.2);
}

.progress-dot.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  animation: pulseDot 1.5s ease-out infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.progress-line {
  width: 40px;
  height: 2px;
  background: var(--grey-light);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}

.progress-line.active {
  background: linear-gradient(90deg, var(--orange) 0%, rgba(240, 121, 0, 0.3) 100%);
}

.progress-line.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: lineFill 0.8s ease-out forwards;
}

@keyframes lineFill {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.interface-window {
  background: linear-gradient(145deg, rgba(39, 39, 39, 0.98) 0%, rgba(26, 26, 26, 1) 100%);
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 121, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  backdrop-filter: blur(30px);
  position: relative;
  transform: translateY(0) scale(1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.interface-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 121, 0, 0.5), transparent);
  opacity: 0.5;
}

.interface-window:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(240, 121, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

/* Window Header */
.window-header {
  background: linear-gradient(180deg, rgba(58, 58, 58, 0.8) 0%, rgba(39, 39, 39, 0.9) 100%);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.control-dot:nth-child(1) {
  background: #ff5f57;
}

.control-dot:nth-child(2) {
  background: #ffbd2e;
}

.control-dot:nth-child(3) {
  background: #28ca42;
}

.window-title {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  flex: 1;
  text-align: center;
}

.window-actions {
  width: 60px;
  display: flex;
  justify-content: flex-end;
}

.action-icon {
  font-size: 1rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.action-icon:hover {
  opacity: 1;
}

/* Interface Content */
.interface-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Upload Zone */
.upload-zone {
  width: 100%;
}

.upload-area {
  background: linear-gradient(135deg, rgba(58, 58, 58, 0.5) 0%, rgba(39, 39, 39, 0.7) 100%);
  border: 2px dashed rgba(240, 121, 0, 0.4);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.upload-area.active {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(58, 58, 58, 0.7) 0%, rgba(39, 39, 39, 0.9) 100%);
  border-style: solid;
}

.upload-area::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.upload-area:hover {
  border-color: rgba(240, 121, 0, 0.7);
  background: linear-gradient(135deg, rgba(58, 58, 58, 0.7) 0%, rgba(39, 39, 39, 0.9) 100%);
  transform: translateY(-3px);
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(240, 121, 0, 0.2);
}

.upload-icon-wrapper-premium {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.875rem;
  background: linear-gradient(135deg, rgba(240, 121, 0, 0.25) 0%, rgba(240, 121, 0, 0.15) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(240, 121, 0, 0.2);
  box-shadow: 
    0 4px 16px rgba(240, 121, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-area:hover .upload-icon-wrapper-premium,
.upload-area.active .upload-icon-wrapper-premium {
  transform: scale(1.08);
  box-shadow: 
    0 6px 20px rgba(240, 121, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.upload-svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  stroke-width: 2;
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.upload-area:hover .upload-svg,
.upload-area.active .upload-svg {
  stroke-width: 2.5;
  transform: translateY(-2px);
}

.upload-text-premium {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.upload-area:hover .upload-text-premium,
.upload-area.active .upload-text-premium {
  color: var(--orange);
}

.upload-hint-premium {
  color: var(--text-light);
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.upload-area:hover .upload-hint-premium,
.upload-area.active .upload-hint-premium {
  opacity: 1;
}

/* Preview Section */
.preview-section {
  width: 100%;
}

.preview-image-container {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--grey-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.preview-image-container:hover {
  border-color: rgba(240, 121, 0, 0.3);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.2);
}

.preview-image-container.active {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.3);
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.preview-image-container:hover .image-overlay,
.preview-image-container.active .image-overlay {
  opacity: 1;
}

.processing-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(240, 121, 0, 0.3);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.processing-indicator span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Captions Section */
.captions-section {
  background: linear-gradient(135deg, rgba(58, 58, 58, 0.4) 0%, rgba(39, 39, 39, 0.6) 100%);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.captions-section:hover {
  border-color: rgba(240, 121, 0, 0.2);
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(240, 121, 0, 0.15);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.platform-selector {
  display: flex;
  gap: 0.4rem;
  background: rgba(26, 26, 26, 0.6);
  padding: 0.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.platform-btn {
  padding: 0.4rem 0.875rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  position: relative;
  overflow: hidden;
}

.platform-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(240, 121, 0, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.platform-btn:hover::before {
  width: 100px;
  height: 100px;
}

.platform-btn.active {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
  transform: scale(1.05);
}

.platform-btn:hover:not(.active) {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Caption Output */
.caption-output {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.caption-text-area {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(39, 39, 39, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.125rem;
  min-height: 100px;
  max-height: 120px;
  overflow-y: auto;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: text;
  position: relative;
}

.caption-text-area::after {
  content: 'Click to edit';
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 0.7rem;
  color: var(--text-light);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.caption-text-area:hover {
  border-color: rgba(240, 121, 0, 0.25);
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(240, 121, 0, 0.15);
}

.caption-text-area:hover::after {
  opacity: 0.5;
}

.caption-preview-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
  user-select: text;
}

.hashtags-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-height: 32px;
}

.hashtag-chip {
  background: linear-gradient(135deg, rgba(240, 121, 0, 0.15) 0%, rgba(240, 121, 0, 0.1) 100%);
  border: 1px solid rgba(240, 121, 0, 0.3);
  color: var(--orange);
  padding: 0.4rem 0.875rem;
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  position: relative;
  overflow: hidden;
}

.hashtag-chip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(240, 121, 0, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.hashtag-chip:hover::before {
  width: 80px;
  height: 80px;
}

.hashtag-chip:hover {
  background: linear-gradient(135deg, rgba(240, 121, 0, 0.25) 0%, rgba(240, 121, 0, 0.2) 100%);
  border-color: var(--orange);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
  z-index: 1;
}

.hashtag-chip:active {
  transform: translateY(0) scale(1.05);
}

.action-buttons {
  display: flex;
  gap: 0.625rem;
}

.action-button {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.action-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.action-button:hover::before {
  width: 200px;
  height: 200px;
}

.action-button:active {
  transform: scale(0.98);
}

.action-button.primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(240, 121, 0, 0.3);
  z-index: 1;
}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240, 121, 0, 0.4);
}

.action-button.primary:active {
  transform: translateY(0) scale(0.98);
}

.action-button.secondary {
  background: rgba(58, 58, 58, 0.6);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.action-button.secondary:hover {
  background: rgba(58, 58, 58, 0.8);
  border-color: rgba(240, 121, 0, 0.3);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-button.secondary:active {
  transform: translateY(0) scale(0.98);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.action-button:hover .btn-icon {
  transform: scale(1.1);
}

.btn-text {
  position: relative;
  z-index: 1;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(240, 121, 0, 0.2) 0%, rgba(240, 121, 0, 0.1) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(240, 121, 0, 0.3);
  border-radius: 14px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(240, 121, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: float 5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 14px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 121, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.floating-card .card-icon {
  font-size: 1.2rem;
}

.floating-card .card-text {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.floating-card.card-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 60px;
  left: -30px;
  animation-delay: 1.3s;
}

.floating-card.card-3 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation-delay: 2.6s;
}

.flow-step-large {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-step-large.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.step-indicator-large {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(240, 121, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-title-large {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.step-content-large {
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-description-large {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0.9;
  max-width: 500px;
}

/* Step 1: Upload */
.poster-preview-large {
  width: 100%;
  display: flex;
  justify-content: center;
}

.poster-image-large {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.3);
  background: var(--grey-dark);
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-overlay-large {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(39, 39, 39, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.poster-image-large:hover .upload-overlay-large {
  opacity: 1;
}

.upload-icon-large {
  font-size: 3.5rem;
  animation: float 3s ease-in-out infinite;
}

.upload-text-large {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Step 2: AI Processing */
.ai-processing-large {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ai-brain-large {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-icon-large {
  font-size: 5rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(240, 121, 0, 0.4));
  position: relative;
  z-index: 2;
}

.processing-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 2s linear infinite;
  opacity: 0.6;
}

.processing-ring::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border: 2px solid var(--orange);
  border-radius: 50%;
  border-right-color: transparent;
  animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Smooth scrollbar for caption area */
.caption-text-area::-webkit-scrollbar {
  width: 6px;
}

.caption-text-area::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.caption-text-area::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

.caption-text-area::-webkit-scrollbar-thumb:hover {
  background: var(--orange-dark);
}

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

.processing-dots-large {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.processing-dots-large .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  animation: processing 1.4s ease-in-out infinite;
}

.processing-dots-large .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.processing-dots-large .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.processing-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Step 3: Captions */
.captions-display-large {
  width: 100%;
}

.platforms-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.platform-item-large {
  background: var(--grey-dark);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.platform-item-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.4);
  background: rgba(240, 121, 0, 0.1);
}

.platform-icon-large {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.platform-name-large {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.platform-status {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Step 4: Post Success */
.post-success-large {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.success-icon-large {
  font-size: 5rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(240, 121, 0, 0.4));
}

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

.success-title {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.success-message {
  color: var(--text-light);
  font-size: 1.1rem;
  opacity: 0.9;
}

.success-badge-large {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(240, 121, 0, 0.4);
  letter-spacing: 0.5px;
  animation: pulse 2s ease-in-out infinite;
}

/* Navigation Dots */
.flow-navigation {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grey-light);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot.active {
  background: var(--orange);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.4);
}

.nav-dot:hover {
  background: rgba(240, 121, 0, 0.6);
  transform: scale(1.2);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 120px;
  position: relative;
}

.step-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(240, 121, 0, 0.5);
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

.flow-arrow {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin: 0 0.5rem;
}

.arrow-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(240, 121, 0, 0.5));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.arrow-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.arrow-head {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 2px;
}

/* Step 1: Upload Poster */
.poster-preview-card {
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 1.25rem;
  width: 100%;
  max-width: 160px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.poster-preview-card:hover {
  border-color: var(--orange-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.4);
}

.poster-image-placeholder {
  position: relative;
  width: 100%;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--grey-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.poster-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(240, 121, 0, 0.95);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.poster-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Step 2: AI Processing */
.ai-processing-card {
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 160px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ai-processing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.1) 0%, transparent 70%);
  animation: rotate 3s linear infinite;
}

.ai-processing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.4);
}

.ai-brain {
  position: relative;
  margin-bottom: 0.75rem;
}

.brain-icon {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(240, 121, 0, 0.3));
}

.processing-dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.processing-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: processing 1.4s ease-in-out infinite;
}

.processing-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.processing-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes processing {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.ai-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

/* Step 3: Captions Output */
.captions-output {
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 1.25rem;
  width: 100%;
  max-width: 220px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.captions-output:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.4);
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.platform-card {
  background: var(--grey-dark);
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  text-align: center;
  border: 1.5px solid rgba(240, 121, 0, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.platform-card:hover {
  border-color: var(--orange);
  background: rgba(240, 121, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
}

.platform-icon {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  display: block;
}

.platform-name {
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.captions-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
}

/* Step 4: Post Success */
.post-success-card {
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 160px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.post-success-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.15) 0%, transparent 70%);
  animation: rotate 4s linear infinite;
}

.post-success-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.4);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(240, 121, 0, 0.3));
}

.post-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.success-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.4);
  letter-spacing: 0.5px;
}

.image-upload-preview {
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
  border: 2px dashed var(--orange);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 400px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-upload-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.image-upload-preview:hover {
  border-color: var(--orange-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(240, 121, 0, 0.3);
}

.upload-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.upload-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.upload-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
}

.upload-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.upload-hint {
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.caption-preview {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.platform-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
}

.caption-box {
  background-color: var(--grey);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.caption-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(240, 121, 0, 0.2);
}

.caption-text {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hashtag {
  background-color: var(--grey-light);
  color: var(--orange);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hashtag:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.caption-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-light);
}

.action-btn {
  flex: 1;
  background-color: var(--grey-light);
  color: var(--text-light);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-btn:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.copy-btn:hover {
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
}

.regenerate-btn:hover {
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
}

/* Features Styles */
.features {
  padding: 6rem 0;
  background-color: var(--grey-dark);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.features-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0.9;
}

.platforms-showcase {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
  border-radius: 16px;
  border: 1px solid rgba(240, 121, 0, 0.2);
}

.platforms-label {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.platform-tag {
  background-color: var(--grey-dark);
  color: var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(240, 121, 0, 0.3);
  transition: all 0.2s ease;
}

.platform-tag:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.feature-card {
  background-color: var(--grey);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(240, 121, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0.9;
}

/* How It Works Styles */
.how-it-works {
  padding: 6rem 0;
  background-color: var(--grey);
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
}

.how-it-works-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.how-it-works-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0.9;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  width: 100%;
  align-items: stretch;
}

.step-card {
  background-color: var(--grey-dark);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: transform 0.3s ease;
}

.step-card:hover::after {
  transform: translate(20%, -20%) scale(1.2);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(240, 121, 0, 0.2);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: left;
}

.step-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: left;
  width: 100%;
}

.step-description {
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0.9;
  text-align: left;
  width: 100%;
  margin-bottom: 1.5rem;
}

.step-connector {
  display: none;
}

/* CTA Styles */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--grey) 0%, var(--grey-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(240, 121, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-primary,
a.btn-cta-primary {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-primary:hover,
a.btn-cta-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 121, 0, 0.4);
}

.btn-cta-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--grey-light);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

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

.cta-card {
  background-color: var(--grey);
  border-radius: 20px;
  padding: 2rem;
  max-width: 350px;
  width: 100%;
  border: 2px solid var(--orange);
  box-shadow: 0 12px 32px rgba(240, 121, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 121, 0, 0.1) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

.cta-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(240, 121, 0, 0.3);
}

.cta-card-header {
  margin-bottom: 1.5rem;
}

.cta-card-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--grey-light);
}

.dot:first-child {
  background-color: var(--orange);
}

.cta-card-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.cta-card-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Footer Styles */
.footer {
  background-color: var(--grey-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--grey-light);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-description {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--grey-light);
  text-align: center;
}

.footer-copyright {
  color: var(--text-light);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (min-width: 968px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  
  .step-connector {
    display: block;
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    z-index: 0;
  }
  
  .connector-line {
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
  }
  
  .step-card:last-child .step-connector {
    display: none;
  }
  
  .step-number {
    text-align: left;
  }
  
  .step-title {
    text-align: left;
  }
  
  .step-description {
    text-align: left;
  }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 0;
  }
  
  .premium-interface {
    max-width: 100%;
  }
  
  .premium-interface {
    max-width: 100%;
  }
  
  .interface-window {
    border-radius: 18px;
  }
  
  .interface-content {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .upload-area {
    padding: 1.5rem 1.25rem;
  }
  
  .upload-icon-wrapper-premium {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
  }
  
  .upload-svg {
    width: 24px;
    height: 24px;
  }
  
  .upload-text-premium {
    font-size: 0.95rem;
  }
  
  .upload-hint-premium {
    font-size: 0.8rem;
  }
  
  .preview-image-container {
    height: 140px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.875rem;
  }
  
  .section-title {
    font-size: 0.95rem;
  }
  
  .platform-selector {
    width: 100%;
    justify-content: space-between;
  }
  
  .platform-btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
  }
  
  .caption-text-area {
    padding: 1rem;
    min-height: 90px;
    max-height: 110px;
  }
  
  .caption-preview-text {
    font-size: 0.85rem;
  }
  
  .hashtag-chip {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .action-button {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
  
  .floating-card.card-3 {
    display: none;
  }
  
  .window-header {
    padding: 0.75rem 1rem;
  }
  
  .window-title {
    font-size: 0.85rem;
  }
  
  .control-dot {
    width: 10px;
    height: 10px;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-visual {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .features-container,
  .how-it-works-container,
  .who-container,
  .pricing-container,
  .comparison-container,
  .faq-container,
  .why-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .nav {
    display: none !important;
  }
  
  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 2rem 0 4rem;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .features {
    padding: 4rem 0;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .platforms-showcase {
    padding: 1.5rem;
  }
  
  .platforms-list {
    gap: 0.5rem;
  }
  
  .platform-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }

  .how-it-works {
    padding: 4rem 0;
  }
  
  .how-it-works-title {
    font-size: 2rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1rem;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .step-number {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .step-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .step-description {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .step-content {
    align-items: center;
  }
  
  .step-image {
    align-self: center;
    margin-top: 1rem;
  }

  .cta {
    padding: 4rem 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-section {
    text-align: center;
  }
}

/* Hero Badge and Tagline */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.3);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--orange);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Step Images */
.step-image {
  width: 100%;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: auto;
  border: 2px solid var(--grey-light);
  transition: all 0.3s ease;
  display: block;
  align-self: center;
}

.step-card:hover .step-image {
  border-color: var(--orange);
  transform: scale(1.02);
}

/* Who Is This For Section */
.who-is-this-for {
  padding: 6rem 0;
  background-color: var(--grey);
}

.who-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.who-header {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
}

.who-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.who-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0.9;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  width: 100%;
  align-items: stretch;
}

.who-card {
  background-color: var(--grey-dark);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.who-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(240, 121, 0, 0.2);
}

.who-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
  text-align: center;
}

.who-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  width: 100%;
  text-align: center;
}

.who-card-description {
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0.9;
  font-size: 0.95rem;
  width: 100%;
  text-align: center;
  flex-grow: 1;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background-color: var(--grey-dark);
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.billing-toggle {
  display: inline-flex;
  background-color: var(--grey);
  border-radius: 12px;
  padding: 0.5rem;
  gap: 0.5rem;
}

.billing-option {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-light);
  font-weight: 500;
}

.billing-option.active {
  background-color: var(--orange);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.pricing-card {
  background-color: var(--grey);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card-popular {
  border-color: var(--orange);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.4);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(240, 121, 0, 0.2);
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card-header {
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.8;
}

.yearly-savings {
  text-align: center;
  margin-top: 0.5rem;
}

.savings-badge {
  display: inline-block;
  background-color: rgba(240, 121, 0, 0.2);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-check {
  color: var(--orange);
  font-weight: bold;
  flex-shrink: 0;
}

.feature-x {
  color: var(--grey-light);
  flex-shrink: 0;
}

.pricing-card-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-light);
}

.pricing-card-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.btn-pricing,
a.btn-pricing {
  width: 100%;
  background-color: var(--grey-light);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-pricing-primary {
  background-color: var(--orange);
}

.btn-pricing:hover,
a.btn-pricing:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 121, 0, 0.4);
}

/* Comparison Table */
.comparison {
  padding: 6rem 0;
  background-color: var(--grey);
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--grey-dark);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table thead {
  background-color: var(--orange);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: left;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--grey-light);
}

.comparison-table tbody tr:hover {
  background-color: var(--grey);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: var(--grey-dark);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

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

.faq-item {
  background-color: var(--grey);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border: 2px solid var(--orange);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--grey-light);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--orange);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background-color: var(--grey);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  width: 100%;
}

.why-item {
  background-color: var(--grey-dark);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  height: 100%;
}

.why-item:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(240, 121, 0, 0.2);
}

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

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

/* Responsive Updates for New Sections */
@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card-popular {
    transform: scale(1);
  }
  
  .pricing-card-popular:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .premium-interface {
    max-width: 100%;
  }
  
  .animated-workflow {
    min-height: 280px;
  }
  
  .step-visual-container {
    padding: 1.75rem 1rem;
    min-height: 260px;
    border-radius: 16px;
  }
  
  .upload-icon-animated {
    width: 60px;
    height: 60px;
  }
  
  .upload-svg-animated {
    width: 32px;
    height: 32px;
  }
  
  .step-title-animated {
    font-size: 1.1rem;
  }
  
  .step-subtitle-animated {
    font-size: 0.85rem;
  }
  
  .ai-brain-container {
    width: 90px;
    height: 90px;
  }
  
  .brain-icon-animated {
    font-size: 3rem;
  }
  
  .progress-bar {
    max-width: 220px;
  }
  
  .captions-appearing {
    padding: 1rem;
    min-height: 90px;
  }
  
  .caption-line {
    min-height: 12px;
    font-size: 0.8rem;
    padding: 0.35rem 0;
    padding-left: 0.5rem;
  }
  
  .hashtag-bubble {
    padding: 0.35rem 0.875rem;
    font-size: 0.75rem;
  }
  
  .platforms-grid-animated {
    max-width: 220px;
    gap: 0.625rem;
  }
  
  .platform-icon-animated {
    padding: 0.875rem;
  }
  
  .platform-bg {
    font-size: 1.5rem;
  }
  
  .platform-label {
    font-size: 0.75rem;
  }
  
  .check-mark {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }
  
  .workflow-progress {
    margin-top: 1rem;
    gap: 0.3rem;
  }
  
  .progress-dot {
    width: 8px;
    height: 8px;
  }
  
  .progress-line {
    width: 20px;
  }
  
  .upload-icon-animated {
    width: 70px;
    height: 70px;
  }
  
  .upload-svg-animated {
    width: 36px;
    height: 36px;
  }
  
  .step-title-animated {
    font-size: 1.2rem;
  }
  
  .step-subtitle-animated {
    font-size: 0.9rem;
  }
  
  .ai-brain-container {
    width: 100px;
    height: 100px;
  }
  
  .brain-icon-animated {
    font-size: 3.5rem;
  }
  
  .progress-bar {
    max-width: 250px;
  }
  
  .captions-appearing {
    padding: 1.25rem;
    min-height: 100px;
  }
  
  .caption-line {
    min-height: 14px;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    padding-left: 0.625rem;
  }
  
  .hashtag-bubble {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
  }
  
  .platforms-grid-animated {
    max-width: 250px;
    gap: 0.75rem;
  }
  
  .platform-icon-animated {
    padding: 1rem;
  }
  
  .platform-bg {
    font-size: 1.75rem;
  }
  
  .platform-label {
    font-size: 0.8rem;
  }
  
  .check-mark {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  
  .workflow-progress {
    margin-top: 1.25rem;
    gap: 0.4rem;
  }
  
  .progress-dot {
    width: 10px;
    height: 10px;
  }
  
  .progress-line {
    width: 25px;
  }
  
  .platform-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  
  .platform-card {
    padding: 0.4rem;
  }
  
  .platform-icon {
    font-size: 1rem;
  }
  
  .platform-name {
    font-size: 0.65rem;
  }
  
  .step-image {
    max-width: 100%;
    height: 150px;
    margin-top: 1rem;
  }
  
  .features-container,
  .how-it-works-container,
  .who-container,
  .pricing-container,
  .comparison-container,
  .faq-container,
  .why-container,
  .cta-container {
    padding: 0 1rem;
  }
  
  .who-is-this-for {
    padding: 4rem 0;
  }
  
  .who-title {
    font-size: 2rem;
  }
  
  .who-subtitle {
    font-size: 1rem;
  }
  
  .who-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  
  .who-card {
    padding: 1.5rem;
  }
  
  .who-card-title {
    font-size: 1.1rem;
  }
  
  .who-card-description {
    font-size: 0.9rem;
  }
  
  .who-icon {
    font-size: 2.5rem;
  }
  
  .pricing {
    padding: 4rem 0;
  }
  
  .pricing-title {
    font-size: 2rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .comparison {
    padding: 4rem 0;
  }
  
  .comparison-title {
    font-size: 2rem;
  }
  
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  
  .comparison-table {
    font-size: 0.85rem;
    min-width: 600px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
  }
  
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    background-color: var(--grey-dark);
    z-index: 1;
  }
  
  .comparison-table thead th:first-child {
    background-color: var(--orange);
  }
  
  .faq {
    padding: 4rem 0;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .why-choose-us {
    padding: 4rem 0;
  }
  
  .why-title {
    font-size: 2rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .product-flow {
    padding: 0.75rem 0;
    gap: 0.3rem;
  }
  
  .flow-step {
    min-width: 80px;
  }
  
  .step-indicator {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  
  .poster-preview-card,
  .ai-processing-card,
  .post-success-card {
    max-width: 90px;
    padding: 0.6rem;
  }
  
  .poster-image-placeholder {
    height: 70px;
  }
  
  .brain-icon,
  .success-icon {
    font-size: 1.75rem;
  }
  
  .captions-output {
    max-width: 140px;
    padding: 0.6rem;
  }
  
  .platform-cards {
    gap: 0.25rem;
  }
  
  .platform-card {
    padding: 0.25rem;
  }
  
  .platform-icon {
    font-size: 0.85rem;
  }
  
  .platform-name {
    font-size: 0.55rem;
  }
  
  .poster-label,
  .ai-label,
  .captions-label,
  .post-label {
    font-size: 0.7rem;
  }
  
  .success-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
  }
  
  .arrow-line {
    width: 20px;
  }
  
  .arrow-head {
    font-size: 0.9rem;
  }
  
  .step-indicator {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .features-title,
  .how-it-works-title,
  .who-title,
  .pricing-title,
  .comparison-title,
  .faq-title,
  .why-title {
    font-size: 1.75rem;
  }
  
  .pricing-card {
    padding: 1.25rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .comparison-table {
    font-size: 0.75rem;
    min-width: 500px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem 0.25rem;
  }
  
  .billing-toggle {
    flex-direction: column;
    width: 100%;
  }
  
  .billing-option {
    width: 100%;
    text-align: center;
  }
  
  .step-image {
    height: 120px;
  }
  
  .step-content {
    width: 100%;
  }
}

