:root {
    --lvc-ink: #111615;
    --lvc-muted: #66736f;
    --lvc-line: #d9e2de;
    --lvc-accent: #008f7a;
    --lvc-bg: #f5f7f6;
    --lvc-surface: #ffffff;
    --lvc-amber: #b7791f;
    --lvc-radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(0, 143, 122, .08), rgba(0, 143, 122, 0) 220px),
        var(--lvc-bg);
    color: var(--lvc-ink);
}

a {
    color: var(--lvc-accent);
    font-weight: 850;
    text-decoration: none;
}

.public-shell {
    width: min(520px, calc(100% - 28px));
    margin: 0 auto;
    padding: 22px 0 28px;
}

.vcard {
    overflow: hidden;
    border: 1px solid var(--lvc-line);
    border-radius: 18px;
    background: var(--lvc-surface);
    box-shadow: 0 24px 70px rgba(17, 22, 21, .12);
}

.vcard-hero {
    padding: 24px 22px 18px;
    text-align: center;
}

.video-avatar {
    position: relative;
    display: grid;
    width: 104px;
    height: 104px;
    margin: 0 auto 16px;
    place-items: center;
    border: 3px solid rgba(0, 143, 122, .22);
    border-radius: 50%;
    background: var(--lvc-accent);
    color: #fff;
    font-size: 42px;
    font-weight: 950;
    background-position: center;
    background-size: cover;
}

.video-avatar::after {
    position: absolute;
    right: 2px;
    bottom: 4px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #111615;
    color: #fff;
    content: "▶";
    font-size: 11px;
    line-height: 1;
}

.video-avatar.has-media {
    color: transparent;
}

.payment-avatar::after {
    content: none;
}

.vcard h1 {
    margin: 0;
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: 0;
}

.vcard-hero p {
    margin: 12px 0 0;
    color: var(--lvc-muted);
    line-height: 1.55;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.social-link,
.primary-cta,
.secondary-cta {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--lvc-radius);
    font-weight: 900;
}

.social-link {
    border: 1px solid var(--lvc-line);
    background: #fbfcfc;
    color: var(--lvc-ink);
    font-size: 13px;
}

.primary-cta {
    margin-top: 14px;
    border: 1px solid var(--lvc-ink);
    background: var(--lvc-ink);
    color: #fff;
}

.vcard-section {
    padding: 16px 18px;
    border-top: 1px solid var(--lvc-line);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 950;
}

.service-card {
    display: grid;
    gap: 9px;
    border: 1px solid var(--lvc-line);
    border-radius: var(--lvc-radius);
    padding: 14px;
    background: #fbfcfc;
}

.service-card strong {
    display: block;
}

.service-card p {
    margin: 0;
    color: var(--lvc-muted);
    line-height: 1.5;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price {
    color: var(--lvc-amber);
    font-size: 22px;
    font-weight: 950;
}

.secondary-cta {
    border: 1px solid var(--lvc-line);
    background: #fff;
    color: var(--lvc-ink);
}

.payment-form {
    margin-top: 10px;
}

.payment-form:first-of-type {
    margin-top: 0;
}

.payment-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.payment-head .price {
    white-space: nowrap;
}

.payment-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: var(--lvc-muted);
    font-size: 13px;
    line-height: 1.35;
}

.payment-consent input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    accent-color: var(--lvc-accent);
}

.pay-button {
    min-height: 44px;
    border: 1px solid var(--lvc-accent);
    border-radius: var(--lvc-radius);
    background: var(--lvc-accent);
    color: #fff;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.pay-button:disabled {
    border-color: var(--lvc-line);
    background: #d9e2de;
    color: var(--lvc-muted);
    cursor: not-allowed;
}

.payment-status {
    margin: 0;
    color: var(--lvc-muted);
    font-size: 13px;
    line-height: 1.45;
}

.lead-form {
    display: grid;
    gap: 10px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--lvc-line);
    border-radius: var(--lvc-radius);
    padding: 0 12px;
    background: #fff;
    color: var(--lvc-ink);
    font: inherit;
}

.lead-form textarea {
    min-height: 86px;
    padding-top: 10px;
    resize: vertical;
}

.lead-form label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: var(--lvc-muted);
    font-size: 13px;
    line-height: 1.35;
}

.lead-form input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    margin-top: 1px;
}

.lead-form button {
    min-height: 46px;
    border: 1px solid var(--lvc-accent);
    border-radius: var(--lvc-radius);
    background: var(--lvc-accent);
    color: #fff;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.form-status {
    margin: 0;
    color: var(--lvc-muted);
    font-size: 13px;
    line-height: 1.45;
}

.faq-item {
    padding: 12px 0;
    border-top: 1px solid var(--lvc-line);
}

.faq-item:first-of-type {
    border-top: 0;
}

.faq-item p {
    margin: 6px 0 0;
    color: var(--lvc-muted);
}

.public-image {
    display: block;
    width: 100%;
    border: 1px solid var(--lvc-line);
    border-radius: var(--lvc-radius);
    object-fit: cover;
}

.public-video {
    display: block;
    width: 100%;
    border: 1px solid var(--lvc-line);
    border-radius: var(--lvc-radius);
    background: #000;
}

.public-footer {
    margin-top: 16px;
    color: var(--lvc-muted);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 420px) {
    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vcard h1 {
        font-size: 28px;
    }
}
