/* ── Main Container ── */
        .partner-program {
            width: 100%;
            padding: 5rem 1rem 6rem;
            min-height: 100vh;
        }

        .partner-program__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ── Header Section ── */
        .partner-program__header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .partner-program__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            color: #FFFFFF;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
        }

        .partner-program__title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            color: #3D2B1F;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .partner-program__title-accent {
            display: block;
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 0.5rem;
        }

        .partner-program__description {
            font-size: 1.25rem;
            color: #6B5D4F;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ── Content Layout ── */
        .partner-program__content {
            display: grid;
            gap: 4rem;
        }

        /* ── Benefits Section ── */
        .partner-program__section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #3D2B1F;
            margin-bottom: 2rem;
            text-align: center;
            letter-spacing: -0.02em;
        }

        .partner-program__benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .partner-benefit {
            background: #FFFFFF;
            border: 2px solid rgba(208, 143, 168, 0.15);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .partner-benefit:hover {
            transform: translateY(-4px);
            border-color: rgba(208, 143, 168, 0.4);
            box-shadow: 0 8px 24px rgba(208, 143, 168, 0.15);
        }

        .partner-benefit__icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(208, 143, 168, 0.15) 0%, rgba(208, 143, 168, 0.08) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D08FA8;
            margin-bottom: 1.25rem;
        }

        .partner-benefit__title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #3D2B1F;
            margin-bottom: 0.5rem;
        }

        .partner-benefit__text {
            font-size: 0.9375rem;
            color: #6B5D4F;
            line-height: 1.6;
        }

        /* ── Form Section ── */
        .partner-program__form-section {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        .partner-program__form-card {
            background: #FFFFFF;
            border: 2px solid rgba(208, 143, 168, 0.15);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .partner-program__form-header {
            margin-bottom: 2.5rem;
        }

        .partner-program__form-title {
            font-size: 2rem;
            font-weight: 800;
            color: #3D2B1F;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .partner-program__form-subtitle {
            font-size: 1rem;
            color: #6B5D4F;
            line-height: 1.6;
        }

        /* ── Form Elements ── */
        .form-group {
            margin-bottom: 2rem;
        }

        /* ── Alert Messages ── */
        .alert {
            display: flex;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-10px);
            }
        }

        .platform-username-field {
            animation: slideDown 0.3s ease;
        }

        .alert svg {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .alert--success {
            background: rgba(34, 197, 94, 0.1);
            border: 2px solid rgba(34, 197, 94, 0.3);
            color: #15803d;
        }

        .alert--success svg {
            color: #22c55e;
        }

        .alert--error {
            background: rgba(239, 68, 68, 0.1);
            border: 2px solid rgba(239, 68, 68, 0.3);
            color: #991b1b;
        }

        .alert--error svg {
            color: #ef4444;
        }

        .alert strong {
            display: block;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .alert p {
            margin: 0;
            line-height: 1.5;
        }

        .alert ul {
            margin: 0.5rem 0 0 1.25rem;
            padding: 0;
        }

        .alert li {
            margin-bottom: 0.25rem;
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9375rem;
            font-weight: 600;
            color: #3D2B1F;
            margin-bottom: 0.75rem;
        }

        .form-label svg {
            color: #D08FA8;
            flex-shrink: 0;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.875rem 1.125rem;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            font-size: 1rem;
            color: #3D2B1F;
            background: #FFFFFF;
            border: 2px solid #E8E8E8;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #D08FA8;
            box-shadow: 0 0 0 3px rgba(208, 143, 168, 0.1);
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-prefix {
            position: absolute;
            left: 1.125rem;
            color: #8B7355;
            font-weight: 600;
            pointer-events: none;
        }

        .input-wrapper .form-input {
            padding-left: 2.25rem;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-hint {
            font-size: 0.8125rem;
            color: #8B7355;
            margin-top: 0.5rem;
        }

        /* ── Platform Selector ── */
        .platform-selector {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
        }

        .platform-option {
            cursor: pointer;
        }

        .platform-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .platform-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            padding: 1.5rem 1rem;
            background: #FFFFFF;
            border: 2px solid #E8E8E8;
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .platform-option input:checked + .platform-card {
            border-color: #D08FA8;
            background: rgba(208, 143, 168, 0.05);
        }

        .platform-card:hover {
            border-color: #D08FA8;
            transform: translateY(-2px);
        }

        .platform-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
        }

        .platform-icon--tiktok {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            color: #FFFFFF;
        }

        .platform-icon--instagram {
            background: linear-gradient(135deg, #E1306C 0%, #FD1D1D 50%, #F77737 100%);
            color: #FFFFFF;
        }

        .platform-icon--youtube {
            background: #FF0000;
            color: #FFFFFF;
        }

        .platform-icon--facebook {
            background: #1877F2;
            color: #FFFFFF;
        }

        .platform-card span {
            font-size: 0.9375rem;
            font-weight: 600;
            color: #3D2B1F;
        }

        /* ── Checkbox ── */
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
        }

        .checkbox-label input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .checkbox-custom {
            width: 20px;
            height: 20px;
            border: 2px solid #E8E8E8;
            border-radius: 6px;
            flex-shrink: 0;
            transition: all 0.2s ease;
            position: relative;
            margin-top: 2px;
        }

        .checkbox-label input:checked + .checkbox-custom {
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            border-color: #D08FA8;
        }

        .checkbox-label input:checked + .checkbox-custom::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 2px;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .checkbox-text {
            font-size: 0.9375rem;
            color: #6B5D4F;
            line-height: 1.5;
        }

        .checkbox-text a {
            color: #D08FA8;
            text-decoration: none;
            font-weight: 600;
        }

        .checkbox-text a:hover {
            text-decoration: underline;
        }

        /* ── Submit Button ── */
        .partner-program__submit-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.125rem 2rem;
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            color: #FFFFFF;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            font-size: 1.0625rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
        }

        .partner-program__submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(208, 143, 168, 0.4);
        }

        /* ── Auth Required Message ── */
        .auth-required-message {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(208, 143, 168, 0.08) 0%, rgba(208, 143, 168, 0.04) 100%);
            border: 2px solid rgba(208, 143, 168, 0.2);
            border-radius: 16px;
        }

        .auth-required-message__icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
        }

        .auth-required-message__title {
            font-size: 1.75rem;
            font-weight: 800;
            color: #3D2B1F;
            margin-bottom: 1rem;
        }

        .auth-required-message__text {
            font-size: 1.0625rem;
            color: #6B5D4F;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto 2.5rem;
        }

        .auth-required-message__buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .auth-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.125rem 2rem;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            font-size: 1.0625rem;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .auth-btn--primary {
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
        }

        .auth-btn--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(208, 143, 168, 0.4);
        }

        .auth-btn--secondary {
            background: #FFFFFF;
            color: #D08FA8;
            border: 2px solid #D08FA8;
        }

        .auth-btn--secondary:hover {
            background: rgba(208, 143, 168, 0.05);
            transform: translateY(-2px);
        }

        /* ── Info Card ── */
        .partner-program__info-card {
            background: linear-gradient(135deg, rgba(208, 143, 168, 0.08) 0%, rgba(208, 143, 168, 0.04) 100%);
            border: 2px solid rgba(208, 143, 168, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            position: sticky;
            top: 100px;
        }

        .info-card__icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
        }

        .info-card__title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #3D2B1F;
            margin-bottom: 1.5rem;
        }

        .info-card__steps {
            list-style: none;
            counter-reset: step-counter;
            margin-bottom: 2rem;
        }

        .info-card__steps li {
            counter-increment: step-counter;
            position: relative;
            padding-left: 3rem;
            margin-bottom: 1.5rem;
        }

        .info-card__steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
            color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .info-card__steps li strong {
            display: block;
            font-size: 1rem;
            font-weight: 700;
            color: #3D2B1F;
            margin-bottom: 0.25rem;
        }

        .info-card__steps li span {
            display: block;
            font-size: 0.875rem;
            color: #6B5D4F;
            line-height: 1.5;
        }

        .info-card__contact {
            padding-top: 2rem;
            border-top: 2px solid rgba(208, 143, 168, 0.2);
        }

        .info-card__contact p {
            font-size: 0.9375rem;
            color: #6B5D4F;
            margin-bottom: 0.5rem;
        }

        .info-card__contact a {
            color: #D08FA8;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.0625rem;
        }

        .info-card__contact a:hover {
            text-decoration: underline;
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .partner-program__form-section {
                grid-template-columns: 1fr;
            }

            .partner-program__info-card {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .partner-program {
                padding: 3rem 1rem 4rem;
            }

            .partner-program__title {
                font-size: 2.5rem;
            }

            .partner-program__description {
                font-size: 1.125rem;
            }

            .partner-program__benefits-grid {
                grid-template-columns: 1fr;
            }

            .partner-program__form-card {
                padding: 2rem;
            }

            .platform-selector {
                grid-template-columns: repeat(2, 1fr);
            }

            .partner-program__info-card {
                padding: 2rem;
            }

            .auth-required-message {
                padding: 3rem 1.5rem;
            }

            .auth-required-message__icon {
                width: 64px;
                height: 64px;
            }

            .auth-required-message__title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .partner-program__title {
                font-size: 2rem;
            }

            .partner-program__form-card {
                padding: 1.5rem;
            }

            .platform-selector {
                grid-template-columns: 1fr;
            }

            .info-card__steps li {
                padding-left: 2.5rem;
            }

            .info-card__steps li::before {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }
        }