/* EasyBill — App colors (AppTheme + AppColors) + advance effects, full desktop */
:root {
    /* AppColors from lib/utils/app_theme.dart */
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #60A5FA;
    --secondary: #10B981;
    --secondary-dark: #059669;
    --accent: #F59E0B;
    --alert: #FF7043;
    --bg: #F3F4F6;
    --surface: #FFFFFF;
    --surface-variant: #F9FAFB;
    --text: #1F2937;
    --text-muted: #6B7280;
    --text-inverse: #FFFFFF;
    --border: #E5E7EB;
    --gold: #FFD700;
    --primary-soft: rgba(37, 99, 235, 0.12);
    --secondary-soft: rgba(16, 185, 129, 0.12);
    --accent-soft: rgba(245, 158, 11, 0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(31, 41, 55, 0.08);
    --shadow-md: 0 4px 14px rgba(31, 41, 55, 0.1);
    --shadow-lg: 0 12px 32px rgba(31, 41, 55, 0.12);
    --shadow-glow-blue: 0 0 40px rgba(37, 99, 235, 0.2);
    --shadow-glow-accent: 0 0 40px rgba(245, 158, 11, 0.25);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-soft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.02); }
}
@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes border-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2); }
    50% { box-shadow: 0 0 20px 2px rgba(37, 99, 235, 0.15); }
}
@keyframes border-spin {
    to { transform: rotate(360deg); }
}

.animate-in { animation: fadeInUp 0.6s ease-out forwards; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

/* Background — single gradient, soft orbs (matching) */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(165deg, #EFF6FF 0%, var(--bg) 45%, #F0FDF4 100%);
    overflow: hidden;
}

.mesh-orb-1 {
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 65%);
    top: -120px; right: -60px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.mesh-orb-2 {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 65%);
    bottom: 15%; left: -80px;
    border-radius: 50%;
    animation: float 24s ease-in-out infinite reverse;
}

.mesh-orb-3 {
    position: absolute;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
    top: 55%; left: 50%;
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

.mesh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

.fire-shape { display: none; }

.bg-wrap, .bg-glow { display: none; }

/* Hero feature card — used elsewhere if needed */
.hero-feature-card-inner { border-radius: 26px; background: rgba(255,255,255,0.25); backdrop-filter: blur(24px); }
.hero-feature-item { font-size: 0.92rem; font-weight: 600; }

/* Header — App home style: gradient accent → alert */
header,
.header-glass {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--accent) 0%, var(--alert) 100%);
    padding: 0.9rem 0;
    box-shadow: var(--shadow-md);
}

.nav-inner,
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-inverse);
}

.logo-img-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.55rem;
    border-radius: 10px;
    line-height: 0;
    box-shadow: var(--shadow);
}

.logo-img-wrap img { height: 28px; width: auto; display: block; object-fit: contain; }

.logo-text { color: var(--text-inverse); }

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-inverse);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--text-inverse); }

.nav-cta {
    background: var(--text-inverse) !important;
    color: var(--primary) !important;
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    background: var(--surface-variant) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero — new design, no badge */
.hero {
    padding: 2.5rem 0 3rem;
}

.hero-new .hero-inner { align-items: center; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content { max-width: 520px; }

.hero-new .hero-title { margin-bottom: 0.4rem; }

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
}

.hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hero-stat i { color: var(--secondary); font-size: 1rem; }
.hero-stat:nth-child(2) i { color: var(--accent); }
.hero-stat:nth-child(3) i { color: var(--primary); }

.hero-new .hero-lead { margin-bottom: 0; }
.hero-new .hero-actions { margin-top: 0.5rem; }
.hero-new .hero-trust { margin-top: 1rem; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-inverse);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-cta {
    position: relative;
    overflow: hidden;
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.btn-cta:hover::before { left: 100%; }

.btn-glossy {
    position: relative;
    overflow: hidden;
}

.btn-glossy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.8s ease;
}

.btn-glossy:hover::before {
    left: 100%;
}

.btn-outline {
    background: var(--surface);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-item i { margin-right: 0.25rem; }
.trust-item:nth-child(1) i { color: var(--secondary); }
.trust-item:nth-child(2) i { color: var(--accent); }
.trust-item:nth-child(3) i { color: var(--primary); }
.trust-item:nth-child(4) i { color: #ec4899; }

/* ========== Hero 3D — fantastic 3D-style top ========== */
.hero-3d {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.hero-3d-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, #e0f2fe 0%, transparent 55%),
                radial-gradient(circle at bottom right, #fee2e2 0%, transparent 55%),
                linear-gradient(160deg, #0f172a 0%, #1f2937 40%, #0b1120 100%);
}

.hero-3d-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-3d-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: hero-3d-float 15s ease-in-out infinite;
}

.hero-3d-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    animation: hero-3d-float 18s ease-in-out infinite reverse;
}

.hero-3d-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

@keyframes hero-3d-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-3d-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-3d-title {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.hero-3d-word {
    display: block;
    color: #fff;
    text-shadow:
        0 0 40px rgba(96, 165, 250, 0.5),
        0 4px 0 rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.4);
    transform: perspective(500px) rotateX(-2deg);
}

.hero-3d-word-accent {
    background: linear-gradient(135deg, #60A5FA 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 0 rgba(0,0,0,0.25)) drop-shadow(0 8px 24px rgba(96, 165, 250, 0.35));
}

.hero-3d-word-light {
    color: #e2e8f0;
    font-weight: 700;
    text-shadow:
        0 0 30px rgba(255,255,255,0.15),
        0 4px 0 rgba(0, 0, 0, 0.25),
        0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-3d-badge-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-3d-badge {
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-3d-badge i {
    color: var(--secondary);
}

.hero-3d-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}

.hero-3d-h-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-3d-h-item i {
    color: #60A5FA;
}

.hero-3d-trust {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.trust-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.4rem;
    color: var(--accent);
}

.trust-stars span {
    margin-left: 0.4rem;
    color: #fff;
    font-weight: 600;
}

/* Hero Stats Bar */
.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .hero-stats-bar {
        padding: 1rem 2rem;
        gap: 1rem;
        flex-wrap: wrap;
        border-radius: 24px;
    }
    .hero-stat-divider { display: none; }
}

.hero-3d-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.hero-3d-sub strong { color: #fff; }

.hero-3d-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hero-3d-btn {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    border-radius: 14px;
}

.hero-3d .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.45), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.hero-3d .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hero-3d .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ========== Modern Screenshots — Two scrollable rows ========== */
.modern-screenshots {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
}

.screenshot-row-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-row-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
}

.screenshot-row-title i {
    color: var(--primary);
}

.screenshot-scroll-container {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.screenshot-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.screenshot-item {
    flex: 0 0 220px;
    scroll-snap-align: center;
}

@media (max-width: 600px) {
    .screenshot-item {
        flex: 0 0 85%; /* Make card take up most of the screen width for single item scroll */
    }
    .screenshot-item.pc {
        flex: 0 0 95%;
    }
}

.screenshot-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 32px rgba(31, 41, 55, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 36px rgba(31, 41, 55, 0.1);
}

.screenshot-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/19;
}

.screenshot-item.pc .screenshot-img-wrap {
    aspect-ratio: 16/10;
    flex: 0 0 320px;
}

.screenshot-item.pc {
    flex: 0 0 340px;
}

.screenshot-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-caption {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

/* ========== App Preview — horizontal screenshot strip ========== */
.preview-section {
    padding: 3rem 0;
    background: transparent;
}

.preview-3d-card {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.96) 0%, rgba(249,250,251,0.9) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 25px 60px rgba(15,23,42,0.22),
        0 0 0 1px rgba(15,23,42,0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: perspective(1000px) rotateX(0.5deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.preview-3d-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-4px);
    box-shadow:
        0 32px 70px rgba(15,23,42,0.3),
        0 0 0 1px rgba(15,23,42,0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.preview-3d-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 2.5rem;
}

.preview-3d-content {
    padding: 0.5rem 0;
}

.preview-3d-points {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.preview-3d-points li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.preview-3d-points i {
    color: var(--primary);
}

.preview-3d-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.preview-3d-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.preview-3d-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-3d-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.preview-3d-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

/* horizontal scroll cards for screenshots */
.screenshots-row {
    padding: 1.5rem 1.25rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(239,246,255,0.95));
}

.screenshots-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}

.screenshots-strip::-webkit-scrollbar {
    height: 6px;
}

.screenshots-strip::-webkit-scrollbar-track {
    background: rgba(148,163,184,0.18);
    border-radius: 999px;
}

.screenshots-strip::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 999px;
}

.ss-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ss-frame {
    border-radius: 20px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 18px 40px rgba(15,23,42,0.45);
}

.ss-frame.phone {
    aspect-ratio: 9/19;
}

.ss-frame.desktop {
    aspect-ratio: 16/10;
}

.ss-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ss-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #e5e7eb;
    font-size: 2rem;
}

.ss-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.ss-label i {
    margin-right: 0.25rem;
    color: var(--primary);
}

.preview-3d-devices {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.75rem;
}

.preview-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.preview-device-frame,
.preview-desktop-frame {
    position: relative;
    background: #020617;
    border-radius: 24px;
    box-shadow:
        0 18px 40px rgba(15,23,42,0.55),
        inset 0 0 0 1px rgba(148,163,184,0.5);
    padding: 10px;
}

.preview-device-phone .preview-device-frame {
    border-radius: 32px;
    padding: 10px;
}

.preview-device-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 8px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
}

.preview-device-screen {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1f2937);
    width: 210px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-device-desktop .preview-device-screen {
    width: 320px;
    height: 210px;
}

.preview-device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-device-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #e5e7eb;
    font-size: 2rem;
}

.preview-desktop-topbar {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding-bottom: 6px;
}

.preview-desktop-topbar .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.preview-desktop-topbar .dot.red { background: #f87171; }
.preview-desktop-topbar .dot.amber { background: #facc15; }
.preview-desktop-topbar .dot.green { background: #4ade80; }

.preview-device-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.preview-device-label i {
    margin-right: 0.25rem;
    color: var(--primary);
}
.preview-device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-device-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #e5e7eb;
    font-size: 2rem;
}

/* Extra original screenshots card */
.preview-real-card {
    margin-top: 1.75rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239,246,255,0.9));
}

.preview-real-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.preview-real-head p {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.preview-real-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.preview-real-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.preview-real-frame {
    border-radius: 18px;
    overflow: hidden;
    background: #0b1120;
    box-shadow: 0 18px 40px rgba(15,23,42,0.45);
}

.preview-real-frame.phone {
    aspect-ratio: 9/19;
}

.preview-real-frame.desktop {
    aspect-ratio: 16/9;
}

.preview-real-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-real-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #e5e7eb;
    font-size: 2rem;
}

.preview-real-label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-real-label i {
    margin-right: 0.25rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .screenshots-row { padding: 1.25rem 1rem; }
    .screenshots-strip { gap: 0.75rem; }
    .ss-card { flex: 0 0 170px; }
}

/* ========== QR + Share — transparent glass ========== */
.qr-share-section {
    padding: 3rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.qr-share-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.qr-boxes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.qr-box {
    width: 300px; /* Fixed width */
    min-height: 380px; /* Fixed height for same size */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 12px 40px rgba(31, 41, 55, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(31, 41, 55, 0.12);
}

.qr-box img {
    display: block;
    border-radius: 12px;
    margin: 0 auto 1rem;
    background: #fff;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.qr-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.qr-box.qr-android .qr-label i { color: #3DDC84; }
.qr-box.qr-windows .qr-label i { color: #0078D4; }

.qr-box span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.share-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
    width: 100%;
    max-width: 400px;
}

.share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--text-inverse);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-share:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.hero-float-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(31, 41, 55, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8);
    color: var(--primary);
    font-size: 1.15rem;
    animation: hero-float 6s ease-in-out infinite;
}

.hero-float-icon i { display: block; }

.hero-float-1 { top: 8%; left: 18%; animation-delay: 0s; color: var(--primary); }
.hero-float-2 { top: 12%; right: 12%; animation-delay: -1s; color: var(--secondary); }
.hero-float-3 { top: 50%; right: 0; margin-right: -8px; animation-delay: -2s; color: var(--accent); }
.hero-float-4 { bottom: 18%; right: 14%; animation-delay: -3s; color: var(--alert); }
.hero-float-5 { bottom: 10%; left: 20%; animation-delay: -4s; color: var(--primary); }
.hero-float-6 { top: 48%; left: 0; margin-left: -8px; animation-delay: -5s; color: var(--secondary); }

@keyframes hero-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-10px) scale(1.05); opacity: 0.95; }
}

/* Phone mockup — glow effect (primary) */

.phone-mockup.premium { position: relative; width: 260px; }

.phone-glow {
    position: absolute;
    inset: -25px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.phone-mockup .phone-frame {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%);
    border-radius: 36px;
    padding: 14px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
}

.phone-mockup .phone-notch {
    width: 100px;
    height: 24px;
    background: #0F172A;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 10px;
}

.phone-mockup .phone-screen {
    background: var(--surface-variant);
    border-radius: 26px;
    aspect-ratio: 9/19;
    overflow: hidden;
}

.phone-mockup .phone-screen img { width: 100%; height: 100%; object-fit: cover; }

.screen-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--surface-variant);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.screen-placeholder i { font-size: 2.25rem; opacity: 0.5; }

/* Explore — transparent cards */
.explore-section {
    padding: 2.5rem 0;
    background: transparent;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.explore-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 32px rgba(31, 41, 55, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.explore-card:hover {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 36px rgba(31, 41, 55, 0.08);
    transform: translateY(-3px);
}
.explore-card:hover .explore-icon {
    transform: translateY(-2px);
    color: var(--primary);
}

.explore-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.explore-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.card-title-icon {
    margin-right: 0.35rem;
    color: var(--primary);
    font-size: 0.9rem;
}
.explore-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* How it works — transparent cards */
.how-section {
    padding: 2.5rem 0;
    background: transparent;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 860px;
    margin: 0 auto;
}

.how-step {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 32px rgba(31, 41, 55, 0.06);
    transition: var(--transition);
}

.how-step:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 36px rgba(31, 41, 55, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}

.how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-inverse);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.how-step:hover .how-num {
    transform: scale(1.08);
}

.how-step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.how-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stats — transparent cards */
.stats-section {
    padding: 1.75rem 0;
    background: transparent;
}

.bento-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

/* Shared transparent glass */
.card-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 2.25rem 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 32px rgba(31, 41, 55, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 36px rgba(31, 41, 55, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}

.bento-stat {
    background: transparent;
    border: none;
    box-shadow: none;
}

.bento-stat i {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.bento-stat-title { display: block; font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.bento-stat-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Section head */
.section-head {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.section-head-compact { margin-bottom: 1.25rem; }
.section-head-compact .section-tag { margin-bottom: 0.35rem; }
.section-head-compact h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.section-tag i { font-size: 0.85rem; color: var(--accent); }

.section-head h2 {
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    color: var(--text);
    margin-bottom: 0.35rem;
}

.section-head p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; }

/* ========== Screenshots — one transparent card, simple scroll ========== */
.screens-section {
    padding: 2rem 0;
    background: transparent;
}

.screens-glass-card {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 40px rgba(31, 41, 55, 0.08);
}

.screens-block {
    margin-bottom: 1.25rem;
}

.screens-block:last-child { margin-bottom: 0; }

.screens-block-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.screens-block-header i {
    font-size: 1.2rem;
    color: var(--primary);
}

.screens-block-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.screens-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0 0.5rem;
}

.screens-scroll::-webkit-scrollbar { height: 6px; }
.screens-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.06); border-radius: 3px; }
.screens-scroll::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

.screens-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
}

.screen-thumb {
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.25s ease;
}

.screen-thumb:hover { transform: scale(1.02); }
.thumb-screen {
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-variant);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.thumb-phone {
    width: 120px;
    aspect-ratio: 9/19;
}

.thumb-window {
    width: 180px;
    aspect-ratio: 16/10;
}

.thumb-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    background: var(--surface-variant);
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.thumb-placeholder.show { display: flex; }
.thumb-window .thumb-placeholder { min-height: 90px; }

/* Plans & benefits */
.plans-section {
    padding: 2.5rem 0;
    background: transparent;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.plan-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.7); /* More opaque for readability */
    box-shadow:
        0 12px 32px rgba(31, 41, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(37,99,235,0.4), rgba(59,130,246,0.3));
    opacity: 0;
    z-index: -1;
    transition: opacity 220ms ease;
}

.plan-card:hover {
    transform: translateY(-8px) translateZ(12px);
    box-shadow:
        0 20px 48px rgba(31, 41, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card-featured {
    border: 1px solid rgba(37,99,235,0.3);
    background: linear-gradient(150deg, #1e3a8a, #1e40af); /* Darker for featured contrast */
    box-shadow: 0 18px 45px rgba(30, 64, 175, 0.25);
}

.plan-card-featured h3, 
.plan-card-featured p, 
.plan-card-featured li, 
.plan-card-featured .plan-foot-note {
    color: #ffffff !important;
}

.plan-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.plan-card-featured .plan-label {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.plan-label i {
    color: inherit;
}

.plan-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.plan-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}

.plan-points {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.plan-points li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

.plan-points i {
    color: var(--primary);
}

.plan-foot-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.plan-foot-note i {
    color: var(--primary-light);
    margin-right: 0.25rem;
}

/* Developer love / heart */
.dev-made-with {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.heart-pulse-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #FF0000; /* Pure Red */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: heart-pulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.heart-pulse-icon i {
    font-size: 0.9rem;
}

.dev-made-with-text {
    font-size: 0.85rem;
    color: #1e293b; /* Dark for visibility */
    font-weight: 600;
}

.dev-flag {
    font-size: 0.95rem;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.1));
}

@keyframes heart-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    40% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(255, 0, 0, 0);
    }
}

/* App preview (legacy) */
.app-preview {
    padding: 2rem 0;
}

.app-screens {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.phone-frame-card {
    width: 200px;
    padding: 12px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.phone-frame-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.phone-frame-card.featured {
    width: 220px;
    transform: translateY(-12px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow-blue);
}

.phone-frame-card.featured:hover {
    transform: translateY(-18px);
}

.phone-frame-card .phone-notch {
    width: 55px;
    height: 18px;
    background: #1F2937;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 8px;
}

.phone-frame-card .phone-screen {
    background: var(--surface-variant);
    border-radius: 20px;
    aspect-ratio: 9/19;
    overflow: hidden;
}

.phone-frame-card .phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-frame-card .screen-placeholder { min-height: 240px; font-size: 0.85rem; }

/* Features — transparent cards */
.features {
    padding: 2.5rem 0;
    background: transparent;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bento-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 32px rgba(31, 41, 55, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 36px rgba(31, 41, 55, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}
.bento-card:hover .bento-icon {
    transform: scale(1.05);
    transition: var(--transition);
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.bento-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 12px;
    margin-bottom: 0.85rem;
    transition: var(--transition);
}

.bento-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--text); }
.bento-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.bento-large .bento-icon { width: 48px; height: 48px; font-size: 1.25rem; }
.bento-large h3 { font-size: 1.2rem; }
.bento-large p { font-size: 0.95rem; }

/* Testimonial — transparent card */
.testimonial {
    padding: 2.5rem 0;
    background: transparent;
}

.testimonial-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 40px rgba(31, 41, 55, 0.06);
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    transform: perspective(800px) rotateY(0deg);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 16px 48px rgba(31, 41, 55, 0.08);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.85;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}
.testimonial-quote-icon { color: var(--accent); margin-right: 0.35rem; font-size: 1rem; vertical-align: middle; }
.testimonial-card blockquote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}
.testimonial-author strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 0.15rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.review-card {
    padding: 1.25rem 1.3rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.review-name {
    font-size: 0.95rem;
    color: var(--text);
}

.review-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    color: var(--accent);
}

.review-stars span {
    margin-left: 0.25rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

/* Global 3D hover for glass cards & icons */
.card-glass,
.bento-card,
.explore-card,
.how-step,
.testimonial-card,
.dev-card-app,
.download-card-new,
.preview-3d-card {
    transform-style: preserve-3d;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 40px rgba(161, 98, 7, 0.35), 0 0 0 1px rgba(251, 191, 36, 0.35);
}

.card-glass:hover,
.bento-card:hover,
.explore-card:hover,
.how-step:hover,
.testimonial-card:hover,
.dev-card-app:hover,
.download-card-new:hover,
.preview-3d-card:hover {
    transform: translateY(-6px) translateZ(10px);
    box-shadow:
        0 26px 70px rgba(161, 98, 7, 0.55),
        0 0 0 1px rgba(250, 204, 21, 0.65);
}

.bento-icon i,
.explore-icon i,
.bento-stat-icon,
.how-num,
.hero-3d-actions .hero-3d-btn i,
.download-btns .btn i,
.footer-links a i {
    transition: transform 200ms ease, text-shadow 200ms ease, color 200ms ease;
}

.bento-card:hover .bento-icon i,
.explore-card:hover .explore-icon i,
.bento-stat:hover .bento-stat-icon,
.how-step:hover .how-num,
.download-btns .btn:hover i,
.footer-links a:hover i {
    transform: translateY(-2px) translateZ(4px);
    text-shadow: 0 0 12px rgba(248,250,252,0.9);
}

/* Developer — light glossy style */
.dev-section {
    padding: 3rem 0;
    background: transparent;
}

.dev-card-app {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 249, 255, 0.7) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* Fixed elevated shadow - no cursor needed */
    transform: translateY(-10px);
    box-shadow: 
        0 30px 70px rgba(31, 41, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.dev-card-app:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 90px rgba(31, 41, 55, 0.2);
}

.dev-card-app::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dev-header-strip {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%); /* Blue-teal gradient matching hero vibes */
    border-radius: 28px 28px 0 0;
    z-index: 1;
}

.dev-header-bg {
    display: none;
}

.dev-avatar-glow {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.15);
    z-index: 2;
}

.dev-avatar-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.dev-avatar-icon {
    font-size: 2.8rem;
    color: var(--primary);
}

.dev-body {
    padding: 64px 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dev-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.dev-role {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    margin-bottom: 1rem;
}

.dev-location {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dev-location i { color: #3b82f6; }

.dev-bio {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dev-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.dev-skill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dev-skill i { color: #3b82f6; }

.dev-made-with {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dev-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: #1A1A2E;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.35);
}

.dev-cta-btn:hover {
    background: #16213E;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 26, 46, 0.4);
}

.dev-cta-btn i { font-size: 0.9rem; }

/* Download — card only, no full-width colored background; QR + animation */
.download-section {
    padding: 3rem 0;
    background: transparent;
}

.download-card-new {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 2rem 2.25rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 20px 50px rgba(31, 41, 55, 0.1);
}

.download-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.download-card-inner .download-content {
    text-align: left;
    max-width: 420px;
    flex: 1;
    min-width: 280px;
}

.download-card-inner .download-content h2 {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-card-inner .download-content h2 i { color: var(--primary); }

.download-card-inner .download-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.download-card-inner .download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.download-section .btn-primary {
    background: var(--primary);
    color: var(--text-inverse);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.download-section .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.download-section .btn-outline {
    border: 2px solid var(--border);
    color: var(--text);
    background: var(--surface);
}
.download-section .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

/* QR with pulse animation */
.download-qr-wrap {
    position: relative;
    flex-shrink: 0;
}

.download-qr-pulse {
    position: absolute;
    inset: -12px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    opacity: 0.35;
    animation: download-qr-pulse 2s ease-in-out infinite;
}

.download-qr-inner {
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.download-qr-img {
    display: block;
    border-radius: 10px;
}

.download-qr-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

@keyframes download-qr-pulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.03); opacity: 0.15; }
}

.qr-card {
    background: var(--surface-variant);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.qr-card img { display: block; border-radius: 10px; margin-bottom: 0.75rem; }
.qr-card span { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* Footer */
.footer {
    padding: 1.75rem 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-app-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-links a i { font-size: 0.85rem; color: var(--primary); }

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact i { color: var(--accent); }
.footer-contact a { color: var(--primary); }
.footer-contact a:hover { text-decoration: underline; }

.footer-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.footer-links a:hover { color: var(--primary); }
.footer-links a:hover::after { width: 100%; }
footer p { font-size: 0.85rem; color: var(--text-muted); }

/* Legal */
.legal-page { padding: 3.5rem 0 4rem; min-height: 60vh; }
.legal-content { max-width: 680px; margin: 0 auto; }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.legal-back:hover { color: var(--primary); }
.legal-content h1 { font-size: 1.9rem; margin-bottom: 0.5rem; color: var(--text); }
.legal-updated { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.legal-content h2 { font-size: 1.15rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--text); }
.legal-content p { color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.7; font-size: 0.9rem; }
.legal-list { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-list li { margin-bottom: 0.4rem; color: var(--text-muted); line-height: 1.65; font-size: 0.9rem; }
.legal-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--primary-dark); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .explore-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .bento-stats { grid-template-columns: repeat(2, 1fr); }
    .bento-stat-wide { grid-column: span 2; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .mesh-orb-1, .mesh-orb-2, .mesh-orb-3 { display: none; }
    .hero-float-wrap { display: none; }
    .mesh-grid { opacity: 0.5; }
    .nav-links { display: none; }
    .container { padding: 0 1rem; }
    .hero-3d { min-height: 60vh; padding: 3rem 0 4rem; }
    .hero-3d-title { font-size: clamp(1.85rem, 8vw, 2.75rem); }
    .hero-3d-sub { font-size: 0.95rem; }
    .qr-share-inner { flex-direction: column; gap: 1.25rem; }
    .qr-share-section { padding: 1.5rem 0; }
    .thumb-phone { width: 100px; }
    .thumb-window { width: 150px; }
    .explore-section, .how-section, .features { padding: 1.75rem 0; }
    .stats-section { padding: 1.25rem 0; }
    .screens-section { padding: 1.5rem 0; }
    .screens-glass-card { padding: 1.25rem 1rem; }
    .explore-card, .how-step { padding: 1.25rem 1rem; }
    .hero { padding: 1.75rem 0 2rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero-tagline { font-size: 0.9rem; }
    .hero-lead { font-size: 0.95rem; }
    .hero-stats { gap: 0.75rem; margin-bottom: 1rem; }
    .hero-stat { font-size: 0.85rem; padding: 0.4rem 0.75rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .phone-mockup.premium { width: 220px; }
    .phone-glow { display: none; }
    .bento-stats { grid-template-columns: 1fr; }
    .bento-stat-wide { grid-column: span 1; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .bento-card { padding: 1.25rem; }
    .testimonial { padding: 1.75rem 0; }
    .testimonial-card { padding: 1.5rem 1.25rem; }
    .testimonial-card blockquote { font-size: 1rem; }
    .dev-section { padding: 1.75rem 0; }
    .dev-card-app { max-width: 100%; margin: 0 1rem; }
    .dev-body { padding: 52px 1.25rem 1.5rem; }
    .dev-name { font-size: 1.4rem; }
    .dev-skills { gap: 0.4rem; }
    .dev-cta-btn { font-size: 0.85rem; padding: 0.75rem 1.25rem; }
    .download-card-new { padding: 1.5rem 1.25rem; }
    .download-card-inner { flex-direction: column; text-align: center; }
    .download-card-inner .download-content { text-align: center; }
    .download-btns { justify-content: center; }
    .download-section { padding: 2rem 0; }
    .download-inner { flex-direction: column; text-align: center; }
    .download-card { padding: 1.75rem 1.25rem !important; }
    .download-btns { justify-content: center; }
    .footer { padding: 1.25rem 0; }
    .section-head { margin-bottom: 1.5rem; }
}
