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

:root {
    --bg: #0b1020;
    --bg-2: #0f172a;
    --card: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.10);
    --text: #f8fafc;
    --muted: #94a3b8;
    --primary: #e2b84a;
    --primary-dark: #c99d2d;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --max: 1200px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(226, 184, 74, 0.10), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.section-text {
    color: var(--muted);
    font-size: 17px;
    max-width: 760px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(226, 184, 74, 0.12);
    border: 1px solid rgba(226, 184, 74, 0.20);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(180deg, #f1cf72 0%, var(--primary) 100%);
    color: #161616;
    box-shadow: 0 12px 28px rgba(226, 184, 74, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(11, 16, 32, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f2d173 0%, var(--primary) 100%);
    color: #111;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(226, 184, 74, 0.24);
}

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

.nav a {
    color: #dbe2ea;
    font-size: 15px;
}

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

.hero {
    padding: 72px 0 48px;
}

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

.hero-title {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    max-width: 780px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    color: var(--muted);
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 28px;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-point {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7dde5;
    font-size: 14px;
}

.hero-visual {
    position: relative;
}

.device {
    position: relative;
    width: min(100%, 420px);
    margin-left: auto;
    border-radius: 34px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.device-screen {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.mock-image {
    width: 100%;
    height: 720px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.18)),
        url('https://looklink.shop/assets/img/hero/look-1.png') center/cover no-repeat;
}

.mock-hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2d173 0%, var(--primary) 100%);
    color: #111;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,0.95);
    box-shadow: 0 12px 28px rgba(226, 184, 74, 0.28);
    animation: pulse 2.4s infinite;
    cursor: pointer;
    z-index: 3;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mock-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 14px 32px rgba(226, 184, 74, 0.36);
}

.mock-card {
    position: absolute;
    top: 18%;
    left: 10%;
    width: 250px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    overflow: hidden;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: .25s ease;
    pointer-events: none;
}

.mock-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mock-card-photo {
    width: 100%;
    height: 180px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.05);
}

.mock-card-body {
    position: relative;
    padding: 16px;
}

.mock-card-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.mock-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    padding-right: 36px;
}

.mock-card-text {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.mock-card-price {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(226,184,74,0.14);
    color: #ffe6a0;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 14px;
}

.mock-card-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f2d173 0%, var(--primary) 100%);
    color: #111;
    font-weight: 800;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.stat {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.stat h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat p {
    color: var(--muted);
    font-size: 14px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(226, 184, 74, 0.12);
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid rgba(226, 184, 74, 0.18);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.step {
    position: relative;
    padding: 28px 22px 24px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #f2d173 0%, var(--primary) 100%);
    color: #111;
    font-weight: 900;
    margin-bottom: 18px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 15px;
}

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

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.feature-item-bullet {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(226,184,74,0.16);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 17px;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--muted);
    font-size: 14px;
}

.showcase {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.22)),
        url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1200&q=80') center/cover;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.showcase-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15,23,42,0.82);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.showcase-panel {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(320px, calc(100% - 48px));
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.30);
}

.showcase-panel h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.showcase-panel p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 15px;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-tags span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #dde6ee;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.08);
}

.cta-box {
    text-align: center;
    padding: 56px 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(226,184,74,0.15), transparent 45%),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.cta-box .section-text {
    margin: 0 auto 24px;
}

.footer {
    padding: 34px 0 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer p,
.footer a {
    color: var(--muted);
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .device {
        margin: 0 auto;
    }

    .stats,
    .grid-4,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 720px) {
    .nav {
        display: none;
    }

    .hero {
        padding-top: 44px;
    }

    .stats,
    .grid-4,
    .steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .mock-image {
        min-height: 580px;
        height: 580px;
    }

    .mock-card {
        width: 220px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}



