* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo i {
    font-size: 32px;
    margin-right: 8px;
}

.logo-text {
    display: inline;
}

.logo-accent {
    color: #f59e0b;
}

.hero-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    background: #fb923c;
}

.cta-button i {
    font-size: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 48px;
    color: #f59e0b;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.badge i {
    font-size: 20px;
    color: #f59e0b;
}

.form-wrapper {
    background: #f5f7fa;
    padding: 60px 20px;
    flex: 1;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.progress-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.progress-circle svg {
    display: block;
    width: 100%;
    height: 100%;
}

.progress-ring-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
}

.progress-ring {
    fill: none;
    stroke: #2563eb;
    stroke-width: 8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 264;
    stroke-dashoffset: 264;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.progress-info {
    flex: 1;
}

.progress-label {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.progress-desc {
    font-size: 14px;
    color: #6b7280;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.form-step h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.button-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.button-grid.one-col {
    grid-template-columns: 1fr;
}

.button-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.button-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.choice-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.choice-btn i {
    font-size: 24px;
    color: #2563eb;
}

.choice-btn:hover {
    border-color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.choice-btn.selected {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.choice-btn.selected i {
    color: white;
}

.input-wrapper,
.select-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper i,
.select-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 20px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 18px 20px 18px 55px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 45px;
}

.form-navigation {
    margin-top: 30px;
}

.back-btn {
    padding: 12px 30px;
    font-size: 16px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.continue-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 18px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.continue-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.continue-btn i {
    font-size: 18px;
}

.final-step {
    text-align: center;
}

.disclosure {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.submit-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.submit-btn i {
    font-size: 22px;
}

.site-footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f59e0b;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .form-card {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 18px;
        width: 100%;
        max-width: 350px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }

    .step-card {
        padding: 30px 20px;
        flex-direction: row;
        text-align: left;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .badge {
        font-size: 14px;
    }

    .form-wrapper {
        padding: 40px 15px;
    }

    .form-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .progress-section {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .progress-circle {
        margin: 0 auto;
    }

    .form-step h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .button-grid.two-col,
    .button-grid.three-col {
        grid-template-columns: 1fr;
    }

    .choice-btn {
        padding: 16px 20px;
        font-size: 15px;
    }

    .choice-btn i {
        font-size: 20px;
    }

    .form-input,
    .form-select {
        padding: 16px 18px 16px 50px;
        font-size: 16px;
    }

    .input-wrapper i,
    .select-wrapper i {
        left: 18px;
        font-size: 18px;
    }

    .continue-btn {
        padding: 14px 25px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 18px;
    }

    .disclosure {
        font-size: 12px;
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 15px 0;
    }

    .logo {
        font-size: 22px;
    }

    .logo i {
        font-size: 26px;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
    }

    .cta-button i {
        font-size: 18px;
    }

    .steps-grid {
        margin-top: 40px;
    }

    .step-card {
        padding: 25px 18px;
    }

    .step-icon {
        font-size: 36px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

    .form-card {
        padding: 25px 15px;
    }

    .progress-circle {
        width: 80px;
        height: 80px;
    }

    .progress-percent {
        font-size: 20px;
    }

    .progress-label {
        font-size: 16px;
    }

    .progress-desc {
        font-size: 13px;
    }

    .form-step h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .button-grid {
        gap: 12px;
    }

    .choice-btn {
        padding: 14px 16px;
        font-size: 14px;
    }

    .choice-btn i {
        font-size: 18px;
    }

    .form-input,
    .form-select {
        padding: 14px 16px 14px 45px;
        font-size: 15px;
    }

    .input-wrapper i,
    .select-wrapper i {
        left: 15px;
        font-size: 16px;
    }

    .continue-btn {
        padding: 12px 20px;
        font-size: 15px;
        margin-top: 15px;
    }

    .continue-btn i {
        font-size: 16px;
    }

    .back-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 16px;
    }

    .submit-btn i {
        font-size: 18px;
    }

    .disclosure {
        font-size: 11px;
        padding: 12px;
    }

    .site-footer {
        padding: 40px 15px 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-section a,
    .footer-section p {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .form-card {
        padding: 20px 12px;
    }

    .form-step h2 {
        font-size: 18px;
    }

    .choice-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
}
