/* ========================================
   HYPIC APK - Design System
   Dark Theme | Mobile-First | SEO Optimized
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
    --primary: #000000;
    --secondary: #00D26A;
    --accent: #00B4D8;
    --bg: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --bg-elevated: #252525;
    --text: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dim: #888888;
    --border: #2A2A2A;
    --border-light: #333333;
    --success: #00D26A;
    --warning: #FFB800;
    --danger: #FF4757;
    --gradient-main: linear-gradient(135deg, #00D26A 0%, #00B4D8 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
    --gradient-hero: linear-gradient(160deg, #0a0a0a 0%, #111827 40%, #0D1117 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 210, 106, 0.15);
    --shadow-accent: 0 0 30px rgba(0, 180, 216, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--accent); }

ul, ol { list-style: none; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }

strong { color: var(--text); font-weight: 600; }

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: var(--shadow-md);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
}
.logo:hover { color: var(--text); }
.logo em { font-style: normal; color: var(--secondary); }
.logo-icon { flex-shrink: 0; }

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    display: block;
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}
.main-nav a.active { color: var(--secondary); }

/* Dropdown */
.has-dropdown {
    position: relative;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: block;
}
.dropdown a:hover { background: rgba(255, 255, 255, 0.05); }

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--gradient-main);
    color: #000 !important;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ---- Hero Sections ---- */
.hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 210, 106, 0.12);
    border: 1px solid rgba(0, 210, 106, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}
.hero h1 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ---- Buttons ---- */
.btn-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 40px;
    background: var(--gradient-main);
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: btn-pulse 2.5s ease-in-out infinite;
}
.btn-download svg { fill: #000; }
.btn-download small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
}
.btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 210, 106, 0.3);
    color: #000;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(0, 210, 106, 0); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(0, 210, 106, 0.05);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
}

/* ---- Sections ---- */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--bg-card);
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    margin-bottom: 12px;
}
.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---- Quick Answer Box ---- */
.quick-answer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 30px 0;
}
.quick-answer h3 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- Key Takeaways ---- */
.key-takeaways {
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    border: 1px solid rgba(0, 210, 106, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 30px 0;
}
.key-takeaways h3 {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.key-takeaways ul { display: flex; flex-direction: column; gap: 12px; }
.key-takeaways li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    padding-left: 0;
}
.key-takeaways li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--gradient-main);
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    margin-top: 2px;
}

/* ---- Table of Contents ---- */
.toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 30px 0;
}
.toc h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text);
}
.toc ol {
    list-style: decimal;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toc li { color: var(--text-muted); font-size: 0.95rem; }
.toc a { color: var(--text-muted); }
.toc a:hover { color: var(--secondary); }

/* ---- App Info Card ---- */
.app-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
}
.app-info-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
}
.app-info-row:last-child { border-bottom: none; }
.app-info-row:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.app-info-label { font-weight: 600; color: var(--text); font-size: 0.9rem; }
.app-info-value { color: var(--text-muted); font-size: 0.9rem; }

/* ---- Trust Badges ---- */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}
.trust-badge svg { color: var(--secondary); flex-shrink: 0; }

/* ---- Comparison Tables ---- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.comparison-table thead th {
    background: var(--bg-elevated);
    padding: 16px 20px;
    font-weight: 700;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 2px solid var(--border);
}
.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.comparison-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.comparison-table tbody tr:hover { background: rgba(255, 255, 255, 0.04); }
.table-check { color: var(--secondary); font-weight: 700; }
.table-cross { color: var(--danger); }

/* ---- Feature Cards ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: rgba(0, 210, 106, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.feature-card-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-card-icon svg { fill: #000; width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- Steps / How To ---- */
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0;
}
.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}
.step:hover {
    border-color: rgba(0, 210, 106, 0.2);
}
.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
}
.step-content h3 { font-size: 1rem; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; margin: 0; }

/* ---- FAQ Accordion ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.active { border-color: rgba(0, 210, 106, 0.3); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-dim);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--secondary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 600px;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- Screenshot Gallery ---- */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 30px 0;
}
.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    aspect-ratio: 9/16;
    background: var(--bg-card);
}
.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}
.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Testimonial Cards ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.testimonial-stars { margin-bottom: 14px; }
.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}
.testimonial-author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
}
.testimonial-date {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ---- Star Rating ---- */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.star.filled { color: var(--warning); }
.star.half { color: var(--warning); opacity: 0.6; }
.star.empty { color: var(--text-dim); }
.rating-text {
    margin-left: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Author Bio ---- */
.author-bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 40px 0 20px;
}
.author-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(0, 210, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-info h4 { margin-bottom: 8px; font-size: 1rem; }
.author-info p { font-size: 0.88rem; margin: 0; }

/* ---- Breadcrumb ---- */
.breadcrumb {
    padding: 16px 0;
}
.content-area .breadcrumb ol,
.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.content-area .breadcrumb li,
.breadcrumb li { 
    font-size: 0.82rem; 
    color: var(--text-dim); 
    margin-bottom: 0;
}
.breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: var(--text-dim);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--secondary); }

/* ---- Content Styles ---- */
.content-area {
    max-width: 800px;
    margin: 0 auto;
}
.content-area h2 {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.content-area h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-area h3 { margin-top: 30px; }
.content-area ul, .content-area ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.content-area ul { list-style: disc; }
.content-area ol { list-style: decimal; }
.content-area li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.content-area blockquote {
    border-left: 3px solid var(--secondary);
    padding: 16px 24px;
    background: rgba(0, 210, 106, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}
.content-area blockquote p { margin: 0; font-style: italic; }

/* ---- Tip / Warning Boxes ---- */
.tip-box {
    background: rgba(0, 210, 106, 0.06);
    border: 1px solid rgba(0, 210, 106, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}
.tip-box h4 { color: var(--secondary); font-size: 0.9rem; margin-bottom: 8px; }
.tip-box p { margin: 0; font-size: 0.9rem; }

.warning-box {
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}
.warning-box h4 { color: var(--warning); font-size: 0.9rem; margin-bottom: 8px; }
.warning-box p { margin: 0; font-size: 0.9rem; }

/* ---- Floating Download (Mobile) ---- */
.floating-download {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 12px 20px;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    display: none;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.floating-download.visible { transform: translateY(0); }
.btn-float-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--gradient-main);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    text-align: center;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--primary);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.footer-logo:hover { color: var(--text); }
.footer-about p { font-size: 0.88rem; color: var(--text-muted); }
.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}
.footer-legal a { color: var(--text-muted); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--secondary); }
.copyright { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 8px; }
.disclaimer { font-size: 0.75rem; color: var(--text-dim); max-width: 700px; margin: 0 auto; line-height: 1.5; }

/* ---- Blog Cards ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.blog-card:hover {
    border-color: rgba(0, 210, 106, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.blog-card-image {
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 210, 106, 0.1);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--secondary); }
.blog-card p { font-size: 0.88rem; margin-bottom: 14px; }
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ---- Version Cards ---- */
.version-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.version-info h3 { font-size: 1rem; margin-bottom: 4px; }
.version-info p { font-size: 0.85rem; margin: 0; }

/* ---- Download Page ---- */
.download-hero {
    text-align: center;
    padding: 60px 0;
}
.download-countdown {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 20px 0;
}

/* ---- Counter Animation ---- */
.counter-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 40px 0;
    text-align: center;
}
.counter-item h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.counter-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---- Scroll Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Two Column Layout ---- */
.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card h4 { margin-bottom: 14px; font-size: 0.95rem; }

/* ---- Contact Form ---- */
.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 210, 106, 0.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--gradient-main);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    
    /* Mobile Nav */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-card);
        border-left: 1px solid var(--border);
        padding: 80px 24px 30px;
        z-index: 999;
        transition: right var(--transition);
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav a {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        background: rgba(255,255,255,0.02);
        padding: 0;
        border-radius: 0;
    }
    .dropdown a { padding-left: 32px; }
    
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }
    
    /* Mobile Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Floating Download */
    .floating-download { display: block; }
    body { padding-bottom: 70px; }
    
    /* Tables */
    .comparison-table { font-size: 0.82rem; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 10px 12px; }
    
    /* Feature Cards */
    .features-grid { grid-template-columns: 1fr; }
    
    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
    
    /* Author Bio */
    .author-bio { flex-direction: column; align-items: center; text-align: center; }
    
    /* Screenshot Gallery */
    .screenshot-gallery { grid-template-columns: repeat(2, 1fr); }
    
    /* Counter */
    .counter-section { grid-template-columns: repeat(2, 1fr); }
    
    /* Step */
    .step { flex-direction: column; }
    
    /* Version Card */
    .version-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-download, .btn-secondary { width: 100%; justify-content: center; }
    .trust-badges { justify-content: center; }
    .screenshot-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .counter-section { grid-template-columns: 1fr 1fr; }
}

/* ---- Blog Section ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(0, 210, 106, 0.4);
}
.blog-card-image-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-elevated);
}
.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.blog-card:hover .blog-card-image {
    transform: scale(1.08);
}
.blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-date {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
}
.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
    line-height: 1.4;
}
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--secondary); }
.blog-card-excerpt {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex: 1;
}
.blog-card-link {
    font-weight: 700;
    font-size: 0.95rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- Print ---- */
@media print {
    .site-header, .site-footer, .floating-download, .btn-download { display: none; }
    body { background: #fff; color: #000; }
    a { color: #000; }
}
