:root {
    --site-accent: #c0392b;
    --site-text: #222;
    --site-muted: #666;
    --site-border: #e5e5e5;
    --site-bg: #fff;
    --site-bg-alt: #f7f6f4;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--site-text);
    background: var(--site-bg);
    line-height: 1.5;
}

.site-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 20px;
}

h1, h2, h3 { line-height: 1.2; }

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    border: 1px solid var(--site-border);
    background: #fff;
    color: var(--site-text);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}
.btn--accent { background: var(--site-accent); border-color: var(--site-accent); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 1.1em; }
.icon-inline { width: 20px; height: 20px; vertical-align: middle; margin-right: 6px; }

.site-header {
    border-bottom: 1px solid var(--site-border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
.site-header__row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
}
.site-brand { font-weight: 700; flex: 1; }
.site-header__phone { color: var(--site-text); text-decoration: none; font-weight: 600; }

.hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.hero__inner { position: relative; padding: 96px 20px; text-align: center; }
.hero h1 { font-size: 2.2em; margin-bottom: 16px; }
.hero p { font-size: 1.15em; max-width: 640px; margin: 0 auto 28px; }

.band { text-align: center; background: var(--site-bg-alt); max-width: none; }

.form-section { text-align: center; }
.trial-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 24px auto 0; }
.trial-form input, .trial-form textarea {
    padding: 12px; border: 1px solid var(--site-border); border-radius: 6px; font-size: 1em;
}
.form-note { font-size: 0.85em; color: var(--site-muted); }

.founder__row { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.founder__photo { width: 220px; border-radius: 12px; object-fit: cover; }

.media-mentions__grid, .testimonials__grid, .pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.media-mentions__grid img { width: 100%; border-radius: 50%; aspect-ratio: 1; object-fit: cover; }

.testimonials__grid blockquote { margin: 0; padding: 20px; background: var(--site-bg-alt); border-radius: 10px; }
.testimonials__grid footer { margin-top: 12px; font-weight: 600; color: var(--site-muted); }

.pricing__card {
    border: 1px solid var(--site-border);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
}
.pricing__subtitle, .pricing__duration { color: var(--site-muted); margin: 4px 0; }
.pricing__price { font-size: 1.4em; font-weight: 700; margin: 12px 0; }

.payment-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.payment-form input { padding: 12px; border: 1px solid var(--site-border); border-radius: 6px; }

.faq__item { border-bottom: 1px solid var(--site-border); padding: 16px 0; }
.faq__item summary { cursor: pointer; font-weight: 600; }

.contacts ul { padding-left: 20px; }

.site-footer { background: var(--site-bg-alt); text-align: center; color: var(--site-muted); font-size: 0.9em; }
.site-footer a { color: inherit; }

.site-messages { position: sticky; top: 0; z-index: 20; }
.site-message { padding: 12px 20px; text-align: center; }
.site-message--success { background: #dff0d8; color: #3c763d; }
.site-message--error { background: #f2dede; color: #a94442; }

.empty { color: var(--site-muted); font-style: italic; }

@media (prefers-color-scheme: dark) {
    :root {
        --site-text: #eee;
        --site-bg: #1b1b1b;
        --site-bg-alt: #262626;
        --site-border: #3a3a3a;
    }
    .btn { background: #2a2a2a; color: #eee; }
}
