/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

ul {
    list-style: none;
}

/* Onboarding Page Styles */
.onboarding-page {
    min-height: 100vh;
    background: linear-gradient(90deg, rgb(255, 247, 255) 0%, rgb(255, 247, 255) 100%);
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: white;
    padding: 48px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 332px;
    height: 130px;
    object-fit: cover;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 70px 64px 45px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 64px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #8705e4;
    text-transform: uppercase;
    letter-spacing: -1.2px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    color: #202524;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.77;
    color: #202524;
    max-width: 672px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Checklist */
.checklist-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #202524;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.checklist-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(127, 25, 230, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-icon svg {
    width: 20px;
    height: 20px;
}

.checklist-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.56;
    color: #202524;
    letter-spacing: 1.8px;
    padding-top: 4px;
}

.specialist-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(206, 194, 216, 0.3);
    box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.1), 0px 0px 10px -6px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
}

.specialist-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Right Side - Form Card **/
.form-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 48px 49px;
    box-shadow: 0px 25px 50px -12px rgba(97, 0, 184, 0.05);
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #202524;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8.5px;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #555;
    letter-spacing: 1.4px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 17px;
    background: white;
    border: 1px solid rgba(206, 194, 216, 0.5);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1e1924;
    outline: none;
    transition: border-color 0.2s;
}

.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: rgba(30, 25, 36, 0.5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #8705e4;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.2 9.6L12 14.4L16.8 9.6' stroke='%236B7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    background-size: 24px;
    padding-right: 40px;
}

.form-textarea {
    min-height: 74px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: #8705e4;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    box-shadow: 0px 20px 25px -5px rgba(97, 0, 184, 0.2), 0px 8px 10px -6px rgba(97, 0, 184, 0.2);
    transition: background-color 0.2s, transform 0.1s;
}

.submit-button:hover {
    background: #7004c7;
}

.submit-button:active {
    transform: scale(0.98);
}

.form-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.625;
    color: #7d7387;
    text-align: center;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid rgba(127, 25, 230, 0.1);
    padding: 15px 90px 14px;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.33;
    color: rgba(20, 17, 24, 0.4);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        padding: 50px 40px 40px;
    }

    .content-grid {
        gap: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 20px;
    }

    .form-card {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 32px 24px;
    }

    .logo {
        width: 250px;
        height: 98px;
    }

    .main-content {
        padding: 40px 24px 32px;
    }

    .hero-section {
        margin-bottom: 48px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title,
    .form-title {
        font-size: 28px;
    }

    .form-card {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 15px 24px 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
        height: 78px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title,
    .form-title {
        font-size: 24px;
    }

    .checklist-text {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .form-card {
        padding: 24px 20px;
    }
}
