/* ================================================================
   Quickora – style.css  (updated)
   Fixes: hero title too large · better big-screen proportions ·
          improved mobile layout · stats bar · floating cards
   ================================================================ */
/* ── CSS Variables ─────────────────────────────────────────────── */
:root { --primary:        #E91E63; --primary-light:  #F06292; --primary-dark:   #C2185B; --secondary:      #9C27B0; --secondary-light:#BA68C8; --accent:         #FF4081; --dark:           #0F0F1A; --dark-2:         #1A1A2E; --dark-3:         #16213E; --card-bg:        #1E1E35; --card-border:    rgba(255,255,255,0.07); --text-primary:   #FFFFFF; --text-secondary: rgba(255,255,255,0.65); --text-muted:     rgba(255,255,255,0.40); --gradient-hero:  linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #16213E 100%); --gradient-brand: linear-gradient(135deg, #E91E63, #9C27B0); --gradient-soft:  linear-gradient(135deg, #FCE4EC, #F3E5F5); --font-display: 'Syne', sans-serif; --font-body:    'DM Sans', sans-serif; --radius:    16px; --radius-sm: 10px; --radius-lg: 24px; --shadow:    0 20px 60px rgba(0,0,0,0.4); --shadow-sm: 0 8px 24px rgba(0,0,0,0.2); --ease:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; width: 100%; }
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
p { color: var(--text-secondary); }
.gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* ── Utility ───────────────────────────────────────────────────── */
.section-padding { padding: 96px 0; }
.section-badge { display: inline-block; padding: 6px 18px; background: rgba(233,30,99,0.12); border: 1px solid rgba(233,30,99,0.28); border-radius: 50px; color: var(--primary-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--text-primary); }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }
/* ================================================================
   NAVBAR
   ================================================================ */
#mainNav { background: transparent; width: 100%; padding: 16px 0; transition: var(--ease); z-index: 1000; }
/* Remove the conflicting transparent background on scroll */
#mainNav.scrolled { background: rgba(15, 15, 26, 0.98); backdrop-filter: blur(20px); padding: 10px 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.nav-logo-img { height: 42px; width: auto; display: block; filter: brightness(1); transition: var(--ease); }
.nav-link { color: rgba(255,255,255,0.82) !important; font-weight: 500; font-size: 0.95rem; padding: 7px 14px !important; border-radius: var(--radius-sm); transition: var(--ease); }
.nav-link:hover, .nav-link.active { color: #fff !important; background: rgba(233,30,99,0.12); }
.btn-nav-outline { border: 1.5px solid rgba(255,255,255,0.28); color: #fff; padding: 8px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 500; background: transparent; transition: var(--ease); white-space: nowrap; }
.btn-nav-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn-nav-cta { background: var(--gradient-brand); color: #fff; padding: 9px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; transition: var(--ease); box-shadow: 0 4px 18px rgba(233,30,99,0.35); white-space: nowrap; }
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(233,30,99,0.50); color: #fff; }
/* ================= NAVBAR VIDEO FIX ================= */
#mainNav { background: rgba(15, 15, 26, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.yt-video-section { padding-top: 74px; /* pushes video below fixed navbar */ }
@media (max-width: 991px) {
 .yt-video-section { padding-top: 68px; }
 }
@media (max-width: 576px) {
 .yt-video-section { padding-top: 64px; }
 }
/* ================================================================
   HAMBURGER BUTTON
   ================================================================ */
.hamburger-btn { background: rgba(233,30,99,0.12); border: 1.5px solid rgba(233,30,99,0.30); border-radius: var(--radius-sm); margin-right: 4px; padding: 9px 11px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 5px; transition: var(--ease); position: relative; z-index: 1300; flex-shrink: 0; }
.hamburger-btn:hover { background: rgba(233,30,99,0.22); }
.ham-line { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 3px; transition: var(--ease); transform-origin: center; }
.hamburger-btn.open .ham-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .ham-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* ================================================================
   MOBILE OVERLAY
   ================================================================ */
.mobile-overlay { position: fixed; inset: 0; background: rgba(10,5,20,0.72); backdrop-filter: blur(6px); z-index: 1200; opacity: 0; visibility: hidden; transition: opacity 0.32s ease, visibility 0.32s ease; }
.mobile-overlay.active { opacity: 1; visibility: visible; }
/* ================================================================
   MOBILE DRAWER
   ================================================================ */
.mobile-drawer { position: fixed; top: 0; right: 0; width: min(320px, 88vw); height: 100vh; height: 100dvh; background: #ffffff; z-index: 1400; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -6px 0 40px rgba(233,30,99,0.18); border-left: 1px solid rgba(233,30,99,0.10); overflow: hidden; }
.mobile-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(233,30,99,0.10); background: #fff; flex-shrink: 0; }
.drawer-logo-img { height: 36px; width: auto; display: block; }
.drawer-logo-link { line-height: 1; }
.drawer-close { width: 36px; height: 36px; background: rgba(233,30,99,0.08); border: 1.5px solid rgba(233,30,99,0.18); border-radius: 8px; color: var(--primary); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--ease); flex-shrink: 0; }
.drawer-close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.drawer-nav { flex: 1; display: flex; flex-direction: column; justify-content: space-evenly; gap: 0; padding: 8px 12px; overflow: hidden; min-height: 0; }
.drawer-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); color: #374151; text-decoration: none; font-size: 0.95rem; font-weight: 500; border: 1px solid transparent; transition: var(--ease); flex-shrink: 0; }
.drawer-link i { width: 20px; text-align: center; color: var(--primary); font-size: 0.95rem; flex-shrink: 0; }
.drawer-link:hover, .drawer-link.active-link { background: rgba(233,30,99,0.07); border-color: rgba(233,30,99,0.14); color: var(--primary); transform: translateX(3px); }
.drawer-footer { flex-shrink: 0; padding: 12px 14px 20px; border-top: 1px solid rgba(233,30,99,0.10); background: #fdf2f8; display: flex; flex-direction: column; gap: 9px; }
.btn-drawer-outline { display: block; text-align: center; padding: 12px; background: transparent; border: 1.5px solid rgba(233,30,99,0.32); border-radius: var(--radius-sm); color: var(--primary); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: var(--ease); }
.btn-drawer-outline:hover { background: rgba(233,30,99,0.06); color: var(--primary); }
.btn-drawer-cta { display: block; text-align: center; padding: 13px; background: var(--gradient-brand); border: none; border-radius: var(--radius-sm); color: #fff; font-weight: 700; font-size: 0.95rem; text-decoration: none; box-shadow: 0 4px 18px rgba(233,30,99,0.34); transition: var(--ease); }
.btn-drawer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(233,30,99,0.48); color: #fff; }
/* ================================================================
   HERO SECTION  — KEY FIXES HERE
   ================================================================ */
.hero-section { min-height: 100vh; background: var(--gradient-hero); position: relative; overflow: hidden; padding-top: 80px; display: flex; align-items: center; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.16; animation: blobFloat 10s ease-in-out infinite; }
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -150px; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-delay: -3s; }
.shape-3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 40%; animation-delay: -5s; opacity: 0.08; }
@keyframes blobFloat {
 0%,100% { transform: translate(0,0) scale(1); }
50% { transform: translate(16px,-26px) scale(1.05); }
 }
.hero-section .container { position: relative; z-index: 1; width: 100%; }
.hero-section .row { min-height: calc(100vh - 80px); align-items: center; padding: 48px 0 64px; }
.hero-badge { display: inline-flex; align-items: center; padding: 7px 18px; background: rgba(233,30,99,0.14); border: 1px solid rgba(233,30,99,0.28); border-radius: 50px; color: #F48FB1; font-size: 0.80rem; font-weight: 600; animation: fadeInUp 0.6s ease both; }
/* ── HERO TITLE: tighter clamp, fits on one screen ── */
.hero-title { font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 800; line-height: 1.10; color: #fff; animation: fadeInUp 0.7s ease 0.1s both; /* prevent overflow on wide screens */
  max-width: 100%; }
.hero-title .gradient-text { background: linear-gradient(135deg, #F48FB1, #CE93D8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 0.98rem; color: rgba(255,255,255,0.68); max-width: 460px; line-height: 1.7; animation: fadeInUp 0.7s ease 0.2s both; }
.btn-hero-primary { display: inline-flex; align-items: center; background: var(--gradient-brand); color: #fff; border: none; padding: 13px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; box-shadow: 0 8px 28px rgba(233,30,99,0.42); text-decoration: none; transition: var(--ease); }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(233,30,99,0.55); color: #fff; }
.btn-hero-ghost { display: inline-flex; align-items: center; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.22); color: #fff; padding: 13px 24px; border-radius: 50px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: var(--ease); }
.btn-hero-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-2px); }
/* Stats bar */
.hero-stats-wrap { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0; margin-top: 36px; padding: 18px 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); backdrop-filter: blur(10px); animation: fadeInUp 0.7s ease 0.35s both; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.48); margin-top: 4px; letter-spacing: 0.4px; }
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.14); flex-shrink: 0; align-self: center; }
/* ── Phone Mockup ──────────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; animation: fadeInLeft 0.85s ease 0.3s both; padding-right: 10px; }
.phone-mockup-wrapper { position: relative; display: inline-block; }
.phone-glow { position: absolute; width: 280px; height: 280px; background: var(--primary); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(80px); opacity: 0.22; z-index: 0; }
.phone-mockup { width: 260px; height: 520px; background: #1A1A2E; border-radius: 40px; border: 3px solid rgba(233,30,99,0.25); overflow: hidden; position: relative; z-index: 1; box-shadow: 0 40px 100px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08); }
.phone-screen { width: 100%; height: 100%; background: #12122A; overflow: hidden; }
.app-ui { height: 100%; display: flex; flex-direction: column; }
.app-topbar { display: flex; align-items: center; gap: 8px; padding: 12px 10px 8px; background: #1A1A35; }
.app-logo-small { background: var(--gradient-brand); color: #fff; font-family: var(--font-display); font-size: 0.65rem; font-weight: 800; width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-search-bar { flex: 1; background: rgba(255,255,255,0.07); border-radius: 8px; padding: 5px 9px; font-size: 0.60rem; color: rgba(255,255,255,0.42); display: flex; align-items: center; }
.app-cart-icon { position: relative; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.cart-badge { position: absolute; top: -6px; right: -8px; background: var(--primary); color: #fff; font-size: 0.48rem; width: 13px; height: 13px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.app-banner-strip { background: var(--gradient-brand); padding: 6px 10px; }
.banner-text { font-size: 0.60rem; color: #fff; font-weight: 700; }
.app-categories { display: flex; gap: 5px; padding: 8px; overflow-x: hidden; }
.cat-chip { padding: 3px 8px; border-radius: 20px; font-size: 0.55rem; font-weight: 600; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.58); white-space: nowrap; }
.cat-chip.active { background: rgba(233,30,99,0.26); color: #F48FB1; }
.app-products { flex: 1; display: flex; gap: 7px; padding: 4px 8px; overflow: hidden; }
.app-product-card { flex: 1; background: #1E1E38; border-radius: 10px; overflow: hidden; }
.prod-img-placeholder { height: 70px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 1.3rem; }
.prod-info { padding: 5px 7px; }
.prod-name { font-size: 0.55rem; color: #fff; font-weight: 600; }
.prod-price { font-size: 0.60rem; color: #F48FB1; font-weight: 700; margin-top: 2px; }
.prod-rating { font-size: 0.52rem; color: #FFB800; margin-top: 2px; }
.app-bottom-nav { display: flex; justify-content: space-around; padding: 9px 10px 13px; background: #1A1A35; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.85rem; color: rgba(255,255,255,0.38); }
.app-bottom-nav .active-icon { color: var(--primary); }
/* Floating cards */
.floating-card { position: absolute; display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.96); border: 1px solid rgba(233,30,99,0.14); border-radius: 10px; padding: 8px 13px; font-size: 0.72rem; font-weight: 600; color: #1F2937; box-shadow: 0 6px 22px rgba(233,30,99,0.12); animation: floatCard 4s ease-in-out infinite; z-index: 2; }
.floating-card i { font-size: 0.92rem; }
.card-1 { right: -52px; top: 18%; animation-delay: 0s; }
.card-1 i { color: #FF9800; }
.card-2 { right: -52px; top: 52%; animation-delay: -1.5s; }
.card-2 i { color: #00C853; }
.card-3 { left: -28px; bottom: 18%; animation-delay: -3s; }
.card-3 i { color: #FFB800; }
@keyframes floatCard {
 0%,100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
 }
.hero-scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.70rem; color: rgba(255,255,255,0.30); text-transform: uppercase; letter-spacing: 1.5px; }
.scroll-dot { width: 5px; height: 5px; background: var(--primary); border-radius: 50%; animation: scrollBounce 1.6s ease-in-out infinite; }
@keyframes scrollBounce {
 0%,100% { transform: translateY(0); opacity: 1; }
50% { transform: translateY(7px); opacity: 0.35; }
 }
/* ================================================================
   TRUSTED BY
   ================================================================ */
.trusted-section { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 36px 0; overflow: hidden; }
.trusted-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.tech-logos-slider { display: flex; animation: marquee 26s linear infinite; width: max-content; }
.tech-logo { display: flex; align-items: center; gap: 10px; padding: 0 30px; color: rgba(255,255,255,0.38); font-size: 0.88rem; font-weight: 500; white-space: nowrap; transition: var(--ease); }
.tech-logo i { font-size: 1.4rem; color: rgba(255,255,255,0.28); transition: var(--ease); }
.tech-logo:hover { color: rgba(255,255,255,0.82); }
.tech-logo:hover i { color: var(--primary); }
@keyframes marquee {
 0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
 }
/* ================================================================
   FEATURES
   ================================================================ */
.features-section { background: var(--dark); }
.features-carousel .feature-card-wrap { padding: 12px; }
.feature-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: var(--ease); height: 100%; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-brand); transform: scaleX(0); transition: var(--ease); transform-origin: left; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(233,30,99,0.22); box-shadow: 0 20px 56px rgba(0,0,0,0.3); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-wrap { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.4rem; color: var(--icon-color, var(--primary)); background: color-mix(in srgb, var(--icon-color, var(--primary)) 12%, transparent); border: 1px solid color-mix(in srgb, var(--icon-color, var(--primary)) 22%, transparent); }
.feature-card h5 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }
/* Slick */
.slick-prev,.slick-next { width: 42px; height: 42px; background: rgba(255,255,255,0.08) !important; border: 1px solid rgba(255,255,255,0.12) !important; border-radius: 50% !important; z-index: 10; transition: var(--ease); }
.slick-prev:hover,.slick-next:hover { background: rgba(233,30,99,0.28) !important; }
.slick-prev { left: -22px; }
.slick-next { right: -22px; }
.slick-prev:before,.slick-next:before { font-size: 14px; color: #fff; opacity: 1; }
.slick-dots li button:before { color: rgba(255,255,255,0.28) !important; font-size: 8px !important; }
.slick-dots li.slick-active button:before { color: var(--primary) !important; }
/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-section { background: var(--dark-2); }
.step-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--ease); position: relative; overflow: hidden; height: 100%; }
.step-card:hover { transform: translateY(-6px); border-color: rgba(233,30,99,0.28); }
.step-number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: rgba(233,30,99,0.10); line-height: 1; position: absolute; top: 14px; right: 16px; letter-spacing: -2px; }
.step-icon { width: 56px; height: 56px; background: rgba(233,30,99,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); margin: 0 auto 16px; }
.step-card h5 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }
/* ================================================================
   ROLES
   ================================================================ */
.roles-section { background: var(--dark); }
.role-tab-btn { padding: 11px 22px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.14); background: transparent; color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; cursor: pointer; transition: var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.role-tab-btn:hover { border-color: rgba(233,30,99,0.4); color: #fff; }
.role-tab-btn.active { background: var(--gradient-brand); border-color: transparent; color: #fff; box-shadow: 0 4px 18px rgba(233,30,99,0.34); }
.role-content { display: none; animation: fadeInUp 0.4s ease; }
.role-content.active { display: block; }
.role-visual { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 50px 32px; text-align: center; position: relative; overflow: hidden; }
.role-visual::before { content: ''; position: absolute; top: -50px; left: -50px; width: 200px; height: 200px; background: var(--gradient-brand); border-radius: 50%; opacity: 0.06; filter: blur(40px); }
.role-icon-big { font-size: 4.5rem; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 18px; }
.role-label-badge { display: inline-block; padding: 5px 18px; background: color-mix(in srgb, var(--badge-color, var(--secondary)) 15%, transparent); border: 1px solid color-mix(in srgb, var(--badge-color, var(--secondary)) 30%, transparent); border-radius: 50px; color: var(--badge-color, var(--secondary)); font-size: 0.83rem; font-weight: 700; }
.role-title { font-size: 1.8rem; color: #fff; margin-bottom: 10px; }
.role-desc { color: var(--text-secondary); margin-bottom: 24px; font-size: 0.95rem; }
.role-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.role-feat { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.8); font-size: 0.88rem; padding: 7px 10px; background: rgba(255,255,255,0.04); border-radius: 8px; }
.role-feat i { color: #00C853; font-size: 0.88rem; }
.role-feat.restricted { color: var(--text-muted); }
.role-feat.restricted i { color: rgba(255,75,75,0.7); }
/* ================================================================
   ROADMAP / PHASES
   ================================================================ */
.phases-section { background: var(--dark-2); }
.phases-timeline { max-width: 760px; margin: 0 auto; position: relative; }
.phase-item { display: flex; gap: 24px; }
.phase-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; padding-top: 4px; }
.phase-dot { width: 17px; height: 17px; border-radius: 50%; background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.18); flex-shrink: 0; transition: var(--ease); position: relative; z-index: 1; }
.active-phase .phase-dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 5px rgba(233,30,99,0.20); }
.phase-line { width: 2px; flex: 1; background: rgba(255,255,255,0.08); margin: 8px 0; min-height: 60px; }
.phase-content { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 26px 28px; margin-bottom: 24px; flex: 1; transition: var(--ease); }
.phase-content:hover { border-color: rgba(233,30,99,0.24); transform: translateX(4px); }
.active-phase .phase-content { border-color: rgba(233,30,99,0.28); }
.phase-badge { display: inline-block; padding: 4px 13px; border-radius: 50px; background: rgba(233,30,99,0.14); color: var(--primary-light); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.phase-badge.phase-2 { background: rgba(156,39,176,0.14); color: #CE93D8; }
.phase-badge.phase-3 { background: rgba(255,152,0,0.14); color: #FFB800; }
.phase-content h4 { color: #fff; font-size: 1.15rem; margin-bottom: 7px; }
.phase-content > p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 14px; }
.phase-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.phase-tag { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; font-size: 0.76rem; color: rgba(255,255,255,0.68); }
.phase-tag i { color: var(--primary); }
/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { background: var(--dark); }
.testimonials-carousel .testimonial-card-wrap { padding: 12px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px; transition: var(--ease); position: relative; overflow: hidden; }
.testimonial-card::before { content: '"'; position: absolute; top: -10px; right: 22px; font-size: 7rem; font-family: Georgia,serif; color: rgba(233,30,99,0.07); line-height: 1; }
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(233,30,99,0.2); }
.stars i { color: #FFB800; font-size: 0.88rem; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 0.93rem; line-height: 1.7; font-style: italic; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; color: #fff; flex-shrink: 0; }
.author-name { color: #fff; font-weight: 600; font-size: 0.93rem; }
.author-role { color: var(--text-muted); font-size: 0.78rem; }
/* ================================================================
   CONTACT / CTA
   ================================================================ */
.download-section { background: var(--dark-2); }
.download-card { background: linear-gradient(135deg, #1A0A30, #2D1155, #1A0A30); border: 1px solid rgba(156,39,176,0.20); border-radius: var(--radius-lg); padding: 56px 48px; position: relative; overflow: hidden; }
.download-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.dl-shape-1 { position: absolute; width: 350px; height: 350px; background: var(--secondary); border-radius: 50%; top: -150px; right: -80px; opacity: 0.08; filter: blur(60px); }
.dl-shape-2 { position: absolute; width: 250px; height: 250px; background: var(--primary); border-radius: 50%; bottom: -80px; left: -60px; opacity: 0.10; filter: blur(60px); }
.download-title { font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; }
.download-title span { color: #CE93D8; }
.download-subtitle { color: rgba(255,255,255,0.65); font-size: 0.98rem; max-width: 440px; }
.light-badge { background: rgba(206,147,216,0.16); border-color: rgba(206,147,216,0.32); color: #CE93D8; }
/* ================================================================
   ENQUIRY FORM
   ================================================================ */
.enquiry-form { width: 100%; }
.enquiry-input { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-sm); padding: 12px 15px; color: #fff; font-family: var(--font-body); font-size: 0.92rem; transition: var(--ease); outline: none; appearance: none; -webkit-appearance: none; }
.enquiry-input::placeholder { color: rgba(255,255,255,0.38); }
.enquiry-input:focus { border-color: rgba(233,30,99,0.55); background: rgba(255,255,255,0.10); box-shadow: 0 0 0 3px rgba(233,30,99,0.12); }
.enquiry-input option { background: #1A1A2E; color: #fff; }
.enquiry-textarea { resize: vertical; min-height: 88px; }
.btn-enquire-submit { display: inline-flex; align-items: center; justify-content: center; background: var(--gradient-brand); color: #fff; border: none; padding: 14px 36px; border-radius: 50px; font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; cursor: pointer; box-shadow: 0 8px 28px rgba(233,30,99,0.42); transition: var(--ease); width: 100%; }
.btn-enquire-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(233,30,99,0.55); }
/* ================================================================
   CONTACT INFO CARD
   ================================================================ */
.contact-info-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 32px 26px; display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(233,30,99,0.14); border: 1px solid rgba(233,30,99,0.22); display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 0.95rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.70rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.contact-info-value { display: block; color: rgba(255,255,255,0.85); font-size: 0.93rem; font-weight: 500; text-decoration: none; transition: var(--ease); }
a.contact-info-value:hover { color: var(--primary-light); }
.contact-social { display: flex; gap: 10px; }
/* ================================================================
   FOOTER
   ================================================================ */
#mainFooter { background: #080814; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 72px 0 48px; }
.footer-logo-img { height: 42px; width: auto; display: block; margin-bottom: 14px; filter: brightness(1.05); }
.footer-tagline { color: var(--text-secondary); font-size: 0.88rem; max-width: 280px; line-height: 1.75; margin-bottom: 18px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 37px; height: 37px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.83rem; text-decoration: none; transition: var(--ease); }
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-heading { font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.88rem; transition: var(--ease); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--text-muted); font-size: 0.83rem; margin: 0; }
.footer-tech { font-size: 0.78rem; color: var(--text-muted); }
/* Footer Contact List */
.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact-list i { color: var(--primary); font-size: 0.88rem; margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center; }
.footer-contact-list span,
.footer-contact-list a { color: rgba(255,255,255,0.55); font-size: 0.86rem; line-height: 1.6; text-decoration: none; transition: var(--ease); }
.footer-contact-list a:hover { color: #fff; }
/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
 from { opacity: 0; transform: translateY(32px); }
to { opacity: 1; transform: translateY(0); }
 }
@keyframes fadeInLeft {
 from { opacity: 0; transform: translateX(-40px); }
to { opacity: 1; transform: translateX(0); }
 }
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
/* ================================================================
   RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 1200px) {
 .hero-title { font-size: clamp(2rem, 3.2vw, 2.9rem); }
 }
@media (max-width: 991.98px) {
 .hero-section { padding-top: 76px; }
.hero-section .row { min-height: auto; padding: 40px 0 56px; }
.section-padding { padding: 68px 0; }
.floating-card { display: none; }
.hero-visual { margin-top: 2.5rem; }
.role-features-grid { grid-template-columns: 1fr; }
.phases-timeline { max-width: 100%; }
/* Stack hero: phone below on mobile */
  .hero-content { text-align: center; }
.hero-content .hero-subtitle { max-width: 100%; }
.hero-content .hero-cta-group { justify-content: center; }
.hero-stats-wrap { justify-content: center; }
 }
/* ================================================================
   RESPONSIVE — Mobile
   ================================================================ */
@media (max-width: 767.98px) {
 .hero-section { padding-top: 70px; }
.hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
.section-title { font-size: 1.75rem; }
.download-card { padding: 36px 22px; }
.phase-item { flex-direction: column; }
.phase-marker { flex-direction: row; }
.phase-line { width: 28px; height: 2px; min-height: auto; margin: 0 4px; }
.role-feat { font-size: 0.82rem; }
.slick-prev { left: -10px; }
.slick-next { right: -10px; }
.hero-stats-wrap { width: 100%; justify-content: center; padding: 16px 14px; }
.stat-item { padding: 0 12px; }
.stat-num { font-size: 1.5rem; }
.phone-mockup { width: 230px; height: 460px; }
.phone-glow { width: 240px; height: 240px; }
 }
@media (max-width: 575.98px) {
 .hero-title { font-size: clamp(1.65rem, 8.5vw, 2.2rem); }
.hero-subtitle { font-size: 0.94rem; }
.btn-hero-primary, .btn-hero-ghost { padding: 12px 20px; font-size: 0.90rem; }
.stat-item { padding: 0 10px; }
.stat-num { font-size: 1.35rem; }
.section-padding { padding: 52px 0; }
.features-carousel, .testimonials-carousel { overflow: hidden; }
.hero-cta-group { flex-direction: column; align-items: center; gap: 12px !important; }
.btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; max-width: 280px; }
 }
@media (max-width: 480px) {
 .container { padding-left: 15px; padding-right: 15px; }
.download-card { padding: 28px 16px; }
.phase-content { padding: 20px 18px; }
.role-feat { font-size: 0.79rem; padding: 6px 9px; }
.phone-mockup { width: 210px; height: 420px; }
.contact-info-card { padding: 24px 18px; }
 }
/* ================= YOUTUBE VIDEO SECTION ================= */
.yt-video-section { background: #000; width: 100%; overflow: hidden; }
.yt-video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.yt-video-wrapper #yt-player,
.yt-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; pointer-events: none; }
/* ---- Unmute bar ---- */
.yt-unmute-bar { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 20; transition: opacity 0.5s ease; }
.yt-unmute-bar.hidden { opacity: 0; pointer-events: none; }
.yt-unmute-pill { background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(10px); border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff; padding: 12px 26px; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s ease; white-space: nowrap; letter-spacing: 0.3px; }
.yt-unmute-pill i { font-size: 18px; }
.yt-unmute-pill:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); }
/* ---- Controls ---- */
.yt-controls { position: absolute; bottom: 18px; right: 18px; display: flex; gap: 10px; z-index: 15; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
.yt-controls.visible { opacity: 1; pointer-events: all; }
.yt-ctrl-btn { background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(8px); border: 1.5px solid rgba(255, 255, 255, 0.25); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.yt-ctrl-btn:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.08); }
@media (max-width: 576px) {
 .yt-unmute-pill { font-size: 13px; padding: 10px 20px; }
.yt-controls { bottom: 12px; right: 12px; }
.yt-ctrl-btn { width: 38px; height: 38px; font-size: 16px; }
 }
