/* clinic-visibility-check.css – Marketing landing page style */

:root {
    --cvc-primary: #0d6efd;
    --cvc-dark: #1a1a2e;
    --cvc-light-bg: #f0f4ff;
}

.cvc-hero {
    background: linear-gradient(135deg, var(--cvc-dark) 0%, #16213e 60%, #0f3460 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
}

.cvc-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.cvc-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #afc6ff;
}

.cvc-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cvc-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 580px;
    margin: 0 auto;
}

/* Form section */
.cvc-form-section {
    background: var(--cvc-light-bg);
    padding: 3rem 0 4rem;
}

.cvc-form-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin-top: -2rem;
}

.cvc-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #343a40;
    margin-bottom: 0.4rem;
    display: block;
}

.cvc-input {
    border-radius: 0.6rem;
    border: 1.5px solid #dee2e6;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.cvc-input:focus {
    border-color: var(--cvc-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.cvc-field {
    display: flex;
    flex-direction: column;
}

.cvc-consent-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.cvc-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--cvc-primary), #0056e0);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s, transform 0.15s;
}

.cvc-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.cvc-submit-arrow {
    font-size: 1.2rem;
    margin-left: 0.25rem;
}

/* Trust */
.cvc-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.cvc-trust-item {
    font-size: 0.82rem;
    color: #495057;
    background: rgba(255,255,255,0.8);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #dee2e6;
}

/* Footer */
.cvc-footer {
    background: var(--cvc-dark);
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: 0.85rem;
}

.cvc-footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.cvc-footer a:hover {
    color: #fff;
}
