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

:root {
    color-scheme: dark;
    --bg: #07090b;
    --bg-soft: #0d1115;
    --surface: rgba(255,255,255,0.055);
    --surface-strong: rgba(255,255,255,0.082);
    --line: rgba(203,174,105,0.18);
    --line-soft: rgba(255,255,255,0.10);
    --gold: #c9ad68;
    --gold-bright: #ead390;
    --red: #8a3338;
    --copper: #b85c3d;
    --green: #3f7857;
    --blue: #456e8f;
    --violet: #6f5a8b;
    --text: #f7f2e8;
    --muted: #a7a7ad;
    --quiet: #74777d;
    --radius: 18px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background:
        linear-gradient(180deg, rgba(7,9,11,0.86), var(--bg) 520px),
        repeating-linear-gradient(120deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 13px),
        #07090b;
    color: var(--text);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(201,173,104,0.13), transparent 26%, transparent 74%, rgba(138,51,56,0.10)),
        repeating-linear-gradient(96deg, transparent 0 86px, rgba(201,173,104,0.035) 87px, transparent 89px);
    opacity: 0.62;
}

body > * { position: relative; z-index: 1; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-nav {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 32px));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201,173,104,0.14);
    border: 1px solid var(--line);
    color: var(--gold-bright);
}

.nav-links,
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a,
.lang-switch a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 999px;
}

.nav-links a:hover,
.lang-switch a:hover,
.lang-switch a.active {
    color: var(--text);
    background: rgba(255,255,255,0.075);
    text-decoration: none;
}

.hero {
    min-height: 88vh;
    display: grid;
    align-items: end;
    padding: 116px 24px 54px;
    background: linear-gradient(180deg, rgba(7,9,11,0.92), var(--bg) 96%);
    border-bottom: 1px solid var(--line);
}

.hero-inner,
.section,
.container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.hero-copy {
    max-width: 690px;
    padding-bottom: 5vh;
}

.eyebrow {
    color: var(--gold-bright);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

h1 {
    color: #fff;
    font-size: clamp(3.1rem, 9vw, 6.3rem);
    line-height: 0.96;
    letter-spacing: 0;
    margin-bottom: 18px;
}

h2 {
    color: #fff;
    font-size: clamp(1.65rem, 4.5vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 12px;
}

h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

p {
    line-height: 1.62;
    color: var(--muted);
    font-size: 0.98rem;
}

.subtitle {
    color: var(--gold-bright);
    font-size: clamp(1.1rem, 3vw, 1.45rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.description {
    max-width: 620px;
    color: #c8c8ce;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
}

.button.primary {
    color: #090b0d;
    background: var(--gold);
}

.button.secondary {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255,255,255,0.06);
}

.button:hover { text-decoration: none; transform: translateY(-1px); }

.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1120px, calc(100% - 32px));
    margin: -32px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 18px 50px rgba(0,0,0,0.34);
}

.fact {
    background: rgba(13,17,21,0.94);
    padding: 20px;
}

.fact strong {
    display: block;
    color: var(--gold-bright);
    font-size: 1.35rem;
    margin-bottom: 3px;
}

.fact span {
    color: var(--muted);
    font-size: 0.86rem;
}

.section {
    padding: 72px 24px 0;
}

.section-head {
    max-width: 680px;
    margin-bottom: 28px;
}

.section-head p { font-size: 1.02rem; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.feature,
.faq,
.content-card,
.pricing {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 18px;
}

.feature {
    min-height: 164px;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--gold-bright);
    background: rgba(201,173,104,0.12);
    border: 1px solid var(--line);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.feature:nth-child(3n+2) .feature-icon { color: #e18d65; background: rgba(184,92,61,0.14); border-color: rgba(184,92,61,0.24); }
.feature:nth-child(3n) .feature-icon { color: #8fb6c1; background: rgba(69,110,143,0.16); border-color: rgba(69,110,143,0.26); }

.feature p { font-size: 0.88rem; color: #a6a6ad; }

.showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.phone {
    overflow: hidden;
    border-radius: 28px;
    background: #020304;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 22px 54px rgba(0,0,0,0.42);
}

.phone img,
.web-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.phone-caption {
    padding: 14px 16px 16px;
    background: rgba(255,255,255,0.045);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.phone-caption strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.phone-caption span {
    color: var(--muted);
    font-size: 0.86rem;
}

.premium-band {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: center;
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(201,173,104,0.16), rgba(255,255,255,0.052)),
        var(--bg-soft);
    border: 1px solid var(--line);
}

.premium-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.premium-list span {
    color: #ded5bd;
    font-size: 0.95rem;
}

.premium-list span::before {
    content: "✦";
    color: var(--gold-bright);
    margin-right: 10px;
}

.price-panel {
    padding: 20px;
    border-radius: 18px;
    background: rgba(0,0,0,0.24);
    border: 1px solid var(--line);
}

.price-title {
    color: var(--gold-bright);
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-copy {
    color: #c7c2b5;
    font-size: 0.92rem;
    margin-top: 8px;
}

.price-amount {
    display: block;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 950;
    margin-top: 8px;
}

.live-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: center;
}

.web-preview {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #050607;
}

.links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.links a {
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 999px;
}

.links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
    text-decoration: none;
}

.footer {
    width: min(1120px, calc(100% - 48px));
    margin: 64px auto 0;
    padding: 28px 0 38px;
    border-top: 1px solid var(--line-soft);
    text-align: center;
    color: var(--quiet);
    font-size: 0.78rem;
    line-height: 1.5;
}

.footer p {
    color: var(--quiet);
    font-size: 0.78rem;
}

.footer a { color: #8d8f94; }

.container {
    padding: 116px 24px 40px;
    max-width: 760px;
}

.container h1 {
    text-align: center;
    font-size: clamp(2.2rem, 8vw, 3.9rem);
    margin-bottom: 28px;
}

.container h2 {
    font-size: 1.15rem;
    color: var(--gold-bright);
    margin: 30px 0 10px;
}

.back {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 800;
}

.faq {
    margin-bottom: 12px;
}

.faq strong {
    color: var(--text);
    display: block;
    margin-bottom: 6px;
}

.faq p { margin-bottom: 0; }

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    margin-top: 24px;
    border-radius: 999px;
    background: var(--gold);
    color: #080a0d;
    font-weight: 900;
}

.contact:hover { background: var(--gold-bright); text-decoration: none; }

@media (max-width: 860px) {
    .site-nav {
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 74vh;
        padding-top: 104px;
        background: linear-gradient(180deg, rgba(7,9,11,0.90), var(--bg) 96%);
        align-items: end;
    }

    .hero-copy {
        padding-bottom: 0;
    }

    .quick-facts,
    .feature-grid,
    .showcase,
    .premium-band,
    .live-layout {
        grid-template-columns: 1fr;
    }

    .quick-facts {
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        border-left: 0;
        border-right: 0;
    }
}

@media (max-width: 520px) {
    .site-nav { top: 12px; width: calc(100% - 24px); }
    .brand span:last-child { display: none; }
    .hero { padding-left: 18px; padding-right: 18px; }
    h1 { font-size: clamp(2.9rem, 16vw, 4rem); }
    .section { padding: 54px 18px 0; }
    .cta-row .button { width: 100%; }
    .premium-band { padding: 20px; }
    .container { padding-left: 18px; padding-right: 18px; }
}
