/* ── Hero ───────────────────────────────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) - 10px) 5% 40px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeInDown 0.7s ease both;
  box-shadow: var(--shadow-accent);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2)
  }
}

.hero-title {
  font-family: var(--font2);
  font-size: clamp(54px, 9vw, 110px);
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  animation: fadeInUp 0.7s 0.15s ease both;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .line2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line3 {
  color: white;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text2);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.8;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.45s ease both;
}

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.6s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font2);
  font-size: 36px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}

.hero-stat-num span {
  color: var(--accent2);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text3);
  margin-top: 4px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  background: var(--border);
}

/* ── Marquee ────────────────────────────────────────────────────────────── */
.marquee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.marquee-item i {
  color: var(--accent2);
  font-size: 16px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Services ───────────────────────────────────────────────────────────── */
.services-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top-color: var(--border-light);
  border-left-color: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-color, var(--accent));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
  box-shadow: 0 0 20px var(--card-color, var(--accent));
}

.service-card:hover {
  border-color: var(--border-light);
  background: var(--surface-hover);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--card-color-bg, rgba(99, 102, 241, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--card-color, var(--accent));
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.service-subtitle {
  font-size: 12px;
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
}

.service-highlight i {
  font-size: 11px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── Packages ───────────────────────────────────────────────────────────── */
.packages-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top-color: var(--border-light);
  border-left-color: var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.package-card.popular {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15), var(--shadow-accent);
}

.package-card.popular:hover {
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4), 0 30px 60px rgba(59, 130, 246, 0.25);
}

.package-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.package-name {
  font-family: var(--font2);
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.package-desc {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 28px;
  line-height: 1.7;
}

.package-price-wrap {
  margin-bottom: 28px;
}

.package-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text2);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.package-price {
  font-family: var(--font2);
  font-size: 52px;
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
}

.package-period {
  font-size: 14px;
  color: var(--text3);
  margin-left: 4px;
}

.package-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
}

.package-feature i {
  font-size: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.package-feature.disabled {
  color: var(--text3);
}

.package-feature.disabled i {
  color: var(--text3);
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-height: 760px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.4) transparent;
}

.testimonials-grid::-webkit-scrollbar {
  width: 6px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: transparent;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.4);
  border-radius: 6px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}


.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top-color: var(--border-light);
  border-left-color: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  background: var(--surface-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.test-stars i {
  color: var(--gold);
  font-size: 14px;
}

.test-text {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font2);
  font-weight: 800;
  color: white;
  font-size: 18px;
}

.test-name {
  font-weight: 700;
  color: white;
  font-size: 15px;
}

.test-role {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font2);
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--accent);
  background: var(--surface2);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text {
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.contact-item-text h4 {
  font-weight: 600;
  color: white;
  font-size: 14px;
  margin: 0;
}

.contact-item-text p {
  font-size: 13px;
  color: var(--text3);
  margin: 0;
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form-wrap h3 {
  font-family: var(--font2);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
}

/* ── About / Why Us ─────────────────────────────────────────────────────── */
.why-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: var(--surface2);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.15), var(--shadow-lg);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: var(--font2);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── Digital Products CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  z-index: 1;
  margin: 0 5% 80px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(56, 189, 248, 0.15) 50%, rgba(14, 165, 233, 0.1) 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 72px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
}

.cta-content {
  position: relative;
}

.cta-content h2 {
  font-family: var(--font2);
  font-size: 36px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  color: var(--text2);
  max-width: 480px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
}

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Reveal Animation ───────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

  .cta-content p {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-title {
    letter-spacing: -1.5px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-num {
    font-size: 28px;
  }

  .hero-stat-divider {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}