/* ============================================
   ABDULLAH ALI PORTFOLIO — HANZO STYLE SYSTEM
   ============================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #3B82F6;
    --primary-light: #60A5FA;
    --primary-dark: #1d4ed8;
    --secondary: #60A5FA;
    --accent: #3B82F6;
    --dark: #050810;
    --dark-secondary: #07090f;
    --dark-card: #0d1117;
    --dark-card2: #0a0d14;
    --light: #F1F5F9;
    --text-muted: #7a8a9e;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --glass-bg: rgba(13, 17, 23, 0.75);
    --glass-border: rgba(59, 130, 246, 0.12);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 20px;
    --radius-sm: 10px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%       { transform: translateY(-12px) rotate(0.5deg); }
    66%       { transform: translateY(-6px) rotate(-0.5deg); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
    50%       { box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Reveal on scroll utility */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delay helpers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted { color: var(--text-muted); }

/* ============================================
   STATUS PILL
   ============================================ */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: var(--primary-light);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}
.status-pill .dot {
    width: 7px; height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px #22c55e;
}

/* ============================================
   HEADER / NAV
   ============================================ */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 11, 20, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}
.site-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(96, 165, 250, 0.32);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}
.logo svg { color: var(--primary); flex-shrink: 0; }

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gradient);
    transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.12) 0%, transparent 65%);
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 0%, transparent 75%);
    pointer-events: none;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text { z-index: 2; }

.hero-title {
    font-size: clamp(2rem, 3.6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.hero-title .serif-italic {
    font-size: 1.05em;
    color: var(--light);
    -webkit-text-fill-color: var(--light);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}
.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.7rem 1.5rem;
    font-size: 0.88rem;
}
.btn-outline:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: var(--primary);
}

/* ============================================
   HERO VISUAL — CSS INTERACTIVE MOCKUP
   ============================================ */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 680px;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 460px;
    animation: float 7s ease-in-out infinite;
}

.mockup-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.mockup-card:hover { transform: translateY(-6px) scale(1.01); }
.mockup-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1rem;
}
.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Sparkline chart */
.sparkline {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-bottom: 1.5rem;
}
.sparkline-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.sparkline-bar:hover { opacity: 1; }

/* Tech Badges */
.tech-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tech-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
}
.tech-badge img { width: 16px; height: 16px; }

/* Floating cards around the mockup */
.float-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(16px);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.float-card-1 {
    top: 60px; right: -50px;
    animation: floatAlt 5s ease-in-out infinite;
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.25);
    background: rgba(34, 197, 94, 0.08);
}
.float-card-2 {
    bottom: 100px; left: -60px;
    animation: floatAlt 6s ease-in-out infinite reverse;
    color: var(--primary-light);
}

/* Glow blob behind mockup */
.hero-blob {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

/* ============================================
   HERO VISUAL — PHONE MOCKUP
   ============================================ */
.phone-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 7s ease-in-out infinite;
}

.hero-img-new {
    width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.25));
}

/* Phone frame */
.phone-frame {
    width: 220px;
    height: 450px;
    background: linear-gradient(160deg, #1a2035 0%, #0d1117 100%);
    border-radius: 42px;
    border: 2px solid rgba(59, 130, 246, 0.35);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 60px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: visible;
    z-index: 2;
}

.phone-notch {
    width: 72px;
    height: 22px;
    background: #050810;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.phone-screen {
    position: absolute;
    top: 10px;
    left: 5px;
    right: 5px;
    bottom: 12px;
    border-radius: 36px;
    background: linear-gradient(170deg, #0b1628 0%, #050810 100%);
    overflow: hidden;
}

.phone-chin {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    z-index: 10;
}

/* App screen inside phone */
.app-screen {
    padding: 26px 10px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: hidden;
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.app-topbar-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
}
.app-topbar-icon { font-size: 0.78rem; }

.app-searchbar {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 5px 8px;
}
.app-search-text {
    height: 5px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.app-cats {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.app-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.app-cat-icon { font-size: 1rem; }
.app-cat-lbl {
    width: 26px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.app-card-row { display: flex; gap: 6px; }
.app-card-sm {
    flex: 1;
    height: 58px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 10px;
}
.app-card-accent {
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(59, 130, 246, 0.25);
}
.app-card-dim {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}
.app-card-full {
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 10px;
}

.app-bottomnav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 7px 4px;
    font-size: 0.95rem;
}
.app-nav-active {
    background: rgba(59, 130, 246, 0.22);
    border-radius: 8px;
    padding: 2px 6px;
}

/* Float badge cards (existing .float-card adjusted) */
.float-card-1 { top: 30px; right: -55px; }
.float-card-2 { bottom: 90px; left: -65px; }

/* Floating mini UI cards */
.float-ui-card {
    position: absolute;
    background: rgba(10, 14, 22, 0.92);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 14px;
    padding: 10px 12px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.float-ui-1 {
    top: 40px;
    left: -68px;
    width: 112px;
    animation: floatAlt 5s ease-in-out infinite;
}
.float-ui-2 {
    bottom: 140px;
    right: -60px;
    text-align: center;
    animation: floatAlt 6s ease-in-out infinite reverse;
}
.float-ui-3 {
    bottom: 50px;
    left: -74px;
    width: 124px;
    animation: floatAlt 7s ease-in-out 0.8s infinite;
}

.ui-mini-header { display: flex; gap: 4px; margin-bottom: 7px; }
.ui-mini-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.ui-mini-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 5px;
}
.ui-mini-img {
    width: 100%;
    height: 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(96, 165, 250, 0.1));
    border-radius: 6px;
    margin-top: 3px;
}

.ui-stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.ui-stat-lbl {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.ui-pay-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   SCROLLING TICKER / MARQUEE
   ============================================ */
.ticker-wrap {
    overflow: hidden;
    padding: 1.2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(59, 130, 246, 0.03);
}
.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 25s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.ticker-item span { font-size: 1rem; }

/* ============================================
   SECTION BASE
   ============================================ */
.section {
    padding: 7rem 0;
}
.section-alt { background: var(--dark-secondary); }

.section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 1rem;
    opacity: 0.85;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--light);
    margin-bottom: 1rem;
}
.section-title .serif-italic {
    font-size: inherit;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   HOW IT WORKS — STEPS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
}
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.step-card:hover::before { opacity: 1; }

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    opacity: 0.8;
}
.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--light);
    letter-spacing: -0.02em;
}
.step-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   SERVICES / TECH GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(circle at 60% 0%, rgba(59, 130, 246, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.service-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.25rem;
    line-height: 1;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.service-bullets {
    list-style: none;
    margin-top: 1.25rem;
}
.service-bullets li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.service-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

/* ============================================
   PROJECTS GRID
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.project-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.project-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.project-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card:hover .project-img { transform: scale(1.06); }

.project-tech-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(8, 11, 20, 0.85);
    border: 1px solid var(--glass-border);
    color: var(--primary-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
}

.project-content { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.project-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.project-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-light);
    font-size: 0.83rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 100px;
    background: rgba(59, 130, 246, 0.07);
    transition: var(--transition);
}
.project-link:hover {
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Filter buttons */
.filter-group {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

/* ============================================
   UPCOMING / ROADMAP CARDS
   ============================================ */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.upcoming-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.upcoming-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.upcoming-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.upcoming-img-container {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
}

.upcoming-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.upcoming-card:hover .upcoming-img {
    transform: scale(1.05);
}

.upcoming-card > .status-badge,
.upcoming-card > .upcoming-title,
.upcoming-card > .upcoming-desc,
.upcoming-card > .progress-container,
.upcoming-card > .release-date {
    margin-left: 2rem;
    margin-right: 2rem;
}

.upcoming-card > .status-badge {
    margin-top: 1.5rem;
}

.upcoming-card > .release-date {
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.status-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.status-planning     { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.status-in_progress  { background: rgba(59,130,246,0.12); color: var(--primary-light); border: 1px solid rgba(59,130,246,0.25); }
.status-testing      { background: rgba(34,197,94,0.12);  color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
.status-launching_soon { background: rgba(236,72,153,0.12); color: #f472b6; border: 1px solid rgba(236,72,153,0.25); }

.upcoming-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.upcoming-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.progress-container { margin-bottom: 1rem; }
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.progress-bar-bg {
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 100px;
    transition: width 1s ease;
}

.release-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pricing-card.featured {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(145deg, var(--dark-card), rgba(59, 130, 246, 0.06));
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 20px 50px rgba(0,0,0,0.4);
}
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--light);
}
.pricing-price span { font-size: 1.25rem; font-weight: 600; color: var(--text-muted); }
.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}
.pricing-divider {
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 2rem;
}
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.92rem;
    color: var(--light);
}
.pricing-features li .check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    margin-top: 2px;
}
.pricing-features li.muted { color: var(--text-muted); }
.pricing-features li.muted .check {
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
    gap: 1rem;
}
.faq-question .arrow {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.35s ease, background 0.3s;
}
.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
    background: rgba(59, 130, 246, 0.2);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0 1.75rem;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}
.about-img-wrap img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}
.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius) + 1px);
    background: var(--gradient);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-bullets {
    list-style: none;
    margin: 1.5rem 0 2rem;
}
.about-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--light);
    font-size: 0.95rem;
}
.about-bullets li .bullet-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--primary-light);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.contact-item-text { font-size: 0.9rem; color: var(--text-muted); }
.contact-item-text strong { display: block; color: var(--light); font-weight: 600; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
    letter-spacing: 0.02em;
}
.form-control {
    width: 100%;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.85rem 1.1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-control:focus {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 130px; }

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    margin-bottom: 1rem;
}
.alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34,197,94,0.25); color: #22c55e; }
.alert-danger  { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239,68,68,0.25); color: #ef4444; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 1.5rem 0;
    line-height: 1.1;
}
.footer-tagline .serif-italic {
    font-size: inherit;
    -webkit-text-fill-color: var(--light);
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}
.social-icon {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.social-icon:hover { color: var(--light); }

.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 2rem 0;
}
.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container  { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-text       { order: 1; }
    .hero-visual     { order: 2; height: 480px; }
    .hero-desc       { margin: 0 auto 2.5rem; }
    .btn-group       { justify-content: center; }
    .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid    { grid-template-columns: 1fr; gap: 3rem; }
    .float-card-1, .float-card-2 { display: none; }
    .steps-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; gap: 1.5rem; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,11,20,0.97); padding: 2rem; border-bottom: 1px solid var(--glass-border); }
    .nav-menu.active { display: flex; }
    .menu-toggle { display: flex; }
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.85rem; }
    .section { padding: 5rem 0; }
    .mockup-container { max-width: 340px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.55rem; }
    .nav-container { padding: 1rem 1.25rem; }
    .section-container { padding: 0 1.25rem; }
    .hero-container { padding: 0 1.25rem; }
}

/* ============================================
   PROJECT/PRODUCT DETAIL OVERLAY
   ============================================ */
.drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.14), transparent 45%),
        rgba(5, 8, 16, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow: hidden;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-panel {
    position: fixed;
    inset: 0;
    height: 100%;
    width: 100%;
    max-width: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

.drawer-overlay.active .drawer-panel {
    transform: translateY(0);
    opacity: 1;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.drawer-header-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--light);
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.drawer-close-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

/* Custom Sleek Scrollbar */
.drawer-content::-webkit-scrollbar {
    width: 6px;
}
.drawer-content::-webkit-scrollbar-track {
    background: transparent;
}
.drawer-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}
.drawer-content::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.3);
}

.drawer-main-image-container {
    position: relative;
    width: 100%;
    min-height: 430px;
    height: min(64vh, 680px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.drawer-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.drawer-gallery-horizontal {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.drawer-gallery-horizontal::-webkit-scrollbar {
    height: 4px;
}
.drawer-gallery-horizontal::-webkit-scrollbar-track {
    background: transparent;
}
.drawer-gallery-horizontal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.drawer-gallery-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.drawer-gallery-item:hover {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.drawer-gallery-item.active {
    border-color: var(--primary);
}

.drawer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.drawer-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    margin: 1.8rem 0 1rem;
    color: var(--light);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.drawer-tech {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary-light);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.drawer-desc {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 780px;
    margin-bottom: 2rem;
    white-space: pre-line;
}

.drawer-progress-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.drawer-footer {
    width: 100%;
    margin: 0;
    padding: 0.75rem 0 0.5rem;
    border-top: 0;
    background: transparent;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.drawer-btn,
.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.store-badge {
    gap: 0.8rem;
    width: 230px;
    min-height: 70px;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    background: #060606;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.store-badge:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(59, 130, 246, 0.16);
}

.store-badge-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.store-badge-play .store-badge-icon {
    color: #4ade80;
}

.store-badge-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.store-badge-copy span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
}

.store-badge-copy strong {
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.drawer-btn {
    gap: 0.75rem;
    padding: 1.05rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: none;
}

.drawer-btn-playstore {
    background: #000;
    color: #fff;
    border: 1px solid var(--glass-border);
}

.drawer-btn-playstore:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.drawer-btn-appstore {
    background: #000;
    color: #fff;
    border: 1px solid var(--glass-border);
}

.drawer-btn-appstore:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.drawer-btn-github {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--glass-border);
    min-height: 70px;
}

.drawer-btn-github:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--light);
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Drawer */
@media (max-width: 580px) {
    .drawer-panel {
        max-width: 100%;
    }
    .drawer-header {
        width: calc(100% - 1.5rem);
        padding: 0.9rem 0;
    }
    .drawer-content {
        width: calc(100% - 1.5rem);
        padding: 1rem 0 1.5rem;
    }
    .drawer-main-image-container {
        min-height: 48vh;
        height: 48vh;
        border-radius: 12px;
    }
    .drawer-gallery-horizontal {
        gap: 10px;
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .drawer-gallery-item {
        width: 70px;
        height: 70px;
    }
    .drawer-footer {
        width: 100%;
        padding: 0.5rem 0 0.25rem;
        flex-direction: row;
        gap: 0.75rem;
    }
    .store-badge {
        flex: 1 1 150px;
        width: auto;
        min-height: 58px;
        padding: 0.48rem 0.75rem;
    }
    .store-badge-icon {
        width: 32px;
        height: 32px;
    }
    .store-badge-copy span {
        font-size: 0.58rem;
    }
    .store-badge-copy strong {
        font-size: 1.1rem;
    }
    .drawer-btn {
        width: 100%;
        flex: none;
    }
}
