:root {
    --bg: #fffaf6;
    --bg-soft: #fff2f8;
    --bg-soft-2: #f6f0ff;
    --surface: #ffffff;
    --surface-2: #fff8fc;
    --text: #3f3550;
    --muted: #7a6f8d;
    --accent: #8f79d9;
    --accent-dark: #705bbb;
    --accent-soft: #efe8ff;
    --pink: #f7d8e8;
    --pink-dark: #d88bb0;
    --border: #eadff2;
    --shadow: 0 8px 24px rgba(143, 121, 217, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top, #fff8fc 0%, #fffaf6 45%, #fffaf6 100%);
    color: var(--text);
    margin: 0;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: rgba(255, 248, 252, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 16px 22px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-brand {
    margin-bottom: 12px;
}

.site-brand__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}

.site-brand__link:hover {
    text-decoration: none;
}

.site-brand__logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 2px solid #f1e4a6;
}

.site-brand__name {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.01em;
}

.main-nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    background: var(--accent-soft);
    border-color: #d8c9f5;
    text-decoration: none;
}

.content {
    max-width: 1020px;
    margin: 0 auto;
    padding: 34px 20px 56px;
}

.site-footer {
    text-align: center;
    padding: 24px;
    background: transparent;
    color: var(--muted);
    font-size: 0.95rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--pink-dark);
    margin-bottom: 10px;
    font-weight: bold;
}

.landing-hero,
.hero {
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 38px 26px;
    box-shadow: var(--shadow);
}

.landing-hero {
    text-align: center;
    margin-bottom: 28px;
}

.landing-hero__logo-wrap {
    margin-bottom: 18px;
}

.landing-hero__logo {
    width: 165px;
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(143, 121, 217, 0.16);
    border: 3px solid #f2e7a8;
    background: white;
}

.landing-hero__title,
.hero h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 2.15rem;
    line-height: 1.18;
    color: var(--text);
}

.landing-hero__text,
.hero-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.04rem;
    line-height: 1.7;
    color: var(--text);
}

.hero-actions,
.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 11px 18px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    box-shadow: 0 6px 16px rgba(143, 121, 217, 0.2);
    transition: transform 0.15s ease, background 0.2s ease;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    background: var(--accent-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-secondary:hover {
    background: #fbf6ff;
    color: var(--text);
}

.info-card,
.feature-card,
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.landing-card,
.feature-grid,
.content-section {
    margin-top: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-header h3 {
    margin: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.card h4,
.feature-card h3,
.info-card h3 {
    margin-top: 0;
    color: var(--text);
}

.card p,
.info-card p,
.feature-card p {
    line-height: 1.65;
    color: var(--text);
}

.meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 14px 0;
    color: var(--accent-dark);
}

.product-page .hero {
    margin-bottom: 20px;
}

.product-description {
    line-height: 1.7;
    font-size: 1rem;
}

.lead-form {
    margin-top: 20px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: var(--text);
}

.form-row input {
    width: 100%;
    max-width: 500px;
    padding: 11px 13px;
    border: 1px solid #d9cbe9;
    border-radius: 14px;
    font-size: 1rem;
    box-sizing: border-box;
    background: #fff;
    color: var(--text);
}

.form-row input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(143, 121, 217, 0.12);
}

.errorlist {
    color: #b34d71;
    margin: 6px 0 0;
    padding-left: 18px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 700px) {

    .landing-hero__title,
    .hero h2 {
        font-size: 1.75rem;
    }

    .content {
        padding: 24px 16px 42px;
    }

    .site-header {
        padding: 14px 16px;
    }

    .main-nav {
        gap: 10px;
    }
}

.logout-form {
    display: inline;
    margin: 0;
}

.nav-button {
    color: var(--text);
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
}

.nav-button:hover {
    background: var(--accent-soft);
    border-color: #d8c9f5;
}