/* --- Design System & CSS Variables --- */
:root {
    --bg-dark: #090816;
    --bg-dark-secondary: #110f27;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-active: rgba(255, 255, 255, 0.08);
    
    --primary: #5900ff;
    --primary-light: #7c3aed;
    --primary-glow: rgba(89, 0, 255, 0.3);
    --accent: #00bfff;
    --accent-glow: rgba(0, 191, 255, 0.25);
    --accent-pink: #ff007f;
    --accent-pink-glow: rgba(255, 0, 127, 0.3);

    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(255, 255, 255, 0.2);

    --text-white: #ffffff;
    --text-muted: #9fa1b8;
    --text-dark: #0f172a;

    --font-primary: 'Outfit', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px rgba(89, 0, 255, 0.2);
}

/* --- Global Resets & Scrollbar --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252347;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* --- Layout Containers & Typography --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-white);
}

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

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

/* --- Buttons & Badges --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(89, 0, 255, 0.45);
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-glass-active);
    border-color: var(--border-glass-hover);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-glass-hover);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(89, 0, 255, 0.12);
    border: 1px solid rgba(89, 0, 255, 0.3);
    color: #a78bfa;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
}

.badge i {
    font-size: 16px;
}

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

.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
}

/* --- Header & Navigation --- */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar-header.scrolled {
    padding: 12px 0;
    background: rgba(9, 8, 22, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(89, 0, 255, 0.2));
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-item:hover {
    color: var(--text-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 26px;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 75% 20%, rgba(89, 0, 255, 0.15) 0%, rgba(9, 8, 22, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(0, 191, 255, 0.08) 0%, rgba(9, 8, 22, 0) 50%);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 28px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
}

.metric-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.hero-metrics .divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
}

/* --- Hero Visual & Phone Mockup --- */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.blob-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(89, 0, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(40px);
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

.phone-mockup-wrapper {
    z-index: 2;
    perspective: 1000px;
}

.phone-mockup {
    width: 275px;
    height: 560px;
    background: #0d0c1e;
    border: 9px solid #1c1a36;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
                0 0 0 2px rgba(255, 255, 255, 0.05),
                0 0 30px var(--primary-glow);
    overflow: hidden;
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #252345;
    border-radius: 2px;
    z-index: 10;
}

.phone-camera-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 12px;
    z-index: 9;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 31px;
    position: relative;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.phone-shadow {
    position: absolute;
    width: 80%;
    height: 20px;
    background: rgba(0,0,0,0.5);
    bottom: -40px;
    left: 10%;
    border-radius: 50%;
    filter: blur(10px);
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-dark-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.features-showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.features-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-tab {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: transparent;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.feature-tab:hover {
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(255, 255, 255, 0.03);
}

.feature-tab.active {
    background: var(--bg-glass);
    border-color: var(--border-glass);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-icon-box i {
    font-size: 20px;
}

.icon-scanner {
    background: rgba(138, 43, 226, 0.15);
    color: #a855f7;
    border: 1px solid rgba(138, 43, 226, 0.3);
}
.icon-convert {
    background: rgba(0, 191, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 191, 255, 0.3);
}
.icon-compress {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.icon-read {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}
.icon-secure {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.feature-tab-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.feature-tab.active .feature-tab-text h3 {
    color: var(--accent);
}

.feature-tab-text p {
    font-size: 14px;
    line-height: 1.5;
}

/* --- Interactive Mockup Styling --- */
.features-mockup-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 191, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(50px);
    pointer-events: none;
}

.interactive-mockup {
    width: 260px;
    height: 530px;
    z-index: 2;
    animation: none;
}

.interactive-mockup .phone-screen {
    background: #090816;
}

.interactive-mockup .mockup-img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.interactive-mockup .mockup-img.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}

/* Screen loader animation when changing tabs */
.screen-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
    z-index: 1;
    display: none;
}

.screen-loader.loading {
    display: block;
}

/* --- Privacy Section --- */
.privacy-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.privacy-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.privacy-visual {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium),
                0 0 40px rgba(89, 0, 255, 0.1);
    border: 1px solid var(--border-glass);
}

.privacy-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.privacy-visual:hover .privacy-banner-img {
    transform: scale(1.02);
}

.privacy-content .section-title {
    margin-bottom: 20px;
}

.privacy-content .section-desc {
    margin-bottom: 40px;
    text-align: left;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 191, 255, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.benefit-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* --- Access Model Section --- */
.access-section {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.access-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    min-height: 400px;
}

.access-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-badge {
    align-self: flex-start;
    padding: 6px 12px;
    background: var(--accent-pink-glow);
    border: 1px solid rgba(255, 0, 127, 0.3);
    color: #fda4af;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.access-content h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 16px;
}

.access-content p {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 580px;
}

.access-steps {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--accent-pink);
    color: var(--text-white);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.step-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.step-card p {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--text-muted);
}

.step-arrow {
    font-size: 20px;
    color: var(--border-glass-hover);
}

.access-image-box {
    position: relative;
    border-left: 1px solid var(--border-glass);
}

.access-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
}

.faq-accordion {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-weight: 600;
    font-size: 17px;
    gap: 20px;
    transition: var(--transition-smooth);
}

.faq-trigger i {
    font-size: 22px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-content {
    padding: 0 24px 24px 24px;
}

.faq-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* --- Download Section --- */
.download-section {
    padding: 60px 0 100px 0;
    background: var(--bg-dark);
}

.download-card {
    position: relative;
    background: linear-gradient(135deg, #18153d 0%, #0c091f 100%);
    border: 1px solid var(--border-glass-hover);
    border-radius: var(--border-radius-lg);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.download-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, rgba(0, 191, 255, 0) 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.download-content p {
    font-size: 17px;
    margin-bottom: 40px;
}

.download-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.download-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.download-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.download-info i {
    color: var(--accent);
}

/* --- Footer --- */
.main-footer {
    background: #05040b;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.83fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 38px;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group ul a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links-group ul a:hover {
    color: var(--text-white);
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
}

/* --- Scroll Animation Reveals --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Animations --- */
@keyframes floatPhone {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .features-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-mockup-container {
        order: -1;
    }

    .access-card {
        grid-template-columns: 1fr;
    }

    .access-image-box {
        border-left: none;
        border-top: 1px solid var(--border-glass);
        height: 300px;
    }
}

@media (max-width: 900px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(9, 8, 22, 0.98);
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
        backdrop-filter: blur(15px);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-actions .nav-btn {
        display: none; /* Hide primary download btn on nav for mobile, keep in burger */
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .access-content {
        padding: 40px 24px;
    }

    .access-steps {
        flex-direction: column;
        gap: 24px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .download-card {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .hero-metrics .divider {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .download-actions {
        flex-direction: column;
    }
    
    .download-actions .btn {
        width: 100%;
    }

    .download-info {
        flex-direction: column;
        gap: 12px;
    }
}
