* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #0E1117;
    --bg-card: #161922;
    --border: rgba(255,255,255,0.06);
    --text: #E8E4DD;
    --text-secondary: #9A9590;
    --text-muted: #5A5550;
    --accent: #C27C5A;
    --accent-light: rgba(194,124,90,0.12);
    --green: #7C9A82;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
}
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.7; }

.nav { text-align: center; padding: 1rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.nav a { text-decoration: none; color: #9A9A9A; margin: 0 0.75rem; }
.nav a:first-child { color: var(--text); font-weight: 600; margin-right: 1.5rem; }

.hero { max-width: 640px; margin: 0 auto; padding: 80px 2rem 0; text-align: center; }
.hero-badge {
    display: inline-block; background: var(--accent-light);
    color: var(--accent); font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1 { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 500; line-height: 1.2; margin-bottom: 1rem; }
.hero h1 em { color: var(--accent); font-style: italic; }
.hero p { font-size: 1rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }

.price-block { display: inline-flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem; }
.price { font-size: 2.5rem; font-weight: 600; color: var(--text); }
.price-note { font-size: 0.85rem; color: var(--text-muted); }

.btn-buy {
    display: inline-block; padding: 16px 40px;
    background: var(--accent); color: var(--bg);
    text-decoration: none; border-radius: 10px;
    font-weight: 600; font-size: 1rem; transition: opacity 0.2s;
}
.btn-buy:hover { opacity: 0.9; }
.guarantee { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

.content { max-width: 600px; margin: 0 auto; padding: 3rem 2rem; }

.section-title { font-family: var(--font-serif); font-size: 1.5rem; text-align: center; margin-bottom: 1.5rem; font-weight: 500; }

.what-inside { display: grid; gap: 1rem; margin-bottom: 3rem; }
.inside-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.5rem;
    display: flex; gap: 1rem; align-items: flex-start;
}
.inside-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.inside-item h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.25rem; font-weight: 500; }
.inside-item p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0; line-height: 1.5; }

.comparison {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 2rem; margin-bottom: 3rem;
}
.comparison table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.comparison th {
    text-align: left; padding: 8px 0; border-bottom: 1px solid var(--border);
    color: var(--text-muted); font-weight: 500; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.comparison td { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.comparison td:last-child { color: var(--accent); font-weight: 500; }

.bottom-cta {
    text-align: center; padding: 2.5rem;
    background: var(--accent-light); border: 1px solid rgba(194,124,90,0.12);
    border-radius: 14px; margin-bottom: 2rem;
}
.bottom-cta h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 500; }
.bottom-cta p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.25rem; }

.faq { margin-bottom: 3rem; }
.faq-item { margin-bottom: 1.25rem; }
.faq-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text); }
.faq-item p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0; line-height: 1.6; }

.footer {
    text-align: center; padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem; color: #737373; line-height: 1.8;
}
.footer a { color: #9A9A9A; text-decoration: none; margin: 0 0.5rem; }

@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .hero { padding-top: 60px; }
}

.social-proof {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 2rem 0 0;
    padding: 0.75rem 0;
    letter-spacing: 0.02em;
}
.social-proof strong { color: var(--text); font-weight: 600; }

.tool-preview { margin-bottom: 3rem; }
.tool-preview-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}
.tool-preview-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: transform 0.2s, border-color 0.2s;
}
.tool-preview-item:hover {
    transform: translateY(-2px);
    border-color: rgba(194,124,90,0.3);
}
.tool-preview-item img {
    width: 100%;
    height: auto;
    display: block;
}
.tool-preview-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .tool-preview-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.guarantee-block {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(124, 154, 130, 0.08);
    border: 1px solid rgba(124, 154, 130, 0.15);
}
.guarantee-block p {
    font-size: 0.85rem;
    color: var(--green);
    margin: 0;
    line-height: 1.6;
}
.guarantee-block strong { font-weight: 600; }

.value-summary {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.value-summary span {
    margin: 0 0.25rem;
    color: var(--text-muted);
}
