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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #ffffff, #DBEAFE);

    color: #111827;
    min-height: 100vh;
}

.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #1E3A8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-white {
    background: white;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 102, 255, 0.05), 0 2px 4px -1px rgba(0, 102, 255, 0.03);
}

.glow-effect {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

/* Background Effects */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    
}

.bg-orb-1 {
    top: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    opacity: 0.5;
}

.bg-orb-2 {
    bottom: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    opacity: 0.4;
}

/* Main Container */
.main-container {
    max-width: 1024px;
    margin: 100px auto 0 auto;
    padding: 48px 16px;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInDown 0.5s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .header h1 {
        font-size: 48px;
    }
}

.header p {
    font-size: 20px;
    color: #4B5563;
}

/* Tabs */
.tabs-container {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 32px;
}

.tab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-trigger:hover {
    background: #EFF6FF;
}

.tab-trigger.active {
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
}

.tab-trigger svg {
    width: 16px;
    height: 16px;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Inscription Card */
.inscription-card {
    max-width: 672px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 40px;
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #DBEAFE;
    border: 1px solid #BFDBFE;
    margin-bottom: 16px;
}

.step-badge svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.step-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #0066FF;
}

.card-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.card-header p {
    color: #4B5563;
}

/* Form */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 16px;
    height: 56px;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    background: #EFF6FF;
    color: #111827;
    font-size: 16px;
    transition: all 0.2s;
    outline: none;
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-input:focus {
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* Captcha */
.captcha-wrapper {
    padding-top: 16px;
}

.captcha-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    background: #EFF6FF;
    cursor: pointer;
    transition: background 0.2s;
}

.captcha-label:hover {
    background: #DBEAFE;
}

.captcha-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #0066FF;
}

.captcha-text {
    flex: 1;
    font-weight: 500;
    color: #374151;
}

.captcha-icon {
    width: 20px;
    height: 20px;
    color: #0066FF;
}

/* Submit Button */
.submit-btn {
    margin-top: 25px;
    width: 100%;
    height: 56px;
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

.form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #4B5563;
}

/* Abonnement Card */
.abonnement-card {
    max-width: 672px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 48px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    margin-bottom: 24px;
}

.offer-badge svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.offer-badge span {
    font-size: 14px;
    font-weight: 500;
}

/* Pricing */
.pricing {
    margin-bottom: 32px;
}

.pricing-subtitle {
    color: #4B5563;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-value {
    font-size: 36px;
    font-weight: 700;
}

.pricing-period {
    font-size: 20px;
    color: #4B5563;
}

/* Trial Info */
.trial-info {
    margin-bottom: 32px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(to bottom right, #EFF6FF, white);
    border: 1px solid #BFDBFE;
}

.trial-info-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trial-info-icon {
    width: 20px;
    height: 20px;
    color: #0066FF;
    flex-shrink: 0;
    margin-top: 4px;
}

.trial-info h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.trial-info p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.trial-info p:last-child {
    font-size: 12px;
    color: #4B5563;
    margin-bottom: 0;
}

.trial-info .highlight {
    font-weight: 700;
    color: #111827;
}

.trial-info .blue {
    font-weight: 700;
    color: #0066FF;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item.highlighted {
    padding: 12px;
    border-radius: 8px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.highlighted {
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #0066FF;
}

.feature-icon.highlighted svg {
    color: white;
}

.feature-title {
    font-weight: 500;
    color: #111827;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 14px;
    color: #4B5563;
}

/* CTA Button */
.cta-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.cta-btn:hover {
    opacity: 0.9;
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

.cta-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #4B5563;
}

