/* ========================================
   BIOGEN ÜROLOJİ - Premium Test UI
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors */
    --brand-primary: #2563EB;
    --brand-primary-dark: #1D4ED8;
    --brand-primary-light: #DBEAFE;
    --brand-accent: #06B6D4;
    --brand-accent-dark: #0891B2;
    --brand-success: #10B981;
    --brand-success-dark: #059669;
    --brand-gold: #F59E0B;
    --brand-danger: #EF4444;

    /* Neutrals */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --white: #FFFFFF;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(37,99,235,0.15);
    --shadow-glow-accent: 0 0 30px rgba(6,182,212,0.2);

    /* Font */
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ======== APP CONTAINER ======== */
.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ======== HEADER ======== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2744 100%);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border-radius: var(--radius-md);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.logo-icon svg { width: 22px; height: 22px; }

.logo-text {
    display: flex;
    flex-direction: column;
}

.clinic-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.clinic-department {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.2px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    color: #34D399;
}

.security-badge svg { width: 14px; height: 14px; }

/* ======== PROGRESS BAR ======== */
.progress-container {
    padding: 14px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.progress-percent {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.progress-bar {
    height: 6px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: var(--radius-full);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ======== MAIN CONTENT ======== */
.main-content {
    flex: 1;
    padding: 0 20px 20px;
}

/* ======== SCREEN ANIMATIONS ======== */
.screen {
    animation: screenIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes screenIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ======== HERO / WELCOME SCREEN ======== */
.hero-section {
    text-align: center;
    padding: var(--space-xl) 0 var(--space-lg);
}

.hero-visual {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto var(--space-xl);
}

.hero-visual-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--brand-primary);
    border-right-color: var(--brand-accent);
    animation: spin 6s linear infinite;
}

.hero-visual-ring-inner {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: var(--brand-success);
    border-left-color: var(--brand-primary);
    animation: spin 4s linear infinite reverse;
}

.hero-visual-core {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-visual-core svg {
    width: 48px;
    height: 48px;
    color: var(--white);
    stroke-width: 1.5;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-visual-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37,99,235,0.15);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0; }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.08));
    border: 1px solid rgba(37,99,235,0.12);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: var(--space-lg);
}

.hero-label-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.hero-feature:hover {
    border-color: var(--brand-primary-light);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.hero-feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-feature-icon.time { background: rgba(37,99,235,0.1); }
.hero-feature-icon.secure { background: rgba(16,185,129,0.1); }
.hero-feature-icon.doctor { background: rgba(245,158,11,0.1); }

.hero-feature-text {
    display: flex;
    flex-direction: column;
}

.hero-feature-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-800);
}

.hero-feature-desc {
    font-size: 0.76rem;
    color: var(--gray-500);
    font-weight: 400;
}

.hero-doctor {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--gray-900), #1a2744);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero-doctor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.05));
    pointer-events: none;
}

.hero-doctor-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    position: relative;
    z-index: 1;
}

.hero-doctor-info {
    position: relative;
    z-index: 1;
}

.hero-doctor-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.hero-doctor-title {
    font-size: 0.76rem;
    color: var(--gray-400);
    font-weight: 400;
}

.hero-doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding: 2px 8px;
    background: rgba(16,185,129,0.15);
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 600;
    color: #34D399;
}

/* ======== CTA BUTTON ======== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.45);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
    letter-spacing: 0.3px;
}

.btn-full { width: 100%; }

.btn-lg svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 12px 24px;
    border-radius: var(--radius-md);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-success {
    background: linear-gradient(135deg, var(--brand-success) 0%, var(--brand-success-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,185,129,0.45);
}

.btn-call {
    background: linear-gradient(135deg, var(--brand-success) 0%, #047857 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16,185,129,0.35);
    animation: softPulse 2.5s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(16,185,129,0.35); }
    50% { box-shadow: 0 4px 24px rgba(16,185,129,0.55); }
}

/* ======== BACK BUTTON ======== */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    background: none;
    border: none;
    color: var(--gray-500);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: var(--space-md);
    transition: color 0.2s ease;
}

.btn-back svg { width: 18px; height: 18px; }
.btn-back:hover { color: var(--brand-primary); }

/* ======== QUESTION CARD ======== */
.question-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    margin-top: var(--space-md);
}

.question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.question-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.35;
}

/* ======== OPTIONS ======== */
.options-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.option-item { position: relative; }

.option-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 16px 18px;
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.option-label:hover {
    border-color: rgba(37,99,235,0.2);
    background: rgba(37,99,235,0.03);
    transform: translateX(4px);
}

.option-input:checked + .option-label {
    border-color: var(--brand-primary);
    background: var(--brand-primary-light);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.option-label span {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.option-input:checked + .option-label span {
    color: var(--brand-primary-dark);
}

.option-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.option-input:checked + .option-label .option-radio {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.option-input:checked + .option-label .option-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

/* ======== CONCERN OPTIONS ======== */
.concern-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.option-input:checked + .option-label .concern-icon {
    background: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.concern-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ======== FORM SECTION ======== */
.form-section {
    margin-top: var(--space-lg);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.form-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.form-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 400;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-900);
    background: var(--gray-50);
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.form-input:focus {
    border-color: var(--brand-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.form-privacy svg {
    flex-shrink: 0;
    color: var(--brand-success);
}

.form-privacy span {
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ======== RESULT / THANKS ======== */
.result-section {
    text-align: center;
    padding: var(--space-xl) 0;
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(16,185,129,0.2);
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-success), var(--brand-accent));
}

.result-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.result-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.result-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.result-details {
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: left;
}

.result-details p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.result-details strong {
    color: var(--brand-primary);
    font-weight: 700;
}

/* ======== STATS SECTION ======== */
.stats-section {
    padding: var(--space-lg) 20px;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.stat-item {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
}

.stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

/* ======== TRUST FOOTER ======== */
.trust-footer {
    padding: var(--space-md) 20px;
    background: var(--gray-900);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-400);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--brand-success);
}

/* ======== MODAL ======== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-xl);
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-icon {
    margin-bottom: var(--space-lg);
    color: var(--brand-gold);
}

.modal-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ======== LIVE COUNTER ======== */
.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37,99,235,0.04);
    border: 1px solid rgba(37,99,235,0.08);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-danger);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.live-counter span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.live-counter strong {
    color: var(--brand-primary);
    font-weight: 700;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .trust-items {
        gap: var(--space-md);
    }

    .trust-item span {
        font-size: 0.68rem;
    }
}

/* ======== WHATSAPP/CALL BTN ======== */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

/* Risk cards */
.result-card.risk-low {
    border-color: rgba(16,185,129,0.2);
}

.result-card.risk-medium {
    border-color: rgba(245,158,11,0.3);
}

.result-card.risk-high {
    border-color: rgba(239,68,68,0.3);
}