﻿:root {
    --wvd-bg: #fbfaf7;
    --wvd-surface: rgba(255,255,255,0.82);
    --wvd-surface-strong: rgba(255,255,255,0.94);
    --wvd-border: rgba(224, 216, 204, 0.18);
    --wvd-text: #202532;
    --wvd-text-soft: #6d7686;
    --wvd-title: #1f2430;
    --wvd-primary: #a57c4d;
    --wvd-primary-deep: #835f35;
    --wvd-primary-soft: rgba(165,124,77,0.10);
    --wvd-danger: #d14f5b;
    --wvd-success: #1f9d67;
    --wvd-shadow-sm: 0 12px 32px rgba(74, 60, 42, 0.06);
    --wvd-shadow-md: 0 18px 48px rgba(74, 60, 42, 0.10);
    --wvd-shadow-lg: 0 28px 80px rgba(74, 60, 42, 0.14);
    --wvd-transition: 0.35s ease;
}

.wvd-container {
    width: 100%;
    max-width: none !important;
    padding-left: clamp(16px, 2vw, 32px);
    padding-right: clamp(16px, 2vw, 32px);
}

.wvd-hero {
    padding: 72px 0 34px;
    background: transparent;
}

.wvd-hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(248,250,255,.94) 100%);
    border: 1px solid rgba(165,124,77,.10);
    box-shadow: var(--wvd-shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.wvd-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: .22;
    pointer-events: none;
}

.wvd-orb-1 {
    width: 180px;
    height: 180px;
    right: 8%;
    top: 10%;
    background: radial-gradient(circle, rgba(79,124,255,.10), transparent 70%);
}

.wvd-orb-2 {
    width: 140px;
    height: 140px;
    left: 4%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(165,124,77,.16), transparent 70%);
}

.wvd-kicker,
.wvd-panel-kicker,
.wvd-review-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--wvd-primary-soft);
    color: var(--wvd-primary-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
}

.wvd-hero-title {
    margin: 18px 0;
    font-size: clamp(2.35rem, 4vw, 4.1rem);
    line-height: 1.02;
    font-weight: 900;
    color: var(--wvd-title);
    letter-spacing: -0.045em;
}

.wvd-hero-text,
.wvd-panel-main p,
.wvd-panel-card p,
.wvd-metric-card span,
.wvd-standard-card p,
.wvd-form-copy p,
.wvd-info-card span,
.wvd-form-note p,
.wvd-review-item span {
    margin: 0;
    font-size: .98rem;
    line-height: 1.84;
    color: var(--wvd-text-soft);
}

.wvd-hero-actions,
.wvd-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.wvd-btn-primary,
.wvd-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--wvd-transition);
}

.wvd-btn-primary {
    background: linear-gradient(135deg, #b48a56, #a2743f);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 14px 30px rgba(162,116,63,0.22);
}

    .wvd-btn-primary:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.wvd-btn-secondary {
    background: rgba(255,255,255,.92);
    color: var(--wvd-title);
    border: 1px solid rgba(18,32,51,.10);
}

    .wvd-btn-secondary:hover {
        color: var(--wvd-title);
        transform: translateY(-2px);
    }

.wvd-hero-metrics {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}

.wvd-metric-card,
.wvd-panel-main,
.wvd-panel-card,
.wvd-standard-card,
.wvd-info-card,
.wvd-form-card,
.wvd-review-box,
.wvd-consent-box {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: var(--wvd-shadow-sm);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.wvd-metric-card {
    padding: 18px;
    border-radius: 20px;
}

    .wvd-metric-card strong {
        display: block;
        margin-bottom: 6px;
        color: var(--wvd-title);
        font-size: 1rem;
        font-weight: 850;
    }

.wvd-panel-main,
.wvd-panel-card {
    border-radius: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.wvd-panel-main {
    padding: 24px;
}

    .wvd-panel-main h3 {
        margin: 14px 0 10px;
        color: var(--wvd-title);
        font-size: 1.42rem;
        line-height: 1.3;
        font-weight: 850;
    }

.wvd-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.wvd-panel-card,
.wvd-standard-card {
    padding: 20px;
}

    .wvd-panel-card i,
    .wvd-standard-card i,
    .wvd-info-card i {
        display: inline-flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: linear-gradient(135deg, #b48a56, #a2743f);
        color: #fff;
        font-size: 1rem;
        box-shadow: 0 10px 20px rgba(162,116,63,.18);
        margin-bottom: 14px;
    }

    .wvd-panel-card h4,
    .wvd-standard-card h3,
    .wvd-form-copy h2,
    .wvd-review-box h3 {
        color: var(--wvd-title);
        font-weight: 850;
    }

    .wvd-panel-card h4,
    .wvd-standard-card h3 {
        margin: 0 0 8px;
        font-size: 1rem;
    }

.wvd-section-head {
    margin-bottom: 24px;
}

    .wvd-section-head h2 {
        margin: 16px 0 12px;
        font-size: clamp(2rem, 3.2vw, 3.05rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
        font-weight: 900;
        color: var(--wvd-title);
    }

    .wvd-section-head p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.88;
        color: var(--wvd-text-soft);
    }

.wvd-standards-section {
    padding: 24px 0 34px;
}

.wvd-standard-card {
    height: 100%;
    border-radius: 24px;
    transition: transform .28s ease, box-shadow .28s ease;
}

    .wvd-standard-card:hover,
    .wvd-panel-main:hover,
    .wvd-panel-card:hover,
    .wvd-info-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--wvd-shadow-md);
    }

.wvd-form-section {
    padding: 8px 0 60px;
}

.wvd-form-copy h2 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.wvd-info-stack {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.wvd-info-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 20px;
}

    .wvd-info-card strong {
        display: block;
        margin-bottom: 4px;
        color: var(--wvd-title);
        font-size: .96rem;
        font-weight: 850;
    }

.wvd-form-card {
    padding: 26px;
    border-radius: 28px;
    box-shadow: var(--wvd-shadow-md);
}

.wvd-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.wvd-step-item {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(18,32,51,.08);
    background: rgba(255,255,255,.72);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--wvd-transition);
}

    .wvd-step-item span {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(159,122,80,.10);
        color: var(--wvd-primary-deep);
        font-weight: 800;
    }

    .wvd-step-item strong {
        color: var(--wvd-title);
        font-size: .95rem;
    }

    .wvd-step-item.is-active {
        background: linear-gradient(180deg, rgba(159,122,80,.12), rgba(159,122,80,.07));
        border-color: rgba(159,122,80,.18);
    }

.wvd-step-panel {
    display: none;
    animation: wvdFadeUp .35s ease;
}

    .wvd-step-panel.is-active {
        display: block;
    }

@keyframes wvdFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label {
    color: var(--wvd-title);
    font-weight: 800;
    margin-bottom: 8px;
}

.wvd-input {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(18,32,51,.10);
    background: rgba(255,255,255,.82);
    color: var(--wvd-title);
    box-shadow: none;
    transition: all .25s ease;
}

    .wvd-input:focus {
        border-color: rgba(165,124,77,.38);
        box-shadow: 0 0 0 4px rgba(165,124,77,.10);
    }

    .wvd-input.is-valid {
        border-color: rgba(31,157,103,.45);
        box-shadow: 0 0 0 4px rgba(31,157,103,.08);
    }

    .wvd-input.is-invalid {
        border-color: rgba(209,79,91,.45);
        box-shadow: 0 0 0 4px rgba(209,79,91,.08);
    }

.wvd-textarea {
    min-height: 160px;
    padding-top: 14px;
    resize: vertical;
}

.wvd-note {
    display: block;
    margin-top: 7px;
    color: var(--wvd-text-soft);
    font-size: .84rem;
}

.wvd-error {
    display: block;
    margin-top: 6px;
    color: var(--wvd-danger);
    font-size: .84rem;
    font-weight: 700;
    min-height: 18px;
}

.wvd-meta-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.wvd-review-box,
.wvd-consent-box {
    padding: 22px;
    border-radius: 24px;
}

.wvd-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.wvd-review-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(18,32,51,.08);
}

    .wvd-review-item strong {
        display: block;
        margin-bottom: 6px;
        color: var(--wvd-title);
        font-size: .88rem;
        font-weight: 850;
    }

.wvd-review-item-wide {
    grid-column: 1 / -1;
}

.wvd-consent-box {
    margin-top: 16px;
}

.wvd-consent-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--wvd-title);
    font-weight: 600;
}

    .wvd-consent-check input {
        margin-top: 4px;
    }

.wvd-form-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(18,32,51,.08);
}

.alert-success,
.alert-danger {
    border-radius: 18px;
    padding: 14px 18px;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(31,157,103,.10);
    border-color: rgba(31,157,103,.15);
    color: #146c43;
}

.alert-danger {
    background: rgba(209,79,91,.10);
    border-color: rgba(209,79,91,.15);
    color: #a61e2f;
}

@media (max-width: 991.98px) {
    .wvd-panel-grid,
    .wvd-hero-metrics,
    .wvd-review-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .wvd-hero-shell,
    .wvd-form-card {
        padding: 22px;
        border-radius: 24px;
    }

    .wvd-panel-grid,
    .wvd-hero-metrics,
    .wvd-review-grid,
    .wvd-stepper {
        grid-template-columns: 1fr;
    }

    .wvd-hero-actions,
    .wvd-step-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wvd-btn-primary,
    .wvd-btn-secondary {
        width: 100%;
    }

    .wvd-info-card {
        grid-template-columns: 1fr;
    }
}
