/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --lime-400: #a3e635;
  --lime-500: #84cc16;
  --lime-600: #65a30d;

  --background: #0a0a0a;
  --foreground: #fafafa;
  --card: #141414;
  --border: #262626;
  --muted: #525252;
  --muted-foreground: #a3a3a3;

  --red-400: #f87171;
  --red-500: #ef4444;

  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 6rem 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--emerald-400), var(--lime-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--emerald-500), var(--lime-500));
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--emerald-600), var(--lime-600));
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--foreground);
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
}

.btn-full {
  width: 100%;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  margin-bottom: 1.5rem;
  white-space: nowrap;
  max-width: fit-content;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), var(--background), rgba(132, 204, 22, 0.1));
}

.hero-content {
  position: relative;
  padding: 6rem 1rem;
}

.hero-text {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-guarantee {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-items: center;
}

.hero-feature-item {
  font-size: 0.9rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}

.hero-feature-item .check-icon {
  color: var(--emerald-400);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hero-feature-item span {
  line-height: 1.5;
}

/* Hero Logo */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 150px;
  height: auto;
}

.hero-image {
  max-width: 90rem;
  margin: 4rem auto 0;
}

.image-wrapper {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.05), rgba(132, 204, 22, 0.05));
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 0.5rem;
  background: rgba(82, 82, 82, 0.5);
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Features Section */
.features-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-icon {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.25rem;
  margin: 0;
}

.feature-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.feature-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(82, 82, 82, 0.5);
  margin-top: auto;
  flex-shrink: 0;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Platform Section */
.platform-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.platform-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 90rem;
  margin: 0 auto;
}

.platform-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.niches-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.niche-tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.05);
  color: var(--emerald-400);
  font-size: 0.875rem;
}

.platform-image .image-container {
  aspect-ratio: 4 / 3;
}

/* Video Section */
.video-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.video-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 90rem;
  margin: 0 auto;
}

.video-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-container {
  aspect-ratio: 16 / 9;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefits-list span {
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), var(--background), rgba(132, 204, 22, 0.1));
}

.cta-content {
  position: relative;
}

.cta-text {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.country-tag {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: var(--card);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.pricing-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.05), rgba(132, 204, 22, 0.05));
}

.pricing-content {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(to bottom right, var(--card), rgba(16, 185, 129, 0.05));
  padding: 2rem;
  border-radius: 0.75rem;
}

.pricing-glow {
  position: absolute;
  right: 0;
  top: 0;
  height: 8rem;
  width: 8rem;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(132, 204, 22, 0.2));
  filter: blur(60px);
}

.pricing-inner {
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.old-price {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--muted-foreground);
}

.price {
  font-size: 4rem;
  font-weight: 700;
}

.cents {
  font-size: 1.5rem;
  color: var(--muted-foreground);
}

.period {
  color: var(--muted-foreground);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Guarantee Section */
.guarantee-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.guarantee-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.guarantee-icon {
  display: inline-flex;
  padding: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  margin-bottom: 2rem;
}

.guarantee-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.guarantee-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.guarantee-card svg {
  color: var(--emerald-400);
  margin-bottom: 1rem;
}

.guarantee-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guarantee-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Side Choice Section */
.side-choice-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.side-choice-content {
  max-width: 56rem;
  margin: 0 auto;
}

/* Support Section */
.support-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.support-content {
  max-width: 56rem;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.support-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  border-radius: 0.75rem;
}

.support-card-negative {
  border-color: rgba(239, 68, 68, 0.2);
}

.support-card-positive {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(to bottom right, var(--card), rgba(16, 185, 129, 0.05));
}

.support-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.support-icon-negative {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red-400);
}

.support-icon-positive {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
}

.support-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.support-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.x-icon {
  color: var(--red-400);
  margin-top: 0.25rem;
}

.check-icon-text {
  color: var(--emerald-400);
  margin-top: 0.25rem;
}

.support-list span:last-child {
  color: var(--muted-foreground);
}

.support-card-positive .support-list span:last-child {
  color: var(--foreground);
}

.support-cta {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ Section */
.faq-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
}

.faq-content {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.faq-item h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--muted-foreground);
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
}

.final-cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), var(--background), rgba(132, 204, 22, 0.1));
}

.final-cta-content {
  position: relative;
}

.final-cta-text {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-footer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  max-width: 120px;
  height: auto;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--emerald-400);
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .btn {
    font-size: 1.125rem;
  }

  .hero-logo {
    max-width: 180px;
  }
}

/* Mobile Hero Padding Adjustment */
@media (max-width: 767px) {
  .hero-content {
    padding: 3rem 1rem;
  }
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: row;
  }

  .footer-brand {
    text-align: left;
  }

  .price {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-features {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .section-title {
    font-size: 3.75rem;
  }

  .hero-logo {
    max-width: 220px;
  }

  .hero-image {
    max-width: 100rem;
  }

  .platform-grid {
    max-width: 100rem;
  }

  .video-grid {
    max-width: 100rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .video-image {
    order: 1;
  }

  .video-content {
    order: 2;
  }
}

/* Don't Be Stupid Section */
.dont-be-stupid-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.dont-be-stupid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.dont-be-stupid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dont-be-stupid-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dont-be-stupid-content .badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  align-self: flex-start;
}

.dont-be-stupid-content .section-title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ef4444, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.dont-be-stupid-content .section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.stupid-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.stupid-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.stupid-fact:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateX(4px);
}

.stupid-icon {
  color: #ef4444;
  flex-shrink: 0;
}

.stupid-fact span {
  font-weight: 500;
  color: var(--foreground);
}

.smart-solution {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 0.75rem;
}

.smart-solution h3 {
  font-size: 1.25rem;
  color: var(--emerald-400);
  margin-bottom: 1rem;
  font-weight: 600;
}

.smart-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.smart-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.smart-benefits .check-icon {
  color: var(--emerald-400);
  flex-shrink: 0;
}

.smart-benefits span {
  color: var(--foreground);
  font-weight: 500;
}

.dont-be-stupid-image {
  position: relative;
}

.dont-be-stupid-image .image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dont-be-stupid-image .image-container {
  position: relative;
  padding-bottom: 75%;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dont-be-stupid-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design for Don't Be Stupid Section */
@media (max-width: 768px) {
  .dont-be-stupid-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dont-be-stupid-content .section-title {
    font-size: 2rem;
  }

  .stupid-facts {
    gap: 0.75rem;
  }

  .stupid-fact {
    padding: 0.5rem;
  }

  .smart-solution {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .dont-be-stupid-content .section-title {
    font-size: 1.75rem;
  }

  .dont-be-stupid-content .section-description {
    font-size: 1rem;
  }
}

/* Timeline Section */
.timeline-section {
  border-bottom: 1px solid var(--border);
  padding: var(--section-padding);
  position: relative;
}

.timeline-container {
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
  padding-bottom: 5rem;
}

.timeline-items {
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  padding-top: 2.5rem;
  gap: 1rem;
}

.timeline-marker-wrapper {
  position: sticky;
  top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  max-width: 18rem;
  width: 100%;
  z-index: 10;
}

.timeline-marker {
  position: absolute;
  left: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.timeline-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.5rem;
}

.timeline-title {
  display: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted-foreground);
  padding-left: 5rem;
}

.timeline-title-mobile {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.timeline-content {
  position: relative;
  padding-left: 5rem;
  padding-right: 1rem;
  width: 100%;
}

.timeline-content-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timeline-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.timeline-text-content {
  flex: 1;
}

.timeline-text-content .badge {
  margin-bottom: 1rem;
}

.timeline-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.timeline-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: rgba(82, 82, 82, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.niches-tags-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.timeline-content .badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  margin-bottom: 1rem;
  white-space: nowrap;
  max-width: fit-content;
}

/* Animated Timeline Line */
.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(163, 163, 163, 0.3) 10%,
    rgba(163, 163, 163, 0.3) 90%,
    transparent 100%
  );
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to top,
    var(--emerald-600) 0%,
   var(--emerald-600) 10%,
   var(--lime-400) 20%,
    transparent 100%
  );
  border-radius: 9999px;
  transition: height 0.3s ease-out;
}

/* Timeline Responsive Design */

/* Mobile (até 767px) - Com cards e ícone no título */
@media (max-width: 767px) {
  .timeline-section {
    padding: 3rem 0;
  }

  .timeline-container {
    padding-bottom: 2rem;
  }

  .timeline-item {
    padding-top: 1.5rem;
    padding-bottom: 0;
    gap: 0;
  }

  /* Esconder marcadores e linha em mobile */
  .timeline-marker-wrapper {
    display: none;
  }

  .timeline-line {
    display: none;
  }

  .timeline-content {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  /* Card container para mobile */
  .timeline-mobile-card {
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
  }

  .timeline-mobile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.8;
  }

  .timeline-mobile-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.25);
  }

  .timeline-title-mobile {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .timeline-title-mobile .timeline-icon {
    padding: 0.5rem;
    margin: 0;
    flex-shrink: 0;
  }

  .timeline-content-header {
    display: block;
    margin-bottom: 1rem;
  }

  .timeline-content-header .timeline-icon {
    display: none;
  }

  .timeline-mobile-card .timeline-text-content {
    display: block;
  }

  .timeline-mobile-card .timeline-text-content .timeline-description {
    display: block;
    margin-bottom: 1.25rem;
  }

  .timeline-description {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .timeline-image {
    border-radius: 0.625rem;
  }

  .timeline-content .badge {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.875rem;
    margin-bottom: 0.875rem;
  }

  .niches-tags-timeline {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .niches-tags-timeline .niche-tag {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.875rem;
  }
}

/* Tablet e Desktop (768px+) - Com linha lateral */
@media (min-width: 768px) {
  .timeline-item {
    padding-top: 10rem;
    gap: 2.5rem;
  }

  .timeline-marker-wrapper {
    display: flex;
  }

  .timeline-line {
    display: block;
  }

  .timeline-title {
    display: block;
    font-size: 2rem;
  }

  .timeline-title-mobile {
    display: none;
  }

  .timeline-description {
    font-size: 1rem;
  }

  .timeline-content {
    padding-left: 1rem;
  }
}

@media (min-width: 1024px) {
  .timeline-title {
    font-size: 3rem;
  }

  .timeline-description {
    font-size: 1.125rem;
  }
}
