@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #F97316;
  --primary-dark: #EA580C;
  --primary-light: #FED7AA;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --gray-border: #E5E7EB;
  --white: #FFFFFF;
  --text: #111827;
  --text-muted: #6B7280;
  --success: #10B981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Archivo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gray-border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1DAB52;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* ── Section Titles ── */
.section-label {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin: 0 auto;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav-logo-text {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.nav-logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--gray-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--gray-light);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-border);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--gray-border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #FAFAFA;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(249,115,22,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(249,115,22,0.04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 65px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title .highlight {
  display: inline;
  color: var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

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

.hero-stat-number {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-main {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-card-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.hero-card-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.power-display {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.power-number {
  font-family: 'Archivo', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.power-unit {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

.power-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.power-bars {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.power-bar-item {
  flex: 1;
}

.power-bar-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.power-bar-track {
  height: 6px;
  background: var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
}

.power-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--primary);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.power-bar-fill.green {
  background: var(--success);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}

.hero-card-footer-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-footer-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--success);
  font-size: 15px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 15%;
  left: -8%;
  animation-delay: 1.5s;
}

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

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-text-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.float-text-value {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

/* ── Stats Section ── */
.stats-section {
  padding: 80px 0;
  background: white;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

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

.stat-card {
  text-align: center;
  padding: 32px 20px;
}

.stat-number {
  font-family: 'Archivo', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--primary);
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Features Section ── */
.features-section {
  padding: 100px 0;
  background: #FAFAFA;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(249,115,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.feature-title {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Products Preview ── */
.products-preview {
  padding: 100px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.product-card-body {
  padding: 24px;
}

.product-card-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-card-model {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}

.product-card-price {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.product-card-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 100px 0;
  background: #FAFAFA;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.testimonial-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.testimonial-city {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-list {
  max-width: 720px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(249,115,22,0.15) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #0A0A0A;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-text {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.footer-logo-text span {
  color: var(--primary);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer-heading {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Animated Page Heroes ── */
.page-hero {
  padding: 140px 0px 40px;
  position: relative;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated gradient orbs */
.page-hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
 border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 10px) scale(0.95); }
}

/* Grid pattern */
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 100%);
}

/* Floating dots */
.page-hero-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-dots span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.2;
  animation: dotPulse 4s ease-in-out infinite;
}

.page-hero-dots span:nth-child(1)  { top:15%; left:10%; animation-delay:0s; }
.page-hero-dots span:nth-child(2)  { top:70%; left:20%; animation-delay:0.5s; }
.page-hero-dots span:nth-child(3)  { top:30%; left:80%; animation-delay:1s; }
.page-hero-dots span:nth-child(4)  { top:80%; left:70%; animation-delay:1.5s; }
.page-hero-dots span:nth-child(5)  { top:50%; left:50%; animation-delay:2s; }
.page-hero-dots span:nth-child(6)  { top:20%; left:40%; animation-delay:2.5s; }
.page-hero-dots span:nth-child(7)  { top:60%; left:90%; animation-delay:3s; }
.page-hero-dots span:nth-child(8)  { top:10%; left:60%; animation-delay:0.8s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(2.5); }
}

/* Animated line accent */
.page-hero-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: lineSlide 3s ease-in-out infinite;
}

@keyframes lineSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Animated badge */
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: badgeFadeIn 0.6s ease forwards;
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
  animation: titleFadeIn 0.7s ease 0.1s forwards;
  opacity: 0;
}

@keyframes titleFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: titleFadeIn 0.7s ease 0.2s forwards;
  opacity: 0;
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: titleFadeIn 0.7s ease 0.3s forwards;
  opacity: 0;
}

/* Floating cards for hero */
.hero-float-tag {
  position: absolute;
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.hero-float-tag-1 {
  top: 20%;
  left: 5%;
  animation: tagFloat 4s ease-in-out infinite;
}

.hero-float-tag-2 {
  top: 25%;
  right: 5%;
  animation: tagFloat 4s ease-in-out infinite 1s;
}

.hero-float-tag-3 {
  bottom: 20%;
  left: 8%;
  animation: tagFloat 4s ease-in-out infinite 2s;
}

.hero-float-tag-4 {
  bottom: 25%;
  right: 8%;
  animation: tagFloat 4s ease-in-out infinite 0.5s;
}

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

@media (max-width: 768px) {
  .hero-float-tag-1,
  .hero-float-tag-2,
  .hero-float-tag-3,
  .hero-float-tag-4 { display: none; }
  .page-hero { min-height: 300px; padding: 120px 0 60px; }
}

/* Lucide Icons Global Style */
[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Size variants */
.icon-sm [data-lucide], [data-lucide].icon-sm { width: 14px; height: 14px; }
.icon-md [data-lucide], [data-lucide].icon-md { width: 20px; height: 20px; }
.icon-lg [data-lucide], [data-lucide].icon-lg { width: 24px; height: 24px; }
.icon-xl [data-lucide], [data-lucide].icon-xl { width: 32px; height: 32px; }

/* Nav icons */
.nav-icon [data-lucide] { width: 17px; height: 17px; stroke-width: 1.8; }

/* Button icons */
.btn [data-lucide] { width: 16px; height: 16px; }

/* Feature section icons */
.feature-icon [data-lucide] { width: 28px; height: 28px; stroke-width: 1.6; }

.feature-icon { color: var(--primary); }

.chip-icon [data-lucide] { width: 18px; height: 18px; stroke-width: 2; }
.chip-icon { color: var(--primary); }

.ss-icon [data-lucide] { width: 26px; height: 26px; stroke-width: 1.8; }
.ss-icon { color: var(--primary); }

.footer-contact-item [data-lucide] { width: 15px; height: 15px; stroke-width: 2; }

.faq-icon [data-lucide] { width: 14px; height: 14px; stroke-width: 2.5; }

.stars { display: flex; gap: 2px; }
.stars [data-lucide] { width: 16px; height: 16px; fill: #F59E0B; stroke: #F59E0B; }