/* ============================================
   BROKER PAGE STYLES
   ============================================ */

/* Variables */
:root {
    --broker-primary: #4DA3FF;
    --broker-secondary: #6AB8FF;
    --broker-dark: #1A2844;
    --broker-darker: #0C0F14;
    --broker-light: #E8EEF6;
    --broker-accent: #FFB84D;
    --broker-success: #4CAF50;
    --broker-premium: #FFD700;
}

.rapido-header-logo {
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 100;
 }

/* Hero Section */
.broker-hero-section {
    background: linear-gradient(135deg, #1A2844 0%, #2D3E5F 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.broker-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(77, 163, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(106, 184, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.broker-hero-content {
    position: relative;
    z-index: 2;
}

.broker-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4DA3FF 0%, #6AB8FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(77, 163, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.broker-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.broker-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.broker-hero-text {
    font-size: 1.15rem;
    color: var(--broker-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.broker-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--broker-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--broker-light);
    font-weight: 500;
}

.broker-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-broker {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #4DA3FF 0%, #2E5CFF 100%);
    color: #FFFFFF !important; /* Forcer le blanc */
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(77, 163, 255, 0.4);
    border: none;
}

.btn-primary-broker:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(77, 163, 255, 0.5);
    color: #FFFFFF !important;
}

.btn-secondary-broker {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-broker:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
    text-decoration: none;
}

/* Floating Domain Cards Animation */
.broker-hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.floating-card-1 {
    top: 5%;
    left: 2%;
    animation-delay: 0s;
    width: 220px;
}

.floating-card-2 {
    top: 28%;
    right: 5%;
    animation-delay: 1s;
    width: 200px;
}

.floating-card-3 {
    bottom: 12%;
    left: 0%;
    animation-delay: 2s;
    width: 240px;
}

.floating-card-4 {
    top: 65%;
    right: 2%;
    animation-delay: 3s;
    width: 190px;
}

.floating-card-5 {
    top: -10%;
    right: 35%;
    animation-delay: 1.5s;
    width: 180px;
}

.floating-card-6 {
    top: 15%;
    right: 25%;
    animation-delay: 2.5s;
    width: 210px;
}

.floating-card-7 {
    bottom: 42%;
    left: 15%;
    animation-delay: 3.5s;
    width: 195px;
}

.floating-card-8 {
    top: 48%;
    left: 40%;
    animation-delay: 4s;
    width: 185px;
}

.floating-card-9 {
    bottom: -10%;
    right: 42%;
    animation-delay: 4.5s;
    width: 200px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-25px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.card-domain-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-domain-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4DA3FF 0%, #6AB8FF 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-domain-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4DA3FF 0%, #2E5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-domain-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(77, 163, 255, 0.1);
    color: #4DA3FF;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.card-domain-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

/* responsive */
@media (max-width: 768px) {
    .broker-hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .broker-hero-content {
        padding: 0 10px;
    }
    
    .broker-hero-visual {
        display: none;
    }
}

/* Benefits Section */
.broker-benefits-section {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.broker-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(0,0,0,.015) 49px, rgba(0,0,0,.015) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(0,0,0,.015) 49px, rgba(0,0,0,.015) 50px);
    opacity: 0.6;
    pointer-events: none;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--broker-dark);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--broker-primary), #60a5fa);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6B7C93;
    font-weight: 500;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(26, 40, 68, 0.15);
    border-color: var(--broker-primary);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0effe 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--broker-primary) 0%, #2563eb 100%);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

.benefit-icon span {
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--broker-dark);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: var(--broker-primary);
}

.benefit-text {
    font-size: 1rem;
    color: #6B7C93;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .broker-benefits-section {
        padding: 60px 30px;
    }

    .broker-benefits-section .row {
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 30px 24px;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}


/* Domains Section */
.broker-domains-section {
    padding: 100px 0;
    background: #FFFFFF;
}

/* Filters */
.domains-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: #F8FAFC;
    padding: 24px;
    border-radius: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--broker-dark);
    margin: 0;
}

.filter-select,
.filter-search {
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--broker-dark);
    background: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
}

.filter-select:focus,
.filter-search:focus {
    border-color: var(--broker-primary);
    box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1);
}

/* Domains Grid */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.domain-card {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26, 40, 68, 0.12);
    border-color: var(--broker-primary);
}

.domain-card.featured {
    border-color: var(--broker-premium);
    background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}

.domain-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--broker-premium);
    color: var(--broker-darker);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.domain-card-header {
    margin-bottom: 20px;
}

.domain-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--broker-dark);
    margin-bottom: 12px;
    word-break: break-word;
}

.domain-card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--broker-primary);
}

.domain-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.domain-feature {
    font-size: 0.9rem;
    color: #6B7C93;
    display: flex;
    align-items: center;
}

.btn-contact-domain {
    width: 100%;
    background: var(--broker-dark);
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-domain:hover {
    background: var(--broker-primary);
    color: var(--broker-darker);
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--broker-dark);
    margin-bottom: 12px;
}

.no-results-text {
    font-size: 1.1rem;
    color: #6B7C93;
    max-width: 500px;
    margin: 0 auto;
}
/* Modal */
.domain-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.domain-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 40, 68, 0.75);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.domain-modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.domain-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: #F8FAFC;
    color: var(--broker-dark);
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.domain-modal-close:hover {
    background: #E2E8F0;
    transform: rotate(90deg);
}

.domain-modal-header {
    padding: 40px 40px 30px;
    border-bottom: 2px solid #F8FAFC;
}

.domain-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--broker-dark);
    margin-bottom: 12px;
}

.domain-modal-subtitle {
    font-size: 1rem;
    color: #6B7C93;
    margin-bottom: 8px;
}

.domain-modal-subtitle strong {
    color: var(--broker-primary);
    font-weight: 700;
}

.domain-modal-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--broker-primary);
    margin: 0;
}

.domain-contact-form {
    padding: 10px 40px 40px;
}

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

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--broker-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--broker-dark);
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--broker-primary);
    box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1);
}

.form-control::placeholder {
    color: #94A3B8;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.btn-submit-domain {
    width: 100%;
    background: var(--broker-primary);
    color: #FFFFFF;
    padding: 16px 24px;
    margin-top: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-domain:hover:not(:disabled) {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 163, 255, 0.3);
}

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

.btn-submit-domain.loading .btn-text {
    opacity: 0;
}

.btn-submit-domain.loading .btn-loader {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    animation: rotate 1s linear infinite;
    width: 24px;
    height: 24px;
}

.spinner circle {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Modal */
@media (max-width: 768px) {
    .domain-modal-content {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
    }
    
    .domain-modal-header,
    .domain-contact-form {
        padding-left: 24px;
        padding-right: 24px;
    }
}


/* Sell Section */
.broker-sell-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E8EEF6 100%);
}

.sell-badge {
    display: inline-block;
    background: rgba(255, 184, 77, 0.2);
    border: 1px solid rgba(255, 184, 77, 0.4);
    color: #D97706;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(77, 163, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.sell-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

.sell-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--broker-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.sell-text {
    font-size: 1.1rem;
    color: #6B7C93;
    line-height: 1.7;
    margin-bottom: 32px;
}

.sell-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sell-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--broker-dark);
}

.benefit-check {
    color: var(--broker-success);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Sell Form */
.sell-form-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(26, 40, 68, 0.1);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--broker-dark);
    margin-bottom: 32px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--broker-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--broker-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--broker-primary);
    box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1);
}

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

.btn-submit-sell {
    width: 100%;
    background: var(--broker-primary);
    color: var(--broker-light);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 163, 255, 0.3);
}

.btn-submit-sell:hover {
    background: var(--broker-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 163, 255, 0.4);
}

.form-message {
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--broker-success);
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* Final CTA */
.broker-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2844 0%, #2D3E5F 100%);
    position: relative;
    overflow: hidden;
}

.broker-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(77, 163, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(106, 184, 255, 0.15) 0%, transparent 50%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.15rem;
    color: var(--broker-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-final-cta {
    display: inline-block;
    background: var(--broker-primary);
    color: var(--broker-light);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(77, 163, 255, 0.4);
}

.btn-final-cta:hover {
    background: var(--broker-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(77, 163, 255, 0.5);
    color: var(--broker-darker);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .broker-hero-title {
        font-size: 2.5rem;
    }
    
    .broker-hero-visual {
        height: 400px;
        margin-top: 60px;
    }
    
    .floating-domain-card {
        min-width: 180px;
        padding: 20px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-connector {
        width: 3px;
        height: 60px;
        top: 0;
        background: linear-gradient(180deg, var(--broker-primary) 0%, var(--broker-secondary) 100%);
    }
    
    .sell-content {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .broker-hero-section {
        padding: 60px 0 80px;
    }
    
    .broker-hero-title {
        font-size: 2rem;
    }
    
    .broker-hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .domains-filters {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sell-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
}

.swal2-container {
    z-index: 10001 !important;
}