/* NondropFollow — Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
a { color: inherit; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes glow { 0%,100% { box-shadow: 0 0 20px rgba(108,92,231,0.3); } 50% { box-shadow: 0 0 40px rgba(108,92,231,0.6); } }
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,15px) scale(0.95); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-25px,20px) scale(0.95); } 66% { transform: translate(35px,-15px) scale(1.05); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes countUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ═══ NAVBAR ═══ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); border-bottom: 1px solid #e8e8f0; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 18px; color: #1a1a2e; text-decoration: none; }
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: #6c5ce7; animation: glow 3s ease-in-out infinite; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: #64648c; }
.nav-links a { text-decoration: none; color: inherit; transition: all 0.3s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:#6c5ce7; border-radius:2px; transition: width 0.3s; }
.nav-links a:hover { color: #6c5ce7; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #6c5ce7; }
.nav-links a.active::after { width: 100%; }
.nav-cta { background: #6c5ce7; color: #fff; padding: 10px 22px; border-radius: 50px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; position: relative; overflow: hidden; }
.nav-cta::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { background: #5b4bd5; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(108,92,231,0.4); }

/* ═══ PAGE HERO ═══ */
.page-hero { padding: 80px 24px 48px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, #f5f3ff 0%, #fff 100%); }
.page-hero-orb { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(108,92,231,0.1) 0%, transparent 70%); pointer-events: none; animation: orbFloat1 10s ease-in-out infinite; }
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #6c5ce7; margin-bottom: 12px; animation: fadeUp 0.7s ease-out both; }
.page-hero h1 { font-size: 42px; font-weight: 800; color: #1a1a2e; margin-bottom: 16px; animation: fadeUp 0.7s ease-out 0.1s both; }
.page-hero p { font-size: 17px; color: #64648c; line-height: 1.7; animation: fadeUp 0.7s ease-out 0.2s both; }

/* ═══ CONTENT ═══ */
.content-section { padding: 60px 24px; }
.content-section.alt { background: #fafafe; }
.content-inner { max-width: 800px; margin: 0 auto; }
.content-inner h2 { font-size: 26px; font-weight: 700; color: #1a1a2e; margin: 40px 0 16px; }
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 { font-size: 20px; font-weight: 600; color: #1a1a2e; margin: 32px 0 12px; }
.content-inner p { font-size: 15px; color: #4a4a6a; line-height: 1.75; margin-bottom: 16px; }
.content-inner ul, .content-inner ol { font-size: 15px; color: #4a4a6a; line-height: 1.75; margin-bottom: 16px; padding-left: 24px; }
.content-inner li { margin-bottom: 8px; }
.content-inner a { color: #6c5ce7; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.content-inner a:hover { color: #5b4bd5; text-decoration: underline; }
.content-inner strong { color: #1a1a2e; }

/* Info cards for legal pages */
.info-card { background: #fff; border: 1px solid #ededf5; border-radius: 16px; padding: 28px; margin-bottom: 20px; transition: all 0.3s; }
.info-card:hover { border-color: #ddd6fe; box-shadow: 0 8px 28px rgba(108,92,231,0.06); }
.info-card h3 { font-size: 17px; font-weight: 600; color: #1a1a2e; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.info-card p { font-size: 14px; color: #64648c; line-height: 1.65; margin-bottom: 0; }

/* Highlight box */
.highlight-box { background: linear-gradient(135deg, #f5f3ff, #ede9fe); border-radius: 16px; padding: 28px; margin: 24px 0; border-left: 4px solid #6c5ce7; }
.highlight-box p { color: #4a4a6a; margin-bottom: 0; }
.highlight-box strong { color: #6c5ce7; }

/* ═══ SECTIONS ═══ */
.section { padding: 90px 24px; }
.section.alt { background: #fafafe; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #6c5ce7; margin-bottom: 12px; }
.section-title { font-size: 38px; font-weight: 800; color: #1a1a2e; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: #64648c; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ═══ CARDS ═══ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid #ededf5; border-radius: 18px; padding: 32px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); cursor: default; }
.card:hover { border-color: #ddd6fe; box-shadow: 0 16px 48px rgba(108,92,231,0.12); transform: translateY(-6px); }
.card-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #f0edff, #ede9fe); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; transition: all 0.3s; }
.card:hover .card-icon { background: linear-gradient(135deg, #6c5ce7, #8b5cf6); transform: scale(1.1) rotate(-5deg); }
.card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.card p { font-size: 14px; color: #64648c; line-height: 1.65; }

/* ═══ SERVICE CARDS ═══ */
.service-card { background: #fff; border: 1px solid #ededf5; border-radius: 20px; padding: 36px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-align: center; position: relative; overflow: hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, #6c5ce7, #a78bfa); opacity:0; transition: opacity 0.3s; }
.service-card:hover { border-color: #ddd6fe; box-shadow: 0 20px 56px rgba(108,92,231,0.14); transform: translateY(-8px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, #f0edff, #ede9fe); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; transition: all 0.3s; }
.service-card:hover .service-icon { background: linear-gradient(135deg, #6c5ce7, #8b5cf6); transform: scale(1.1); }
.service-card h3 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #64648c; line-height: 1.65; margin-bottom: 20px; }
.service-features { text-align: left; margin-bottom: 24px; }
.service-feature { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; color: #4a4a6a; }
.service-feature .check { width: 20px; height: 20px; border-radius: 50%; background: #f0edff; color: #6c5ce7; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }

/* ═══ BUTTONS ═══ */
.btn-primary { background: linear-gradient(135deg, #6c5ce7, #8b5cf6); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; position: relative; overflow: hidden; }
.btn-primary::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.6s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(108,92,231,0.4); color: #fff; text-decoration: none; }
.btn-secondary { background: #fff; color: #1a1a2e; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid #e0e0ec; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: #6c5ce7; color: #6c5ce7; transform: translateY(-3px); }
.btn-sm { padding: 10px 24px; font-size: 13px; }

/* ═══ CTA BANNER ═══ */
.cta-banner { background: linear-gradient(135deg, #6c5ce7, #8b5cf6, #a78bfa); background-size: 200% 200%; animation: gradientShift 8s ease infinite; border-radius: 28px; padding: 64px 32px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; top:-50%; right:-50%; width:100%; height:100%; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%); animation: orbFloat2 8s ease-in-out infinite; pointer-events:none; }
.cta-banner h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 16px; opacity: 0.9; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn-white { background: #fff; color: #6c5ce7; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; margin: 0 8px; display: inline-block; transition: all 0.3s; position: relative; }
.cta-banner .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.cta-banner .btn-outline { border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; margin: 0 8px; display: inline-block; transition: all 0.3s; position: relative; }
.cta-banner .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* ═══ TEAM / ABOUT CARDS ═══ */
.value-card { background: #fff; border: 1px solid #ededf5; border-radius: 18px; padding: 32px; text-align: center; transition: all 0.4s; }
.value-card:hover { border-color: #ddd6fe; box-shadow: 0 12px 40px rgba(108,92,231,0.1); transform: translateY(-4px); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: #64648c; line-height: 1.65; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.stat-item { text-align: center; padding: 24px; background: #fff; border: 1px solid #ededf5; border-radius: 16px; transition: all 0.3s; }
.stat-item:hover { border-color: #ddd6fe; transform: translateY(-3px); }
.stat-num { font-size: 32px; font-weight: 800; color: #6c5ce7; display: block; }
.stat-label { font-size: 13px; color: #64648c; margin-top: 4px; }

/* ═══ FOOTER ═══ */
.footer { background: #fafafe; border-top: 1px solid #ededf5; padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-weight: 700; font-size: 15px; color: #1a1a2e; }
.footer-brand p { font-size: 13px; color: #64648c; font-weight: 400; margin-top: 4px; }
.footer-links { display: flex; gap: 20px; font-size: 13px; }
.footer-links a { color: #64648c; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #6c5ce7; }
.footer-copy { font-size: 12px; color: #9898b0; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 28px; }
  .cards-3, .cards-2, .stats-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner .btn-white, .cta-banner .btn-outline { display: block; margin: 8px auto; width: fit-content; }
}
</style>
