:root {
    --primary: #4285f4;
    --primary-hover: #357ae8;
    --bg-color: #f7f9fc;
    --text-color: #343435;
    --card-bg: #ffffff;
    --input-bg: #e5e5ea;
    --urgent: #e53935;
    --success: #4caf50;
    --radius: 12px;
    --shadow: 0 8px 30px rgba(0,0,0,0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.top-bar {
    background-color: var(--card-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.company-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.phone-number {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    white-space: nowrap;
}

.phone-number span {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4285f4, #669df6);
    transition: width 0.4s ease;
}

/* Funnel Container */
.funnel-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.funnel-step {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    display: none;
    animation: fadeIn 0.4s ease forwards;
    text-align: center;
}

.funnel-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Options */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.options-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.option-btn {
    background-color: var(--card-bg);
    border: 2px solid var(--input-bg);
    border-radius: var(--radius);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.option-btn:hover {
    border-color: var(--primary);
    background-color: rgba(66, 133, 244, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.icon {
    font-size: 1.5rem;
}

/* Forms */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 16px;
    background-color: var(--input-bg);
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 1.1rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: #fff;
}

.primary-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.primary-btn:hover {
    background-color: var(--primary-hover);
}

/* Success Step */
.success-step {
    border-top: 6px solid var(--urgent);
}

.urgent-text {
    color: var(--urgent);
    font-size: 2rem;
    text-transform: uppercase;
}

.success-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.specialist-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #f0f4f8;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.specialist-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.specialist-info {
    text-align: left;
}

.specialist-info h3 {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 4px;
}

.specialist-info p {
    font-size: 1.4rem;
    font-weight: 700;
}

.call-action-box {
    background: #fff;
    border: 2px dashed var(--urgent);
    padding: 30px;
    border-radius: var(--radius);
}

.call-action-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.massive-call-btn {
    display: block;
    background: var(--urgent);
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 20px;
    border-radius: var(--radius);
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    margin-bottom: 15px;
    white-space: nowrap;
}

.massive-call-btn:hover {
    background: #c62828;
}

.wait-time {
    font-weight: 700;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
}

.green-text {
    color: var(--success);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    .options-grid-2 {
        grid-template-columns: 1fr;
    }
    .funnel-step {
        padding: 30px 20px;
    }
    .top-bar {
        padding: 10px 15px;
    }
    .company-logo {
        height: 50px;
    }
    .phone-number span {
        font-size: 0.65rem;
    }
    .phone-number a {
        font-size: 0.95rem;
    }
    .massive-call-btn {
        font-size: 1.25rem;
        padding: 15px 10px;
    }
}
