/* ============================================
   ALIX VINTAGE — HOMEPAGE
   Clean dark + crimson accent / sporty modern
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --bg: #0b0d11;
    --bg-card: rgba(18, 20, 28, 0.65);
    --ink: #cdd5e0;
    --ink-strong: #f0f2f5;
    --line: rgba(255, 255, 255, 0.06);
    --muted: #6b7a90;
    --accent: #e63946;
    --accent-soft: #ff6b6b;
    --accent-glow: rgba(230, 57, 70, 0.15);
    --surface: rgba(255, 255, 255, 0.03);
}

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

body {
    font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ---------- HEADER / NAV ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    background: rgba(11, 13, 17, 0.6);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
    position: relative;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 17px;
    flex-shrink: 0;
}
.logo-wrap img { width: 52px; height: 52px; object-fit: contain; }

nav { flex: 1; display: flex; justify-content: center; }
nav ul { list-style: none; display: flex; gap: 0; }
nav a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
nav a:hover, nav a.active { color: #fff; border-color: var(--accent); }

.nav-shop-link {
    font-size: 22px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; border-bottom: 0; padding: 6px 12px; line-height: 1;
}
.nav-shop-link:hover { border-bottom: 0; }

.nav-icons { display: flex; gap: 12px; font-size: 14px; align-items: center; flex-shrink: 0; }
.nav-contact-link {
    color: rgba(255,255,255,0.7); font-size: 12px; text-transform: uppercase;
    letter-spacing: 1px; padding: 6px 8px; transition: color 0.2s;
}
.nav-contact-link:hover { color: #fff; }

.nav-login-btn-link {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 18px; border: 1.5px solid var(--accent);
    border-radius: 8px; color: var(--accent); font-size: 11px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    background: transparent; transition: all 0.25s;
}
.nav-login-btn-link:hover {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-menu-toggle {
    display: none; border: 0; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); color: #fff; width: 44px; height: 44px;
    border-radius: 10px; align-items: center; justify-content: center;
    gap: 5px; flex-direction: column; cursor: pointer; padding: 0;
    transition: background 0.2s;
}
.nav-menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.nav-menu-toggle:hover { background: rgba(255,255,255,0.12); }
.nav-menu-panel { display: none; }

.nav-icon {
    width: 22px; height: 22px; fill: none; stroke: #fff;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    transition: transform 0.2s;
}
.nav-icon:hover { transform: translateY(-1px); }

/* ---------- MAIN ---------- */
main { padding-top: 0; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.35) contrast(1.1);
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg,
        rgba(11,13,17,0.92) 0%,
        rgba(11,13,17,0.6) 50%,
        rgba(11,13,17,0.3) 100%
    );
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 120px 32px 60px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: "Bebas Neue", "Manrope", sans-serif;
    font-size: clamp(48px, 8vw, 88px);
    line-height: 1.0;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    max-width: 520px;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 10px; background: var(--accent);
    color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; transition: all 0.25s;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
    background: #d62e3b;
}

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; background: transparent; transition: all 0.25s;
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex; gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: #fff; line-height: 1.1; }
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ---------- SECTION COMMON ---------- */
.section-tag {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}

.section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.section-header h2 {
    font-size: 32px; font-weight: 800; letter-spacing: -0.5px;
    color: var(--ink-strong); line-height: 1.1;
}

.see-all {
    font-size: 13px; font-weight: 700; color: var(--accent);
    letter-spacing: 0.5px; transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.8; }

/* ---------- SERVICES ---------- */
.services {
    max-width: 1200px; margin: 0 auto;
    padding: 80px 32px;
}
.services-header { margin-bottom: 40px; }
.services-header h2 {
    font-size: 32px; font-weight: 800; color: var(--ink-strong);
    letter-spacing: -0.5px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230,57,70,0.15);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.service-num {
    font-size: 40px; font-weight: 800; color: rgba(230,57,70,0.12);
    line-height: 1; margin-bottom: 16px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
}
.service-card h3 {
    font-size: 15px; font-weight: 800; color: var(--ink-strong);
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px;
    line-height: 1.4;
}
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- PRODUCTS ---------- */
.products-section {
    max-width: 1200px; margin: 0 auto;
    padding: 0 32px 80px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--line);
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(230,57,70,0.15);
}
.product-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #111318;
}
.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-info {
    padding: 18px 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.product-name {
    font-size: 14px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--ink-strong);
}
.product-cta {
    font-size: 12px; font-weight: 700; color: var(--accent);
    letter-spacing: 0.5px; white-space: nowrap;
    transition: opacity 0.2s;
}
.product-card:hover .product-cta { opacity: 0.8; }

/* ---------- FEEDBACK ---------- */
.feedback-showcase {
    max-width: 1200px; margin: 0 auto;
    padding: 0 32px 80px;
}
.feedback-header { margin-bottom: 32px; }
.feedback-intro {
    font-size: 14px; color: var(--muted);
    margin-top: 8px; max-width: 480px;
}
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feedback-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.feedback-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(230,57,70,0.1);
}
.feedback-card img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    background: #111318;
    transition: transform 0.5s;
}
.feedback-card:hover img { transform: scale(1.04); }

.feedback-copy { padding: 16px 20px; }
.feedback-tag {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 6px;
}
.feedback-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- PROCESS ---------- */
.process {
    max-width: 1200px; margin: 0 auto;
    padding: 0 32px 80px;
}
.process-header {
    text-align: center;
    margin-bottom: 48px;
}
.process-header h2 {
    font-size: 32px; font-weight: 800; color: var(--ink-strong);
    letter-spacing: -0.5px;
}
.process-header p { font-size: 14px; color: var(--muted); margin-top: 8px; }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process-step {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 20px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(230,57,70,0.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.step-number {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    margin: 0 auto 20px;
    border: 1px solid rgba(230,57,70,0.2);
}

.process-step h4 {
    font-size: 14px; font-weight: 800; color: var(--ink-strong);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- CTA ---------- */
.cta-section {
    max-width: 1200px; margin: 0 auto;
    padding: 60px 32px 80px;
    text-align: center;
    border-top: 1px solid var(--line);
}
.cta-section h2 {
    font-size: 36px; font-weight: 800; color: var(--ink-strong);
    margin-bottom: 12px; letter-spacing: -0.5px;
}
.cta-section p {
    font-size: 15px; color: var(--muted); margin-bottom: 32px;
    max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: #06070b;
    color: var(--muted);
    padding: 60px 32px 24px;
    
}
.site-footer .footer-wrap {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px;
}
.site-footer .footer-col h3,
.site-footer .footer-col h4 {
    margin-bottom: 12px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--ink-strong); font-size: 13px;
}
.site-footer .footer-col h3 { font-size: 16px; }
.site-footer .footer-col p {
    margin-bottom: 8px; font-size: 12px; line-height: 1.6; color: var(--muted);
}
.site-footer a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }

.site-footer .footer-bottom {
    max-width: 1200px; margin: 20px auto 0; padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; justify-content: space-between;
    gap: 8px 16px; font-size: 11px; color: var(--muted);
}

/* ---------- RESPONSIVE: TABLET ---------- */
@media (max-width: 960px) {
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .feedback-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .site-footer .footer-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    nav ul { display: none; }
}

/* ---------- RESPONSIVE: MOBILE ---------- */
@media (max-width: 640px) {
    header { padding: 0 16px; }
    .nav { height: 64px; gap: 10px; }
    .logo-wrap img { width: 44px; height: 44px; }
    .logo-wrap { font-size: 14px; letter-spacing: 1px; gap: 10px; }

    nav, .nav-icons { display: none !important; }
    .nav-menu-toggle { display: inline-flex; flex: 0 0 auto; }

    .nav-menu-panel {
        position: absolute; top: calc(100% + 8px); right: 0;
        width: min(260px, calc(100vw - 32px));
        display: grid; gap: 6px; padding: 12px;
        border-radius: 14px;
        background: rgba(14,16,22,0.97);
        border: 1px solid var(--line);
        box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        z-index: 90;
    }
    .nav-menu-panel a {
        display: flex; align-items: center; justify-content: center;
        min-height: 46px; border-radius: 10px; color: #fff;
        font-size: 12px; font-weight: 700; text-transform: uppercase;
        letter-spacing: 1px; background: rgba(255,255,255,0.04);
        transition: background 0.2s;
    }
    .nav-menu-panel a:hover { background: var(--accent-glow); color: var(--accent-soft); }

    main { padding-top: 0; }
    .hero { min-height: 100vh; }
    .hero-bg img {
        object-position: center 20%;
        filter: brightness(0.42) contrast(1.05);
    }
    .hero-overlay {
        background: linear-gradient(135deg,
            rgba(11, 13, 17, 0.9) 0%,
            rgba(11, 13, 17, 0.62) 55%,
            rgba(11, 13, 17, 0.35) 100%
        );
    }
    .hero-content { padding: 100px 20px 40px; }
    .hero-title { font-size: 44px; }
    .hero-subtitle { font-size: 14px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 14px 20px; }
    .hero-stats { flex-direction: column; gap: 16px; }

    .services, .products-section, .feedback-showcase, .process, .cta-section {
        padding-left: 16px; padding-right: 16px;
    }
    .services { padding-top: 48px; padding-bottom: 48px; }
    .products-section { padding-bottom: 48px; }
    .feedback-showcase { padding-bottom: 48px; }
    .process { padding-bottom: 48px; }

    .services-grid { gap: 14px; }
    .products-grid { grid-template-columns: 1fr; gap: 14px; }
    .feedback-grid { grid-template-columns: 1fr; gap: 14px; }
    .process-timeline { grid-template-columns: 1fr; gap: 14px; }

    .section-header h2 { font-size: 24px; }
    .process-header h2, .cta-section h2 { font-size: 26px; }

    .site-footer { padding: 28px 16px 18px; }
    .site-footer .footer-wrap { grid-template-columns: 1fr; gap: 24px; }
    .site-footer .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

@media (max-width: 480px) {
    header { padding: 0 12px; }
    .logo-wrap img { width: 40px; height: 40px; }
    .logo-wrap { font-size: 13px; }
    .hero-content { padding: 48px 14px 32px; }
    .hero-title { font-size: 36px; }
    .stat-num { font-size: 22px; }
}

/* ---------- UTILITY ---------- */
.is-hidden { display: none !important; }
