/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0a0a0f;
    color: #ccc;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.cyan { color: #00e5ff; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-icon { width: 40px; height: 40px; border-radius: 10px; }
.nav-title { font-weight: 800; font-size: 16px; letter-spacing: 2px; color: #fff; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5);
    transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active { color: #00e5ff; }
.nav-cta {
    font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    color: #0a0a0f; background: #00e5ff;
    padding: 10px 24px; border-radius: 50px; transition: all 0.2s;
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,229,255,0.3); }

/* ===== HERO ===== */
.hero {
    position: relative; padding: 160px 32px 0; text-align: center;
    min-height: 100vh; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,15,0.4) 0%,
        rgba(10,10,15,0.6) 30%,
        rgba(10,10,15,0.85) 60%,
        rgba(10,10,15,1) 85%
    );
}
.hero-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.hero-app-icon {
    width: 72px; height: 72px; border-radius: 18px; margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(0,229,255,0.2);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 20px; border-radius: 50px; margin-bottom: 32px;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #00e5ff;
    box-shadow: 0 0 8px #00e5ff;
}
.hero h1 {
    font-size: clamp(36px, 6vw, 64px); font-weight: 900; color: #fff;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;
}
.hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.5); max-width: 580px;
    margin: 0 auto 36px; line-height: 1.7;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 15px; color: #0a0a0f; background: #00e5ff;
    padding: 14px 32px; border-radius: 50px; transition: all 0.25s;
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,229,255,0.3); }
.btn-primary svg { width: 18px; height: 18px; }

/* ===== PHONE MOCKUPS ===== */
.phones {
    display: flex; justify-content: center; align-items: flex-end;
    gap: 0; margin-top: 64px; padding-bottom: 0; position: relative;
}
.phone-frame {
    background: #1a1a24; border-radius: 32px; padding: 8px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
    overflow: hidden;
}
.phone-frame img { border-radius: 24px; width: 100%; display: block; }
.phone-center .phone-frame { width: 280px; }
.phone-left, .phone-right { transform: perspective(1200px); }
.phone-left .phone-frame {
    width: 240px; transform: rotateY(12deg) translateX(30px) translateY(40px);
    opacity: 0.85;
}
.phone-right .phone-frame {
    width: 240px; transform: rotateY(-12deg) translateX(-30px) translateY(40px);
    opacity: 0.85;
}

/* ===== STATS BAR ===== */
.stats-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02); padding: 40px 32px;
}
.stats-inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 900; color: #00e5ff; }
.stat-label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* ===== ABOUT / WHAT IS MILMAXXING ===== */
.about {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,229,255,0.015);
}
.about-inner {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center;
}
.about-title {
    font-size: clamp(36px, 5vw, 56px); font-weight: 900; color: #fff;
    letter-spacing: 3px; margin-bottom: 8px; line-height: 1;
}
.about-def {
    font-size: 16px; color: rgba(255,255,255,0.4); font-style: italic;
    margin-bottom: 24px;
}
.about-pos {
    font-style: normal; font-weight: 700; color: #00e5ff;
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(0,229,255,0.1); padding: 2px 10px; border-radius: 50px;
    margin-left: 8px;
}
.about-desc {
    font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8;
    margin-bottom: 16px;
}
.about-visual {
    position: relative; text-align: center;
}
.about-img {
    width: 100%; max-width: 400px; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.about-tagline {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    font-size: 28px; font-weight: 900; color: #fff; letter-spacing: 3px;
    line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* ===== SECTIONS ===== */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 3px; color: #00e5ff;
    text-align: center; margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: #fff;
    text-align: center; margin-bottom: 64px; line-height: 1.15;
}

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.feature-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; margin-bottom: 100px;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-img img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.feature-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #00e5ff;
    display: block; margin-bottom: 12px;
}
.feature-text h3 {
    font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: #fff;
    line-height: 1.1; margin-bottom: 16px;
}
.feature-text p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.7; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
    font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #00e5ff;
    background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.15);
    padding: 6px 14px; border-radius: 50px;
}

/* ===== ALL TOOLS ===== */
.all-tools {
    padding: 100px 0; background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 28px; transition: all 0.25s;
}
.tool-card:hover { background: rgba(0,229,255,0.04); border-color: rgba(0,229,255,0.15); transform: translateY(-4px); }
.tool-icon { font-size: 24px; margin-bottom: 12px; }
.tool-card h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.tool-card li {
    font-size: 13px; color: rgba(255,255,255,0.45); padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tool-card li:last-child { border-bottom: none; }

/* ===== DOWNLOAD (centered) ===== */
.download {
    padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.download-centered {
    text-align: center; max-width: 640px; margin: 0 auto;
}
.download-icon {
    width: 88px; height: 88px; border-radius: 22px; margin: 0 auto 20px;
    box-shadow: 0 8px 40px rgba(0,229,255,0.15);
}
.download h2 { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: 3px; margin-bottom: 4px; }
.download-by { font-size: 13px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.download-desc { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 24px; line-height: 1.7; }
.download-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; justify-content: center; }
.pill-sm {
    font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #00e5ff;
    border: 1px solid rgba(0,229,255,0.25); padding: 5px 14px; border-radius: 50px;
}
.download-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; justify-content: center; }
.download-specs span {
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 50px;
}
.store-badges {
    display: flex; justify-content: center; align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 8px;
}
.appstore-link { display: inline-block; transition: transform 0.2s; }
.appstore-link:hover { transform: scale(1.05); }
.appstore-link img { height: 52px; }
.download-price { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* ===== FEEDBACK & SUPPORT ===== */
.support {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.support-desc {
    font-size: 16px; color: rgba(255,255,255,0.5); text-align: center;
    max-width: 600px; margin: -40px auto 48px; line-height: 1.7;
}
.support-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.support-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 32px; text-align: center;
    transition: all 0.25s; cursor: pointer;
}
.support-card:hover {
    background: rgba(0,229,255,0.04); border-color: rgba(0,229,255,0.2);
    transform: translateY(-4px);
}
.support-icon { font-size: 32px; margin-bottom: 16px; }
.support-card h4 {
    font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.support-card p {
    font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6;
}

/* ===== FOOTER (all centered) ===== */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 0 32px; }
.footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer-brand-centered {
    display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 28px;
}
.footer-logo { width: 52px; height: 52px; border-radius: 12px; }
.footer-name { font-weight: 800; font-size: 16px; letter-spacing: 2px; color: #fff; }
.footer-llc { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }
.footer-social-section { margin-bottom: 28px; }
.footer-social-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}
.footer-socials { display: flex; gap: 20px; align-items: center; justify-content: center; }
.social-icon {
    height: 32px; width: auto; opacity: 0.55; transition: all 0.2s; border-radius: 4px;
    object-fit: contain;
}
.social-icon:hover { opacity: 1; transform: translateY(-2px); }
.social-svg {
    width: 32px; height: 32px; color: #ccc; opacity: 0.55; transition: all 0.2s;
}
.social-svg:hover { opacity: 1; transform: translateY(-2px); }
.footer-links { display: flex; gap: 24px; margin-bottom: 20px; justify-content: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: #00e5ff; }
.footer-disclaimer {
    font-size: 11px; color: rgba(255,255,255,0.18); max-width: 700px;
    line-height: 1.6; margin-bottom: 12px; text-align: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.15); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .feature-block { grid-template-columns: 1fr; gap: 40px; }
    .feature-block.reverse { direction: ltr; }
    .about-inner { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .about-img { max-width: 300px; margin: 0 auto; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .support-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .download-centered { padding: 0 16px; }
    .stats-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .stat-divider { display: none; }
    .phone-left, .phone-right { display: none; }
    .phone-center .phone-frame { width: 260px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 120px; }
    .footer-links { flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .tools-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .phone-center .phone-frame { width: 220px; }
    .phone-solo .phone-frame { width: 240px; }
}
