/* ==========================================================================
   Freela Girl - Landing Page Styles
   ========================================================================== */

/* CSS Custom Properties (Variables) */
:root {
  /* Colors */
  --primary: #FF2D95;
  --secondary: #7C3AED;
  --accent: #FFB86B;
  --bg: #0F0F14;
  --card-bg: #11121a;
  --muted: #A6B0C3;
  --text: #FFFFFF;
  --text-muted: #8A94A7;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
  --glow-primary: 0 0 20px rgba(255, 45, 149, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.section {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-xxl) 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--muted);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-large {
  padding: var(--space-md) var(--space-lg);
  font-size: 1.125rem;
}

.btn-small {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.875rem;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 45, 149, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 45, 149, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 149, 0);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-list {
  display: none;
  list-style: none;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
  }
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-list a:hover {
  color: var(--primary);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  position: relative;
}

@media (min-width: 640px) {
  .header-cta {
    display: block;
  }
}

.discount-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  padding: calc(var(--space-xxl) + 4rem) 0 var(--space-xxl);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(124, 58, 237, 0.1) 50%, var(--bg) 100%);
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 45, 149, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-badge {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.badge-item {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone Mockup com Imagens */
.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: var(--card-bg);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 
              0 0 0 4px rgba(255, 255, 255, 0.05),
              0 0 50px rgba(255, 45, 149, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400%;
  display: flex;
  flex-direction: column;
  animation: scroll-apps 20s ease-in-out infinite;
}

.app-screen {
  width: 100%;
  height: 25%;
  position: relative;
  overflow: hidden;
}

.app-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.app-screen:hover img {
  transform: scale(1.02);
}

/* Elementos do celular */
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: var(--card-bg);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.phone-home-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  z-index: 10;
}

/* Animação do scroll de apps */
@keyframes scroll-apps {
  0%, 20% {
    transform: translateY(0);
  }
  25%, 45% {
    transform: translateY(-25%);
  }
  50%, 70% {
    transform: translateY(-50%);
  }
  75%, 95% {
    transform: translateY(-75%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Efeitos de brilho na moldura */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 42px;
  z-index: -1;
  opacity: 0.7;
  filter: blur(10px);
  animation: phoneGlow 3s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
  from {
    opacity: 0.5;
    filter: blur(10px);
  }
  to {
    opacity: 0.8;
    filter: blur(15px);
  }
}

/* Status bar simulada */
.app-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 2;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

/* Responsividade */
@media (max-width: 768px) {
  .phone-mockup {
    width: 240px;
    height: 480px;
    border-radius: 30px;
  }
  
  .phone-screen {
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 200px;
    height: 400px;
    border-radius: 25px;
  }
  
  .phone-screen {
    border-radius: 20px;
  }
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), var(--glow-primary);
}

.benefit-icon {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.benefit-content h3 {
  margin-bottom: var(--space-sm);
}

.price-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.original-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.875rem;
}

.current-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

/* ==========================================================================
   Apps Secretos - Estilos
   ========================================================================== */

.apps-secretos {
  background: linear-gradient(135deg, 
      rgba(15, 15, 20, 0.95) 0%, 
      rgba(124, 58, 237, 0.15) 50%, 
      rgba(255, 45, 149, 0.1) 100%);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.apps-secretos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 80%, rgba(255, 45, 149, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  animation: secretGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes secretGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.apps-secretos-content {
  position: relative;
  z-index: 2;
}

/* Cabeçalho */
.apps-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.apps-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.title-icon {
  display: inline-block;
  margin-right: var(--space-sm);
  filter: drop-shadow(0 0 10px rgba(255, 45, 149, 0.5));
}

.apps-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Destaque */
.apps-highlight {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 800px;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  animation: fadeUp 0.8s ease;
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

.highlight-text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.highlight-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Imagem Estática Simplificada */
.secret-image-container {
  margin: var(--space-xl) 0;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.2s both;
}

.secret-image-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.secret-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 45, 149, 0.3);
}

.secret-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Efeito de brilho na moldura */
.secret-image::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
      var(--primary), 
      var(--secondary), 
      var(--accent), 
      var(--primary));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
}

/* Lista de Benefícios */
.benefits-list {
  margin: var(--space-xl) 0;
  animation: fadeUp 0.8s ease 0.8s both;
}

.benefits-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.check-icon {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.5));
}

.benefit-item span:last-child {
  font-weight: 500;
  color: var(--text);
}

/* Bloco de Urgência */
.urgency-block {
  background: linear-gradient(135deg, 
      rgba(255, 45, 149, 0.1) 0%, 
      rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  text-align: center;
  animation: fadeUp 0.8s ease 1s both;
}

.urgency-line {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

.urgency-line.emphasis {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: var(--space-md) 0;
}

.urgency-choice {
  font-size: 1rem;
  margin: var(--space-lg) 0 0 0;
}

.highlight-red {
  color: #EF4444;
  font-weight: 600;
}

.highlight-green {
  color: #10B981;
  font-weight: 600;
}

/* CTA Principal */
.apps-cta {
  text-align: center;
  animation: fadeUp 0.8s ease 1.2s both;
}

.btn-secret-apps {
  background: linear-gradient(135deg, var(--primary), #FF1493);
  color: white;
  border: none;
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 
      0 8px 32px rgba(255, 45, 149, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: pulseCta 2s infinite;
}

@keyframes pulseCta {
  0%, 100% {
    box-shadow: 
        0 8px 32px rgba(255, 45, 149, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 
        0 8px 32px rgba(255, 45, 149, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 45, 149, 0.4);
  }
}

.btn-secret-apps:hover {
  transform: translateY(-3px) scale(1.02);
  animation: none;
  box-shadow: 
      0 12px 40px rgba(255, 45, 149, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.2),
      0 0 40px rgba(255, 45, 149, 0.6);
}

.btn-secret-apps:active {
  transform: translateY(0) scale(0.98);
}

.btn-icon {
  margin-right: var(--space-sm);
  font-size: 1.3rem;
}

.cta-note {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Animações de Entrada */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade Apps Secretos */
@media (max-width: 768px) {
  .apps-secretos {
    padding-bottom: 100px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .apps-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-secret-apps {
    font-size: 1.1rem;
    padding: var(--space-md) var(--space-lg);
  }
  
  .secret-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .secret-image {
    height: 300px;
  }
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.step-card {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  box-shadow: var(--shadow-md);
}

.step-icon {
  margin: var(--space-md) 0;
  color: var(--primary);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

.steps-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials-carousel {
  position: relative;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-right: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-lg));
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-lg));
  }
}

.testimonial-rating {
  margin-bottom: var(--space-md);
}

.star {
  color: var(--accent);
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-right: var(--space-sm);
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-lg);
  gap: var(--space-md);
}

.carousel-prev,
.carousel-next {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--primary);
  color: white;
}

.carousel-indicators {
  display: flex;
  gap: var(--space-xs);
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Social Proof Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Guarantee Section */
.guarantee-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
}

@media (min-width: 768px) {
  .guarantee-content {
    grid-template-columns: auto 1fr;
    text-align: left;
  }
}

.guarantee-icon {
  color: var(--accent);
}

.guarantee-text h2 {
  margin-bottom: var(--space-md);
}

.payment-methods {
  margin-top: var(--space-lg);
}

.payment-icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Urgency Section */
.urgency {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

.urgency-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.urgency-title {
  margin-bottom: var(--space-lg);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: white;
  color: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  box-shadow: var(--shadow-md);
}

.countdown-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.urgency-bar {
  max-width: 500px;
  margin: 0 auto;
}

.urgency-progress {
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.progress-fill {
  height: 100%;
  background: white;
  width: 76%;
  border-radius: 5px;
  animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.urgency-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* CTA Final Section */
.cta-final {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  margin: var(--space-xl) auto;
  max-width: 800px;
}

.cta-content {
  padding: var(--space-xl);
  text-align: center;
}

.cta-title {
  margin-bottom: var(--space-lg);
}

.pricing {
  margin-bottom: var(--space-lg);
}

.original-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--muted);
  margin-bottom: var(--space-xs);
}

.current-price {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.price-note {
  font-size: 1rem;
  color: var(--muted);
}

.purchase-form {
  max-width: 400px;
  margin: var(--space-xl) auto;
  text-align: left;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.2);
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.security-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--muted);
}

.security-item svg {
  color: var(--success);
}

/* Footer */
.footer {
  background: #0A0A0F;
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand p {
  margin-bottom: var(--space-md);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  color: var(--muted);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-xs);
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 0.875rem;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.certificate-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .certificate-badge {
    margin-bottom: 0;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  padding: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

.sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.sticky-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.sticky-text {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .sticky-cta,
  .hero-visual,
  .carousel-controls,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus Styles */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}