/* Copied from root styles.css (kept original in case of manual usage) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    /* Global page background with subtle grid + hero-like gradients */
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(1400px 700px at 20% -10%, rgba(56, 189, 248, 0.18), transparent 60%),
        radial-gradient(1000px 500px at 90% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
        linear-gradient(135deg, #0b0f1a 0%, #121826 60%, #0f172a 100%);
    background-size: 24px 24px, 24px 24px, auto, auto, auto;
    background-attachment: fixed, fixed, fixed, fixed, fixed;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.navbar { position: static; width: 100%; background: rgba(3, 5, 12, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.06); transition: all 0.3s ease; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 70px; }
.nav-left { display: flex; align-items: center; gap: 2rem; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-logo { display: flex; align-items: center; font-size: 1.5rem; font-weight: 700; }
.nav-logo span { background: linear-gradient(45deg, #60a5fa, #93c5fd, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-logo i { margin-right: 8px; font-size: 1.8rem; }
.nav-menu { display: flex; gap: 2rem; }
.nav-link { text-decoration: none; color: #94a3b8; font-weight: 500; transition: color 0.3s ease; }
.nav-link:hover { color: #f472b6; }
.nav-signup { padding: 8px 20px; font-size: 0.95rem; }
.nav-toggle { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background-color: #e5e7eb; margin: 3px 0; transition: 0.3s; }
.hero { padding: 120px 0 80px; background: transparent; color: white; overflow: hidden; position: relative; }
.hero::before { display: none; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-title { font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
.gradient-text { background: linear-gradient(45deg, #f472b6, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-underline { position: relative; display: inline-block; }
.gradient-underline::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #60a5fa, #93c5fd, #a78bfa); border-radius: 2px; z-index: -1; }
.hero-description { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; }
.btn { padding: 12px 24px; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, #f0a3c2, #f5b8d1, #f8c5dd); color: #0b0f1a; }
.btn-primary:hover { background: linear-gradient(135deg, #f5b8d1, #f8c5dd, #fad0e3); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(240, 163, 194, 0.35); }
.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
.btn-large { padding: 16px 32px; font-size: 1.125rem; }
.btn-outline { background: transparent; color: #f472b6; border: 2px solid #f472b6; }
.btn-outline:hover { background: #f472b6; color: #0b0f1a; }
.hero-social-proof { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; margin-bottom: 0; flex-wrap: wrap; }
.user-avatars { display: flex; margin-right: 8px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); margin-left: -12px; object-fit: cover; }
.avatar:first-child { margin-left: 0; }
.rating-stars { display: flex; gap: 4px; color: #fbbf24; font-size: 1rem; }
.loved-by { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; }
.claim-url-container { display: flex; gap: 12px; margin: 2rem 0; max-width: 500px; }
.claim-input-wrapper { flex: 1; position: relative; display: flex; align-items: center; }
.claim-icon { position: absolute; left: 16px; color: #f472b6; z-index: 1; }
.claim-input { width: 100%; padding: 14px 16px 14px 48px; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; font-size: 1rem; }
.claim-input::placeholder { color: rgba(255,255,255,0.5); }
.claim-input:focus { outline: none; border-color: #f472b6; background: rgba(255,255,255,0.08); }
.claim-btn { padding: 14px 32px; white-space: nowrap; }
.gif-placeholder { width: 100%; height: 100%; background: rgba(255,255,255,0.05); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.video-frame { width: 100%; max-width: 520px; aspect-ratio: 2 / 1; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); background: rgba(255,255,255,0.06); position: relative; }
.api-demo { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 12px; padding: 0; width: 100%; max-width: 500px; border: 1px solid rgba(255, 255, 255, 0.2); overflow: hidden; }
.demo-header { background: rgba(0, 0, 0, 0.2); padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.demo-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; } .dot.yellow { background: #60a5fa; } .dot.green { background: #10b981; }
.demo-title { color: rgba(255, 255, 255, 0.9); font-size: 0.875rem; font-weight: 500; }
.demo-content { padding: 20px; }
.demo-request { background: rgba(0, 0, 0, 0.3); padding: 8px 12px; border-radius: 6px; margin-bottom: 16px; font-family: 'Monaco', 'Menlo', monospace; font-size: 0.875rem; }
.method { background: #10b981; color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; margin-right: 8px; }
.url { color: #60a5fa; }
.demo-response pre { color: #e5e7eb; font-family: 'Monaco', 'Menlo', monospace; font-size: 0.875rem; line-height: 1.5; white-space: pre-wrap; }
.features { padding: 80px 0; background: transparent; }
.features::before { display: none; }
/* Compare Section */
.compare { padding: 80px 0; background: transparent; }
.compare::before { display: none; }
.pc-rows { display: grid; gap: 20px; }
.pc-row { background: #111827; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px 18px; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.pc-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.pill.bad { background: rgba(239, 68, 68, 0.15); color: #fecaca; border: 1px solid rgba(239, 68, 68, 0.35); }
.pill.good { background: rgba(16, 185, 129, 0.15); color: #a7f3d0; border: 1px solid rgba(16, 185, 129, 0.35); }
.arrow { color: #9ca3b8; font-weight: 700; }
.pc-note { margin-top: 8px; color: #cbd5e1; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 2.5rem; font-weight: 700; color: #f8fafc; margin-bottom: 1rem; }
.section-description { font-size: 1.125rem; color: #cbd5e1; max-width: 600px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.feature-card { background: #111827; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35); transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.08); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5); }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #3b82f6, #60a5fa); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.feature-icon i { font-size: 1.5rem; color: white; }
.features-grid .feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #60a5fa, #93c5fd); }
.features-grid .feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #a78bfa, #c4b5fd); }
.features-grid .feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #34d399, #10b981); }
.features-grid .feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.features-grid .feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, #f472b6, #fda4af); }
.features-grid .feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #22d3ee, #38bdf8); }
.feature-title { font-size: 1.25rem; font-weight: 600; color: #f8fafc; margin-bottom: 1rem; }
.feature-description { color: #cbd5e1; line-height: 1.6; }
.why-choose { padding: 80px 0; background: transparent; }
.why-choose-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.why-choose-text { text-align: center; margin-bottom: 3rem; }
.why-choose-cta { text-align: center; margin-top: 3rem; }
.why-choose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.why-card { padding: 2rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12); transition: all 0.3s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.15) !important; }
.why-icon-wrapper { position: relative; margin-bottom: 1.5rem; }
.why-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; }
.why-check { position: absolute; bottom: -8px; right: -8px; color: #10b981; font-size: 1.25rem; background: #0f172a; border-radius: 50%; }
.why-title { font-size: 1.25rem; font-weight: 700; color: #f8fafc; margin-bottom: 0.75rem; }
.why-description { color: #cbd5e1; line-height: 1.6; }
.testimonials { padding: 80px 0; background: transparent; overflow: hidden; }
.testimonials .section-header { max-width: 1200px; margin: 0 auto 3rem; padding: 0 20px; text-align: center; }
.testimonials-carousel-wrapper { width: 100%; overflow: hidden; position: relative; }
.testimonials-carousel { display: flex; gap: 2rem; animation: scroll-testimonials 60s linear infinite; width: fit-content; will-change: transform; }
.testimonial-card { background: #111827; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; min-width: 350px; max-width: 350px; flex-shrink: 0; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 1rem; color: #fbbf24; }
.testimonial-text { color: #cbd5e1; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }
.testimonial-name { font-weight: 600; color: #f8fafc; margin-bottom: 0.25rem; }
.testimonial-role { font-size: 0.875rem; color: #94a3b8; }
@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-350px * 6 - 2rem * 5)); }
}
.gradient-underline-testimonial { position: relative; display: inline-block; }
.gradient-underline-testimonial::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #f472b6, #ec4899, #f59e0b); border-radius: 2px; z-index: -1; }
.gradient-text-why { background: linear-gradient(45deg, #60a5fa, #93c5fd, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing { padding: 80px 0; background: transparent; }
.pricing::before { display: none; }
.pricing-wrapper { display: flex; justify-content: center; }
.pricing-card-centered { 
  position: relative;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #60a5fa, #93c5fd, #a78bfa, #c4b5fd);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  will-change: transform;
}
.pricing-card-centered:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.25), 0 6px 18px rgba(0, 0, 0, 0.4), 0 0 60px rgba(96, 165, 250, 0.15);
}
.pricing-card-inner {
  background: #0f172a;
  border-radius: 18px;
  padding: 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.1), transparent 60%),
    radial-gradient(circle at bottom right, rgba(167, 139, 250, 0.1), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.pricing-card-inner > * {
  position: relative;
  z-index: 1;
}
.pricing-header { margin-bottom: 1.25rem; }
.pricing-title { font-size: 1.5rem; font-weight: 700; color: #f8fafc; margin-bottom: 0.5rem; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 0.5rem; }
.currency { font-size: 1.125rem; color: #cbd5e1; }
.amount { font-size: 2.5rem; font-weight: 700; background: linear-gradient(135deg, #60a5fa, #93c5fd, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.period { font-size: 1rem; color: #94a3b8; }
.pricing-subtitle { color: #cbd5e1; font-size: 0.95rem; margin-top: 0.5rem; }
.pricing-features { margin-bottom: 1.25rem; text-align: left; }
.feature-item { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; color: #cbd5e1; font-size: 0.9rem; }
.feature-item span { flex: 1; }
.pricing-btn { 
  width: 100%; 
  padding: 16px 32px; 
  font-size: 1.125rem; 
  margin-bottom: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}
.pricing-note { color: #94a3b8; font-size: 0.875rem; }
.cta { padding: 80px 0; background: transparent; color: white; text-align: center; position: relative; overflow: hidden; }
.cta::before { display: none; }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.cta-description { font-size: 1.125rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.cta-note { margin-top: 1rem; color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }
.footer { background: transparent; color: white; padding: 60px 0 20px; position: relative; overflow: hidden; }
.footer::before { display: none; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.footer-logo i { margin-right: 8px; font-size: 1.8rem; background: linear-gradient(135deg, #f472b6, #ec4899, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-description { color: #94a3b8; line-height: 1.6; }
.footer-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #9ca3af; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: #94a3b8; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: #9ca3af; text-decoration: none; transition: color 0.3s ease; }
.footer-legal a:hover { color: white; }
@media (max-width: 768px) { .nav-left { flex-direction: column; gap: 1rem; } .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: #0b0f1a; width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0, 0, 0, 0.35); padding: 2rem 0; } .nav-menu.active { left: 0; } .nav-right { flex-direction: column; gap: 0.5rem; } .nav-signup { width: 100%; } .nav-toggle { display: flex; } .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; } .hero-title { font-size: 2.5rem; } .hero-social-proof { justify-content: center; } .claim-url-container { flex-direction: column; } .claim-btn { width: 100%; } .why-choose-grid { grid-template-columns: 1fr; } .testimonial-card { min-width: 300px; max-width: 300px; } @keyframes scroll-testimonials { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-300px * 6 - 2rem * 5)); } } .features-grid { grid-template-columns: 1fr; } .pricing-card-centered { padding: 2rem; } .footer-content { grid-template-columns: 1fr; text-align: center; } .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } .video-frame { max-width: 440px; } }
@media (max-width: 480px) { .hero-title { font-size: 2rem; } .section-title { font-size: 2rem; } .cta-title { font-size: 2rem; } .hero-buttons { flex-direction: column; align-items: center; } .btn { width: 100%; max-width: 280px; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.feature-card, .pricing-card, .why-card, .testimonial-card, .pricing-card-centered { animation: fadeInUp 0.6s ease-out; }
.btn:focus, .nav-link:focus { outline: 2px solid #60a5fa; outline-offset: 2px; }
.btn.loading { opacity: 0.7; cursor: not-allowed; }
.btn.loading::after { content: ''; width: 16px; height: 16px; border: 2px solid transparent; border-top: 2px solid currentColor; border-radius: 50%; animation: spin 1s linear infinite; margin-left: 8px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

