/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
  /* Colors */
  --primary: hsl(358, 82%, 50%);
  --primary-dark: hsl(358, 82%, 40%);
  --primary-light: hsl(358, 82%, 55%);
  --foreground: hsl(220, 20%, 10%);
  --background: hsl(0, 0%, 100%);
  --muted: hsl(220, 15%, 96%);
  --muted-foreground: hsl(220, 10%, 45%);
  --border: hsl(220, 15%, 90%);

  /* Dark section colors */
  --dark-bg: hsl(220, 20%, 8%);
  --dark-foreground: hsl(0, 0%, 98%);

  /* Ticker colors */
  --ticker-bg: hsl(220, 20%, 10%);
  --ticker-positive: hsl(145, 70%, 45%);
  --ticker-negative: hsl(358, 82%, 50%);

  /* Shadows */
  --card-shadow: 0 10px 40px -10px hsla(220, 20%, 10%, 0.15);
  --card-shadow-hover: 0 20px 60px -15px hsla(358, 82%, 50%, 0.25);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-family: 'Montserrat', sans-serif;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}
.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

/* ========================================
   Utility Classes
   ======================================== */

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(358, 82%, 35%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary {
  color: var(--primary);
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

/* ========================================
   Button Styles
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px hsla(358, 82%, 50%, 0.4);
}

.btn-hero-primary {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: white;
  color: var(--primary);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-hero-primary svg {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-outline {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-form {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  height: 3.5rem;
}

.btn-mobile {
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

/* ========================================
   Header
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon span {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: transparent;
  position: relative;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -0.5rem;
}

.menu-icon::after {
  top: 0.5rem;
}

.menu-toggle.active .menu-icon {
  background: transparent;
}

.menu-toggle.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.nav-mobile.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link-mobile {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.nav-link-mobile:hover {
  color: var(--primary);
  background: var(--muted);
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem 0;
  inset: 0;
  background: linear-gradient(135deg, hsla(358, 82%, 30%, 0.95) 0%, hsla(220, 20%, 10%, 0.9) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pulse-dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.pulse-ring {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background: #4ade80;
  opacity: 0.75;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-core {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.5rem;
  width: 0.5rem;
  background: #22c55e;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title-sub {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card svg {
  flex-shrink: 0;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.7;
}

.hero-gradient-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

/* ========================================
   Ticker Section
   ======================================== */

.ticker-section {
  background: var(--ticker-bg);
  padding: 0.75rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  color: white;
}

.ticker-name {
  font-weight: 600;
}

.ticker-value {
  opacity: 0.8;
}

.ticker-change {
  font-weight: 600;
}

.ticker-change.positive {
  color: var(--ticker-positive);
}

.ticker-change.negative {
  color: var(--ticker-negative);
}

/* ========================================
   Section Styles
   ======================================== */

.section {
  padding: 5rem 0;
  background: var(--background);
}

.section-light {
  background: hsla(220, 15%, 96%, 0.5);
}

.section-dark {
  background: var(--dark-bg);
  color: var(--dark-foreground);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-subtitle-dark {
  color: rgba(255, 255, 255, 0.8);
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ========================================
   Features Grid (About Section)
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px -5px hsla(358, 82%, 50%, 0.4);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   Dark Block
   ======================================== */

.dark-block {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--dark-bg);
  color: var(--dark-foreground);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5);
}

.dark-block-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.dark-block-text {
  flex: 1;
}

.dark-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.dark-block-description {
  font-size: 1.125rem;
  opacity: 0.8;
}

.dark-block-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-text {
  opacity: 0.7;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .dark-block {
    padding: 3rem;
  }

  .dark-block-content {
    flex-direction: row;
  }

  .dark-block-title {
    font-size: 1.875rem;
  }
}

/* ========================================
   Steps Grid (How It Works)
   ======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step-card {
  position: relative;
  background: var(--background);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px) scale(1.02);
}

.step-number {
  position: absolute;
  right: -1rem;
  top: -1rem;
  font-size: 5rem;
  font-weight: 700;
  color: hsla(220, 15%, 90%, 0.3);
  z-index: 0;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-number {
  color: hsla(358, 82%, 50%, 0.15);
  opacity: 0;
  transform: scale(1.2) rotate(10deg);
}

.step-content {
  position: relative;
  z-index: 10;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-icon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 35px -5px hsla(358, 82%, 50%, 0.5);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   Signal Example
   ======================================== */

.signal-example {
  margin-top: 4rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.signal-example-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.signal-card {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateX(4px);
  border-left-width: 6px;
}

.signal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.signal-logo {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.signal-name {
  font-weight: 700;
}

.signal-time {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.signal-content {
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.8;
}

.signal-pair {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.signal-label {
  color: var(--muted-foreground);
}

.signal-target {
  padding-left: 1rem;
  color: var(--ticker-positive);
}

.signal-stop {
  color: var(--ticker-negative);
}

.signal-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* ========================================
   Results Section
   ======================================== */

.results-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.result-stat-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.result-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.result-stat-positive {
  color: var(--ticker-positive);
}

.result-stat-label {
  font-size: 0.875rem;
  opacity: 0.7;
}

.trades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trade-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trade-card:hover {
  border-color: hsla(358, 82%, 50%, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px hsla(358, 82%, 50%, 0.3);
}

.trade-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.trade-pair {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trade-direction {
  font-weight: 700;
}

.trade-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.trade-badge-long {
  background: hsla(145, 70%, 45%, 0.2);
  color: var(--ticker-positive);
}

.trade-badge-short {
  background: hsla(358, 82%, 50%, 0.2);
  color: var(--ticker-negative);
}

.trade-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.trade-row {
  display: flex;
  justify-content: space-between;
}

.trade-label {
  opacity: 0.6;
}

.trade-profit {
  font-weight: 700;
  color: var(--ticker-positive);
}

.trade-date {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  opacity: 0.5;
}

.disclaimer {
  margin-top: 3rem;
  text-align: center;
}

.disclaimer p {
  opacity: 0.6;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .results-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .trades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trades-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Timeline (Steps Section)
   ======================================== */

.timeline {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.timeline-line {
  display: none;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-content {
  background: var(--background);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
  max-width: 28rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
}

.timeline-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: var(--muted-foreground);
}

.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 10px 25px -5px hsla(358, 82%, 50%, 0.4);
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.15);
  box-shadow: 0 20px 40px -10px hsla(358, 82%, 50%, 0.6);
}

/* Desktop timeline layout */
@media (min-width: 768px) {
  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary) 10%, var(--primary) 90%, transparent);
    transform: translateX(-50%);
  }

  .timeline-item-left {
    display: flex;
    flex-direction: row;
  }

  .timeline-item-right {
    display: flex;
    flex-direction: row-reverse;
  }

  .timeline-item-left .timeline-content {
    text-align: right;
    margin-left: auto;
  }

  .timeline-item-right .timeline-content {
    text-align: left;
    margin-right: auto;
  }

  .timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(2rem);
    margin-bottom: 0;
  }

  .timeline-item:hover .timeline-icon {
    transform: translateX(-50%) translateY(2rem) scale(1.15);
  }
}

/* Mobile timeline layout */
@media (max-width: 767px) {
  .timeline-item {
    position: relative;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-icon {
    position: absolute;
    right: 1rem;
    top: -1rem;
    margin-bottom: 0;
    margin-top: 0;
    z-index: 10;
  }
}

/* ========================================
   Advantages Section
   ======================================== */

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.advantage-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px);
  border: 1px solid hsla(358, 82%, 50%, 0.2);
}

.advantage-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 30px -5px hsla(358, 82%, 50%, 0.5);
}

.advantage-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.advantage-description {
  color: var(--muted-foreground);
}

.urgency-block {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.urgency-block:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px -15px hsla(358, 82%, 50%, 0.6);
}

.urgency-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.urgency-description {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.urgency-highlight {
  font-weight: 700;
}

.urgency-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.urgency-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.urgency-stat-label {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .urgency-block {
    padding: 3rem;
  }

  .urgency-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Reviews Section
   ======================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: 600;
}

.review-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-bubble {
  padding: 1rem;
  border-radius: 1rem;
  border-top-left-radius: 0.25rem;
  background: var(--muted);
}

.trust-indicators {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.avatars-group {
  display: flex;
  margin-left: -0.5rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  border: 2px solid var(--background);
  margin-left: -0.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Form Section
   ======================================== */

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.form-left {
  color: var(--dark-foreground);
}

.form-main-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-main-description {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsla(358, 82%, 50%, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-bonus {
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsla(358, 82%, 50%, 0.1);
  border: 1px solid hsla(358, 82%, 50%, 0.2);
}

.form-bonus p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.form-container {
  background: var(--background);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
  transition: all 0.3s ease;
  height: 3rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(358, 82%, 50%, 0.1);
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  background: hsla(145, 70%, 45%, 0.2);
  color: var(--ticker-positive);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.success-message p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .form-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .form-main-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  .form-main-title {
    font-size: 3rem;
  }
}

/* ========================================
   Footer
   ======================================== */

.footer {
  padding: 3rem 0;
  background: var(--foreground);
  color: var(--background);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}