/* =============================================
   YOOPARICHAY - MAIN STYLESHEET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6c3bff;
  --primary-dark: #4e22d6;
  --secondary: #ff6b35;
  --accent: #00d4aa;
  --bg: #f8f9ff;
  --white: #ffffff;
  --dark: #0d0b26;
  --text: #3c3a5c;
  --muted: #888aaa;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(108, 59, 255, 0.12);
  --shadow-lg: 0 24px 64px rgba(108, 59, 255, 0.18);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.section-pad { padding: 90px 0; }

.section-tag { display: inline-block; background: rgba(108,59,255,0.1); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 18px; border-radius: 100px; letter-spacing: 0.5px; margin-bottom: 16px; text-transform: uppercase; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 620px; margin: 0 auto 48px; text-align: center; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 30px; border-radius: 50px; font-family: 'Poppins',sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(108,59,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(108,59,255,0.5); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* TOP BANNER */
.top-banner { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); text-align: center; padding: 10px 20px; font-size: 14px; }
.top-banner a { color: var(--white); font-weight: 700; text-decoration: underline; margin-left: 8px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(108,59,255,0.08); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(108,59,255,0.12); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--dark); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 4px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero { position: relative; background: linear-gradient(135deg, #0d0b26 0%, #1e1660 50%, #2d1a8c 100%); padding: 100px 0 0; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.hero-bg-shapes .shape { position: absolute; border-radius: 50%; opacity: 0.12; }
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -150px; animation: float 6s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation: float 8s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; background: var(--accent); top: 50%; left: 50%; animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(5deg); } }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-bottom: 80px; position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); color: #fff; padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-content .gradient-text { background: linear-gradient(135deg, #a78bfa, var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-outline { color: white; border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); color: white; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 24px; color: white; font-weight: 800; }
.stat span { font-size: 12px; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* PHONE MOCKUP */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-mockup { width: 280px; height: 560px; background: var(--dark); border-radius: 40px; border: 8px solid rgba(255,255,255,0.15); box-shadow: 0 40px 80px rgba(0,0,0,0.5); overflow: hidden; position: relative; animation: float 6s ease-in-out infinite; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(160deg, #1a1040, #2d1a8c); display: flex; align-items: center; justify-content: center; }
.card-preview { background: white; border-radius: 20px; margin: 16px; padding: 24px 20px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.card-avatar { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; }
.card-name { font-size: 18px; font-weight: 700; color: var(--dark); }
.card-title { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.card-links { display: flex; justify-content: center; gap: 10px; margin-bottom: 16px; }
.card-link { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; }
.card-qr { width: 60px; height: 60px; background: #333; border-radius: 8px; margin: 0 auto; padding: 6px; }
.qr-inner { width: 100%; height: 100%; background: repeating-linear-gradient(0deg, transparent, transparent 3px, white 3px, white 4px), repeating-linear-gradient(90deg, transparent, transparent 3px, white 3px, white 4px); }
.floating-badge { position: absolute; background: white; border-radius: 50px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: var(--dark); box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 8px; }
.badge-nfc { top: 80px; right: -20px; }
.badge-nfc i { color: var(--primary); }
.badge-share { bottom: 100px; left: -20px; }
.badge-share i { color: var(--secondary); }
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; }

/* ABOUT */
.about { background: var(--bg); text-align: center; }
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.about-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.about-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; margin: 0 auto 16px; }
.about-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.about-card p { font-size: 14px; color: var(--muted); }

/* FEATURES */
.features { background: white; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-item { display: flex; align-items: flex-start; gap: 18px; background: var(--bg); border-radius: var(--radius); padding: 24px; transition: transform var(--transition), box-shadow var(--transition); text-align: left; }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: white; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; flex-shrink: 0; }
.feature-icon.purple { background: linear-gradient(135deg,#6c3bff,#9b5fff); }
.feature-icon.blue   { background: linear-gradient(135deg,#2196f3,#00bcd4); }
.feature-icon.green  { background: linear-gradient(135deg,#4caf50,#00d4aa); }
.feature-icon.orange { background: linear-gradient(135deg,#ff9800,#ff6b35); }
.feature-icon.red    { background: linear-gradient(135deg,#f44336,#e91e63); }
.feature-icon.teal   { background: linear-gradient(135deg,#009688,#00bcd4); }
.feature-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.feature-item p { font-size: 13px; color: var(--muted); }

/* HOW IT WORKS */
.how { background: var(--bg); text-align: center; }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 0; margin: 48px 0; flex-wrap: wrap; }
.step { background: white; border-radius: var(--radius); padding: 36px 28px; max-width: 280px; box-shadow: var(--shadow); position: relative; transition: transform var(--transition); flex: 1; min-width: 200px; }
.step:hover { transform: translateY(-6px); }
.step-number { position: absolute; top: -16px; left: 24px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 100px; }
.step-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; margin: 0 auto 20px; }
.step h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); }
.step-arrow { font-size: 24px; color: var(--primary); opacity: 0.4; padding: 0 16px; }
.cta-center { margin-top: 16px; }

/* PRICING */
.pricing { background: white; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; align-items: start; }
.pricing-card { background: var(--bg); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: transform var(--transition), box-shadow var(--transition); border: 2px solid transparent; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: linear-gradient(160deg, var(--primary), var(--primary-dark)); border-color: var(--primary); transform: scale(1.04); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: white; font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.8); }
.plan-price { font-size: 42px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.pricing-card.featured .plan-price { color: white; }
.pricing-card.featured .plan-price span { color: rgba(255,255,255,0.6); }
.plan-features { text-align: left; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; border-bottom: 1px solid rgba(108,59,255,0.06); }
.pricing-card.featured .plan-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.plan-features li .fa-check { color: var(--accent); }
.plan-features li.disabled { opacity: 0.4; }
.pricing-card.featured .btn-outline { color: white; border-color: rgba(255,255,255,0.5); }
.pricing-card.featured .btn-outline:hover { background: rgba(255,255,255,0.15); color: white; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 80px 0; text-align: center; }
.cta-inner h2 { font-size: clamp(28px,4vw,42px); font-weight: 800; color: white; margin-bottom: 12px; }
.cta-inner h2 .gradient-text { background: linear-gradient(135deg,#a78bfa,var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 14px; margin-top: 12px; max-width: 260px; line-height: 1.7; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all var(--transition); }
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: white; }
.footer-col ul li a i { font-size: 12px; color: var(--primary); }
.footer-bottom { text-align: center; padding: 20px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: linear-gradient(135deg,var(--primary),var(--secondary)); color: white; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; box-shadow: 0 8px 24px rgba(108,59,255,0.35); display: flex; align-items: center; justify-content: center; transition: all var(--transition); opacity: 0; transform: translateY(20px); z-index: 999; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(108,59,255,0.5); }

/* PULSE */
.pulse-btn { animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 24px rgba(108,59,255,0.35); } 50% { box-shadow: 0 8px 36px rgba(108,59,255,0.6), 0 0 0 10px rgba(108,59,255,0.1); } }

/* AOS */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-sub, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; width: 100%; background: white; padding: 20px; gap: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 999; }
  .about-grid, .features-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* =============================================
   ADDITIONAL PAGE STYLES
============================================= */

/* Active nav link */
.nav-links a.active-page { color: var(--primary); }
.nav-links a.active-page::after { width: 100%; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0d0b26 0%, #1e1660 50%, #2d1a8c 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.08;
  top: -200px; right: -100px;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.08;
  bottom: -100px; left: -50px;
}
.page-hero .section-tag { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); }
.page-hero h1 { color: white; font-size: clamp(32px,5vw,54px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 580px; margin: 0 auto 32px; }
.page-hero .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: white; }
.page-hero .breadcrumb i { font-size: 10px; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; }

/* ---- ABOUT PAGE ---- */
.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-img { position: relative; }
.about-story-img .img-blob {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; color: white; opacity: 0.95;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%  { border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%; }
  66%  { border-radius: 50% 50% 40% 60% / 40% 60% 60% 40%; }
}
.about-story-img .stat-bubble {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-story-img .stat-bubble strong { display: block; font-size: 26px; font-weight: 800; background: linear-gradient(135deg,var(--primary),var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-story-img .stat-bubble span { font-size: 12px; color: var(--muted); }
.stat-bubble.b1 { top: 30px; right: -20px; }
.stat-bubble.b2 { bottom: 40px; left: -20px; }
.about-story-text .section-tag { margin-bottom: 12px; }
.about-story-text h2 { font-size: clamp(28px,3.5vw,40px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.about-story-text p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.team-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: transform var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 32px; color: white; margin: 0 auto 16px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); }
.team-card .role { font-size: 13px; color: var(--primary); margin-bottom: 10px; }
.team-card .team-social { display: flex; justify-content: center; gap: 10px; }
.team-card .team-social a { width: 32px; height: 32px; border-radius: 8px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted); transition: all var(--transition); }
.team-card .team-social a:hover { background: var(--primary); color: white; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; border-left: 4px solid var(--primary); box-shadow: var(--shadow); transition: transform var(--transition); }
.value-card:hover { transform: translateX(6px); }
.value-card .vi { font-size: 36px; margin-bottom: 14px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); }

/* ---- FEATURES PAGE ---- */
.features-hero-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.feat-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); transition: all var(--transition); position: relative; overflow: hidden; }
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg,var(--primary),var(--secondary)); }
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feat-card .fc-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; margin-bottom: 20px; }
.feat-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.feat-card .feat-list { margin-top: 16px; }
.feat-card .feat-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); padding: 4px 0; }
.feat-card .feat-list li i { color: var(--accent); font-size: 11px; }

.compare-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid rgba(108,59,255,0.08); }
.compare-table th { background: var(--dark); color: white; font-size: 14px; font-weight: 700; }
.compare-table th:first-child { text-align: left; border-radius: 12px 0 0 0; }
.compare-table th:last-child { border-radius: 0 12px 0 0; background: linear-gradient(135deg,var(--primary),var(--secondary)); }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
.compare-table tr:nth-child(even) { background: var(--bg); }
.compare-table tr:hover { background: rgba(108,59,255,0.04); }
.compare-table .fa-check { color: var(--accent); }
.compare-table .fa-times { color: #ddd; }

/* ---- DIGITAL CARD PAGE ---- */
.dc-showcase { background: var(--bg); }
.dc-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dc-phone-wrap { display: flex; justify-content: center; gap: 20px; }
.dc-phone-wrap .phone-mockup { height: 480px; width: 240px; }
.dc-phone-wrap .phone-mockup.alt { margin-top: 40px; background: #1a1040; }
.dc-text .section-tag { margin-bottom: 12px; }
.dc-text h2 { font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.dc-text p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.dc-checklist { margin-bottom: 28px; }
.dc-checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--bg); }
.dc-checklist li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

.themes-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 48px; }
.theme-card { border-radius: 16px; height: 120px; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.theme-card:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--shadow-lg); }
.theme-card .theme-name { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.5); color: white; font-size: 11px; font-weight: 600; padding: 6px 10px; text-align: center; }
.theme-1 { background: linear-gradient(135deg,#6c3bff,#9b5fff); }
.theme-2 { background: linear-gradient(135deg,#ff6b35,#ffb347); }
.theme-3 { background: linear-gradient(135deg,#00d4aa,#2196f3); }
.theme-4 { background: linear-gradient(135deg,#1a1040,#6c3bff); }
.theme-5 { background: linear-gradient(135deg,#e91e63,#ff6b35); }
.theme-6 { background: linear-gradient(135deg,#009688,#4caf50); }
.theme-7 { background: linear-gradient(135deg,#3f51b5,#2196f3); }
.theme-8 { background: linear-gradient(135deg,#795548,#ff9800); }
.theme-9 { background: linear-gradient(135deg,#607d8b,#455a64); }
.theme-10 { background: linear-gradient(135deg,#f44336,#e91e63); }

/* ---- NFC PAGE ---- */
.nfc-how { background: var(--bg); }
.nfc-steps-row { display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
.nfc-step-card { flex: 1; min-width: 200px; background: white; border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow); text-align: center; position: relative; transition: transform var(--transition); }
.nfc-step-card:hover { transform: translateY(-6px); }
.nfc-step-card .nfc-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--secondary)); color: white; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.nfc-step-card i.big-icon { font-size: 40px; margin-bottom: 12px; color: var(--primary); }
.nfc-step-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.nfc-step-card p { font-size: 13px; color: var(--muted); }
.nfc-connector { display: flex; align-items: center; color: var(--primary); font-size: 20px; opacity: 0.4; padding: 0 4px; align-self: center; }

.nfc-card-3d { display: flex; justify-content: center; margin: 60px 0; }
.nfc-physical-card {
  width: 340px; height: 210px;
  background: linear-gradient(135deg, #1a1040, #6c3bff);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(108,59,255,0.4);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transform: perspective(800px) rotateX(5deg) rotateY(-8deg);
  transition: transform 0.4s ease;
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100% { transform: perspective(800px) rotateX(5deg) rotateY(-8deg) translateY(0); } 50% { transform: perspective(800px) rotateX(5deg) rotateY(-8deg) translateY(-12px); } }
.nfc-physical-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.nfc-physical-card .card-chip { width: 44px; height: 34px; background: linear-gradient(135deg,#ffd700,#ffa500); border-radius: 6px; }
.nfc-physical-card .card-holder-name { font-size: 18px; font-weight: 700; color: white; letter-spacing: 1px; }
.nfc-physical-card .card-company { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.nfc-physical-card .card-nfc-icon { position: absolute; bottom: 24px; right: 28px; font-size: 28px; color: rgba(255,255,255,0.5); }
.nfc-physical-card .card-logo { position: absolute; top: 24px; right: 28px; font-size: 20px; font-weight: 800; color: rgba(255,255,255,0.8); }

/* ---- PRICING PAGE ---- */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.pricing-toggle span { font-size: 15px; font-weight: 600; color: var(--muted); }
.pricing-toggle span.active-label { color: var(--dark); }
.toggle-switch { width: 52px; height: 28px; background: linear-gradient(135deg,var(--primary),var(--secondary)); border-radius: 100px; cursor: pointer; position: relative; transition: all var(--transition); }
.toggle-switch::after { content: ''; position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: white; transition: left var(--transition); }
.toggle-switch.yearly::after { left: 28px; }
.save-badge { background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

.faq-accordion { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden; }
.faq-question { padding: 22px 28px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--dark); user-select: none; transition: background var(--transition); }
.faq-question:hover { background: var(--bg); }
.faq-question i { transition: transform var(--transition); color: var(--primary); font-size: 14px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer p { padding: 0 28px 22px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; margin-top: 56px; align-items: start; }
.contact-info { }
.contact-info h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg,var(--primary),var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--muted); }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 2px solid rgba(108,59,255,0.1);
  border-radius: 10px; font-family: 'Poppins',sans-serif; font-size: 14px;
  color: var(--dark); background: var(--bg); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(108,59,255,0.1); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }

.map-embed { border-radius: var(--radius); overflow: hidden; height: 300px; background: linear-gradient(135deg, #e8e5ff, #f0edff); display: flex; align-items: center; justify-content: center; }
.map-embed p { color: var(--muted); font-size: 14px; text-align: center; }

/* ---- FAQ PAGE ---- */
.faq-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.faq-cat-btn { padding: 9px 22px; border-radius: 100px; border: 2px solid rgba(108,59,255,0.2); font-family: 'Poppins',sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--muted); background: transparent; transition: all var(--transition); }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ---- LOGIN PAGE ---- */
.login-page { min-height: 100vh; background: linear-gradient(135deg,#0d0b26,#2d1a8c); display: flex; align-items: center; justify-content: center; padding: 100px 20px 60px; }
.login-box { background: white; border-radius: 24px; padding: 48px 40px; max-width: 420px; width: 100%; box-shadow: 0 40px 80px rgba(0,0,0,0.4); }
.login-logo { display: flex; justify-content: center; margin-bottom: 8px; }
.login-box h2 { font-size: 26px; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 6px; }
.login-box .sub { text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.otp-row { display: flex; gap: 12px; }
.otp-row input { flex: 1; }
.otp-row .btn { flex-shrink: 0; padding: 13px 20px; font-size: 13px; }
.login-divider { text-align: center; font-size: 12px; color: var(--muted); margin: 20px 0; position: relative; }
.login-divider::before, .login-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: rgba(108,59,255,0.1); }
.login-divider::before { left: 0; }
.login-divider::after { right: 0; }
.social-login { display: flex; gap: 12px; }
.social-login .btn { flex: 1; justify-content: center; font-size: 14px; padding: 12px; }
.login-footer { text-align: center; font-size: 13px; color: var(--muted); margin-top: 24px; }
.login-footer a { color: var(--primary); font-weight: 600; }
.whatsapp-hint { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2); border-radius: 10px; padding: 12px 16px; font-size: 13px; color: #1a8a3c; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.whatsapp-hint i { color: #25d366; margin-top: 1px; font-size: 16px; }

/* ---- RESPONSIVE EXTRAS ---- */
@media (max-width: 992px) {
  .about-story-grid, .dc-showcase-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-hero-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .themes-grid { grid-template-columns: repeat(3,1fr); }
  .dc-phone-wrap { gap: 12px; }
  .dc-phone-wrap .phone-mockup { width: 180px; height: 360px; }
}
@media (max-width: 768px) {
  .features-hero-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .themes-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .nfc-steps-row { flex-direction: column; }
  .nfc-connector { display: none; }
  .nfc-physical-card { width: 280px; height: 175px; }
  .login-box { padding: 32px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
