/* Form-specific styles - extending main.css design system */
.form-section {
    background: rgba(15, 16, 21, 0.6);
    border: 2px solid rgba(166, 69, 181, 0.3);
    padding: 50px;
    padding-top: 60px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    box-shadow: 0 0 40px rgba(166, 69, 181, 0.2);
    margin-top: 50px;
}

.form-section::before {
    content: "FOUNDER REGISTRATION";
    position: absolute;
    top: 15px;
    left: 30px;
    background: transparent;
    padding: 0;
    color: var(--neon-cyan);
    font-size: 0.75rem;
    font-family: var(--font-cyber);
    text-shadow: 0 0 10px var(--neon-cyan);
    letter-spacing: 0.1em;
    white-space: nowrap;
    z-index: 10;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-family: var(--font-cyber);
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-label.required::after {
    content: " *";
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: rgba(15, 16, 21, 0.6);
    border: 2px solid var(--text-muted);
    color: var(--text-main);
    font-family: var(--font-mono);
    padding: 14px 18px;
    font-size: 0.95rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: inset 0 0 10px rgba(136, 146, 176, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3), inset 0 0 10px rgba(0, 247, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(136, 146, 176, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-helper {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-family: var(--font-mono);
}

.form-helper::before {
    content: "// ";
    color: var(--accent);
}

.char-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 5px;
    font-family: var(--font-mono);
}

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 12px 16px;
    background: rgba(15, 16, 21, 0.4);
    border: 1px solid rgba(136, 146, 176, 0.2);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: var(--accent);
    box-shadow: inset 0 0 15px rgba(166, 69, 181, 0.1);
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    background: rgba(15, 16, 21, 0.6);
    cursor: pointer;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Checkboxes for feature selection */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-main);
    padding: 12px 14px;
    background: rgba(15, 16, 21, 0.4);
    border: 1px solid rgba(136, 146, 176, 0.2);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--accent);
    box-shadow: inset 0 0 15px rgba(166, 69, 181, 0.1);
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    background: rgba(15, 16, 21, 0.6);
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    box-shadow: inset 0 0 5px rgba(136, 146, 176, 0.2);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: var(--accent);
    box-shadow: inset 0 0 10px rgba(166, 69, 181, 0.3), 0 0 5px rgba(166, 69, 181, 0.4);
}

.checkbox-label input[type="checkbox"]:checked {
    background: rgba(0, 247, 255, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.4), 0 0 15px rgba(0, 247, 255, 0.5);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 2L3.5 7.5L1.5 5.5' stroke='%2300f7ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 6px var(--neon-cyan)) drop-shadow(0 0 3px var(--neon-cyan));
}

.checkbox-limit-warning {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 10px;
    font-family: var(--font-mono);
    display: none;
}

.checkbox-limit-warning.show {
    display: block;
}

.checkbox-limit-warning::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 20h20L12 2z' stroke='%23a645b5' stroke-width='2' fill='rgba(166,69,181,0.2)'/%3E%3Cline x1='12' y1='9' x2='12' y2='14' stroke='%23a645b5' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17' r='1' fill='%23a645b5'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
}

/* GDPR Consent */
.gdpr-consent {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 247, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.gdpr-consent.error {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.2);
}

.gdpr-consent.success {
    background: rgba(46, 204, 113, 0.15);
    border-color: #2ecc71;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
}

.gdpr-label input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--neon-cyan);
    background: rgba(15, 16, 21, 0.6);
    cursor: pointer;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.2);
    flex-shrink: 0;
    margin-top: 2px;
}

.gdpr-label input[type="checkbox"]:checked {
    background: rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
    box-shadow: inset 0 0 15px rgba(46, 204, 113, 0.5), 0 0 20px rgba(46, 204, 113, 0.6);
}

.gdpr-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2.5L4.5 9.5L2 7' stroke='%232ecc71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 8px #2ecc71) drop-shadow(0 0 4px #2ecc71) drop-shadow(0 0 2px rgba(255, 255, 255, 0.6));
}

.gdpr-label a {
    color: var(--neon-cyan);
    text-decoration: underline;
}

.gdpr-label a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

/* Submit button */
.form-submit {
    margin-top: 40px;
    text-align: center;
}

.btn-submit {
    display: inline-block;
    padding: 18px 40px;
    font-family: var(--font-cyber);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent);
    color: white;
    border: none;
    box-shadow: 0 0 30px rgba(166, 69, 181, 0.6);
    width: 100%;
    max-width: 600px;
}

.btn-submit:hover:not(:disabled) {
    background: var(--neon-cyan);
    box-shadow: 0 0 40px var(--neon-cyan), 0 0 15px white;
    color: var(--bg-dark);
}

.btn-submit:active:not(:disabled) {
    transform: scale(0.98);
}

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

.btn-submit.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-helper {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.submit-helper::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%2300f7ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
}

/* Toast notification */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: rgba(15, 16, 21, 0.95);
    border: 2px solid var(--neon-cyan);
    padding: 20px 30px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.6);
    z-index: 1001;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.toast.success {
    border-color: var(--neon-cyan);
}

.toast.error {
    border-color: #ff4444;
    box-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
}

.toast-title {
    font-family: var(--font-cyber);
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.success .toast-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%2300f7ff' stroke-width='2' fill='rgba(0,247,255,0.2)'/%3E%3Cpath d='M8 12l3 3 5-6' stroke='%2300f7ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
}

.toast.error .toast-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23ff4444' stroke-width='2' fill='rgba(255,68,68,0.2)'/%3E%3Cline x1='12' y1='8' x2='12' y2='13' stroke='%23ff4444' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='16' r='1' fill='%23ff4444'/%3E%3C/svg%3E");
    background-size: contain;
}

.toast-message {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Value cards */
.value-card {
    background: rgba(15, 16, 21, 0.8);
    border: 2px solid rgba(166, 69, 181, 0.4);
    padding: 35px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    transition: all 0.3s ease;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(166, 69, 181, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.value-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: inset 0 0 25px rgba(0, 247, 255, 0.15);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.value-card p,
.value-card ul {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.value-card ul {
    list-style: none;
    margin-top: 15px;
}

.value-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.value-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
    font-family: var(--font-mono);
}

.trust-badge-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.trust-badge-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-item {
    background: rgba(15, 16, 21, 0.6);
    border: 1px solid rgba(166, 69, 181, 0.3);
    margin-bottom: 15px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-cyber);
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: var(--neon-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 25px 25px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Scarcity counter */
.scarcity-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    padding: 12px 24px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: #ff8888;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    margin-top: 20px;
}

.scarcity-badge::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23ff4444' stroke-width='2' fill='none'/%3E%3Cpath d='M12 6v6l4 2' stroke='%23ff8888' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='4' r='1' fill='%23ff4444'/%3E%3Ccircle cx='12' cy='20' r='1' fill='%23ff4444'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
}

/* Error states */
.form-error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.3) !important;
}

.radio-group.form-error,
.checkbox-group.form-error {
    border: 2px solid #ff4444;
    padding: 15px;
    background: rgba(255, 68, 68, 0.05);
}

.error-message {
    color: #ff8888;
    font-size: 0.8rem;
    margin-top: 8px;
    font-family: var(--font-mono);
    display: none;
}

.error-message.show {
    display: block;
}

/* Mobile CTA Helper */
.mobile-only-cta {
    display: none;
}

.error-message::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 20h20L12 2z' stroke='%23ff8888' stroke-width='2' fill='rgba(255,68,68,0.2)'/%3E%3Cline x1='12' y1='9' x2='12' y2='14' stroke='%23ff8888' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17' r='1' fill='%23ff8888'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
}

/* Mobile responsive */
@media (max-width: 768px) {

    .mobile-only-cta {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Section Spacing - Match index.html mobile pattern */
    .section-padding {
        padding: 60px 0;
    }

    /* Section-Specific Top Spacing - Match index.html sections */
    #why-you-matter {
        padding-top: 80px !important;
    }

    #co-creation {
        padding-top: 80px !important;
    }

    section[aria-labelledby="trust-heading"] {
        padding-top: 80px !important;
    }

    /* Typography Scaling - Readability + Prevent iOS Zoom */
    .form-label {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        font-size: 1rem;
        /* CRITICAL: 16px minimum prevents iOS zoom */
        padding: 16px 20px;
        line-height: 1.5;
    }

    .form-helper {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 10px;
    }

    .char-counter {
        font-size: 0.85rem;
        margin-top: 8px;
    }

    .error-message {
        font-size: 0.9rem;
        margin-top: 10px;
        line-height: 1.4;
    }

    /* Touch Target Optimization - WCAG 2.5.5 Compliance */
    .radio-label {
        padding: 16px 20px;
        min-height: 56px;
        align-items: center;
    }

    .radio-label input[type="radio"] {
        width: 24px;
        height: 24px;
        border: 3px solid var(--text-muted);
        margin-right: 16px;
    }

    .radio-label input[type="radio"]:checked::after {
        width: 10px;
        height: 10px;
    }

    .radio-label span {
        font-size: 1rem;
        line-height: 1.5;
    }

    .checkbox-label {
        padding: 16px 18px;
        min-height: 56px;
        font-size: 0.95rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 24px;
        height: 24px;
        border: 3px solid var(--text-muted);
        margin-right: 14px;
        margin-top: 0;
    }

    .checkbox-label input[type="checkbox"]:checked::after {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 13px;
        height: 13px;
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2.5L4.5 9.5L2 7' stroke='%2300f7ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        filter: drop-shadow(0 0 6px var(--neon-cyan)) drop-shadow(0 0 3px var(--neon-cyan));
    }

    .gdpr-label input[type="checkbox"] {
        width: 28px;
        height: 28px;
        margin-right: 18px;
        border: 3px solid var(--neon-cyan);
    }

    .gdpr-label input[type="checkbox"]:checked::after {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 3L5.5 12L2.5 9' stroke='%232ecc71' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        filter: drop-shadow(0 0 10px #2ecc71) drop-shadow(0 0 5px #2ecc71);
    }

    .gdpr-label {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Button Optimization - Thumb-Friendly */
    .btn-submit {
        padding: 20px 32px;
        font-size: 1.05rem;
        min-height: 60px;
        letter-spacing: 0.08em;
    }

    .btn-primary {
        padding: 18px 32px;
        font-size: 1rem;
        min-height: 56px;
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Spacing & Breathing Room */
    .form-group {
        margin-bottom: 35px;
    }

    .radio-group {
        gap: 20px;
    }

    .checkbox-group {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .gdpr-consent {
        padding: 25px;
    }

    .form-submit {
        margin-top: 45px;
    }

    .submit-helper {
        margin-top: 16px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Toast Repositioning - Thumb Zone */
    .toast {
        top: auto;
        bottom: 20px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 18px 24px;
        font-size: 0.95rem;
    }

    .toast-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .toast-message {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Value Cards & Content */
    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        font-size: 2.8rem;
        margin-bottom: 18px;
    }

    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .value-card p,
    .value-card ul {
        font-size: 1rem;
        line-height: 1.8;
    }

    .value-card ul li {
        margin-bottom: 10px;
        padding-left: 24px;
    }

    /* FAQ Accordion - Touch-Friendly */
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
        min-height: 60px;
        line-height: 1.4;
    }

    .faq-question::after {
        font-size: 1.8rem;
        margin-left: 16px;
    }

    .faq-answer-content {
        padding: 0 24px 24px 24px;
        font-size: 1rem;
        line-height: 1.9;
    }

    /* Scarcity Badge */
    .scarcity-badge {
        padding: 14px 20px;
        font-size: 1rem;
        margin-top: 24px;
    }

    /* Trust Badges - Optimized for Mobile Space */
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 25px 0;
    }

    .trust-badge {
        padding: 5px;
        width: 30%;
        min-width: 85px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-badge-icon {
        font-size: 1.5rem;
        margin-bottom: 6px;
        display: flex;
        justify-content: center;
    }

    .trust-badge-icon svg {
        width: 32px;
        height: 32px;
    }

    .trust-badge-text {
        font-size: 0.65rem;
        line-height: 1.2;
        word-wrap: break-word;
        /* Ensure long words break if needed */
    }

    /* Partner Section Compact */
    .partner-section {
        margin-top: 25px !important;
        opacity: 0.9 !important;
    }

    .partner-section p {
        font-size: 0.7rem !important;
        margin-bottom: 6px !important;
    }

    .partner-section img {
        height: 40px !important;
    }

    /* Form Section */
    .form-section {
        padding: 30px 20px;
        padding-top: 50px;
    }

    .form-section::before {
        content: "REGISTRATION";
        font-size: 0.7rem;
        left: 20px;
        top: 12px;
    }
}

@media (max-width: 480px) {

    /* Ultra-small screen optimizations for devices like iPhone SE */
    .form-section {
        padding: 25px 16px;
        padding-top: 45px;
    }

    .form-section::before {
        content: "REGISTRATION";
        font-size: 0.7rem;
        left: 16px;
        top: 12px;
    }

    /* Slightly reduce text for smallest screens */
    .radio-label span,
    .checkbox-label span {
        font-size: 0.95rem;
    }

    /* Adjust value cards */
    .value-card {
        padding: 25px 18px;
    }

    /* Button text wrapping allowance */
    .btn-submit {
        font-size: 1rem;
        padding: 18px 24px;
        line-height: 1.4;
    }
}