/* Reseller Hosting - Modern Design 2025 */
/* Green/Teal Premium Theme */

:root {
    --reseller-primary: #059669;
    --reseller-primary-dark: #047857;
    --reseller-primary-light: #10b981;
    --reseller-accent: #34d399;
    --reseller-gold: #f59e0b;
    --reseller-dark: #0f172a;
    --reseller-darker: #020617;
    --reseller-text: #e2e8f0;
    --reseller-text-muted: #94a3b8;
    --reseller-glass: rgba(5, 150, 105, 0.1);
    --reseller-glass-border: rgba(5, 150, 105, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.reseller-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--reseller-darker) 0%, #0a1628 50%, var(--reseller-darker) 100%);
}

.reseller-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.reseller-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.reseller-hero .container {
    position: relative;
    z-index: 1;
}

.reseller-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reseller-hero-text {
    text-align: right;
}

.reseller-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--reseller-glass), rgba(52, 211, 153, 0.15));
    border: 1px solid var(--reseller-glass-border);
    border-radius: 50px;
    color: var(--reseller-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.reseller-badge svg {
    color: var(--reseller-gold);
}

.reseller-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: right;
}

.reseller-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--reseller-primary-light), var(--reseller-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reseller-hero-desc {
    font-size: 1.2rem;
    color: var(--reseller-text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.reseller-hero-desc strong {
    color: var(--reseller-accent);
}

.reseller-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.reseller-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--reseller-glass);
    border: 1px solid var(--reseller-glass-border);
    border-radius: 12px;
    color: var(--reseller-text);
    font-size: 14px;
    font-weight: 500;
}

.reseller-feature-item i {
    color: var(--reseller-accent);
    font-size: 16px;
}

.reseller-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-reseller-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.btn-reseller-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.5);
    color: #fff;
}

.btn-reseller-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--reseller-text);
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--reseller-glass-border);
    cursor: pointer;
}

.btn-reseller-secondary:hover {
    background: var(--reseller-glass);
    border-color: var(--reseller-primary);
    color: #fff;
}

/* Hero Visual */
.reseller-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.reseller-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reseller-icon-float {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.2) 0%, rgba(4, 120, 87, 0.3) 100%);
    border: 2px solid var(--reseller-glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatAnimation 6s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(5, 150, 105, 0.4);
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.reseller-icon-float .main-icon {
    width: 80px;
    height: 80px;
    color: var(--reseller-accent);
}

.orbit-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px dashed var(--reseller-glass-border);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

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

.reseller-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: floatCard 5s ease-in-out infinite;
}

.reseller-floating-card span:not(.card-icon) {
    font-size: 14px;
    font-weight: 600;
    color: var(--reseller-dark);
}

.reseller-floating-card .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
}

.reseller-floating-card .card-icon.green {
    background: linear-gradient(135deg, var(--reseller-accent), var(--reseller-primary-light));
}

.reseller-floating-card.card-1 {
    top: 60px;
    right: -40px;
    animation-delay: 0s;
}

.reseller-floating-card.card-2 {
    bottom: 80px;
    left: -20px;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.reseller-benefits {
    padding: 80px 0;
    background: var(--reseller-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--reseller-glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--reseller-primary);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.benefit-icon.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.benefit-icon.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.benefit-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--reseller-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.reseller-pricing {
    padding: 100px 0;
    background: #fff;
}

.section-header-modern {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(52, 211, 153, 0.15));
    border: 1px solid var(--reseller-glass-border);
    border-radius: 50px;
    color: var(--reseller-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--reseller-dark);
    margin-bottom: 16px;
}

.section-header-modern p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Pricing Grid */
.reseller-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Card */
.reseller-price-card {
    background: #fff;
    border: 2px solid var(--reseller-primary);
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s ease;
}

.reseller-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(5, 150, 105, 0.15);
}

/* Popular Card */
.reseller-price-card.popular {
    background: linear-gradient(180deg, var(--reseller-darker) 0%, var(--reseller-dark) 100%);
    border: 2px solid var(--reseller-primary);
    transform: scale(1.02);
    z-index: 2;
}

.reseller-price-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

.reseller-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(5, 150, 105, 0.2);
}

.reseller-price-card.popular .reseller-card-header {
    border-bottom-color: var(--reseller-glass-border);
}

.reseller-plan-name {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--reseller-primary);
    margin-bottom: 8px;
}

.reseller-price-card.popular .reseller-plan-name {
    color: var(--reseller-accent);
}

.reseller-plan-space {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--reseller-primary);
}

.reseller-price-card.popular .reseller-plan-space {
    background: var(--reseller-glass);
    color: var(--reseller-accent);
}

.reseller-card-price {
    text-align: center;
    margin-bottom: 24px;
}

.reseller-card-price .price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--reseller-primary);
}

.reseller-price-card.popular .price-amount {
    color: #fff;
}

.reseller-card-price .price-period {
    font-size: 14px;
    color: #64748b;
}

.reseller-price-card.popular .price-period {
    color: var(--reseller-text-muted);
}

.yearly-discount {
    display: block;
    font-size: 12px;
    color: var(--reseller-primary);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.15));
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 600;
}

.reseller-price-card.popular .yearly-discount {
    color: var(--reseller-accent);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(16, 185, 129, 0.2));
}

.reseller-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.reseller-features-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.reseller-price-card.popular .reseller-features-list li {
    border-bottom-color: var(--reseller-glass-border);
}

.reseller-features-list li:last-child {
    border-bottom: none;
}

.feature-label {
    color: #64748b;
}

.reseller-price-card.popular .feature-label {
    color: var(--reseller-text-muted);
}

.feature-value {
    font-weight: 600;
    color: var(--reseller-dark);
}

.reseller-price-card.popular .feature-value {
    color: #fff;
}

.reseller-btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reseller-btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
    color: #fff;
}

.reseller-btn-order.primary {
    background: linear-gradient(135deg, var(--reseller-accent), var(--reseller-primary-light));
}

/* Consultation Banner */
.reseller-consult-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.3);
}

.consult-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.consult-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 24px;
    color: #fff;
}

.consult-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.consult-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.consult-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.consult-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.consult-btn.online {
    background: #fff;
    color: var(--reseller-primary);
    border-color: transparent;
}

.consult-btn.online:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.reseller-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--reseller-darker) 0%, #0a1628 100%);
}

.reseller-features-section .section-header-modern h2 {
    color: #fff;
}

.reseller-features-section .section-header-modern p {
    color: var(--reseller-text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--reseller-glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--reseller-primary);
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--reseller-glass), rgba(52, 211, 153, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--reseller-accent);
}

.feature-card .feature-icon.teal svg { color: #14b8a6; }
.feature-card .feature-icon.orange svg { color: #f59e0b; }
.feature-card .feature-icon.purple svg { color: #8b5cf6; }
.feature-card .feature-icon.blue svg { color: #3b82f6; }
.feature-card .feature-icon.pink svg { color: #ec4899; }

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--reseller-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.reseller-faq {
    padding: 100px 0;
    background: var(--reseller-darker);
}

.reseller-faq .section-header-modern h2 {
    color: #fff;
}

.reseller-faq .section-header-modern p {
    color: var(--reseller-text-muted);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--reseller-glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--reseller-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    color: var(--reseller-accent);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--reseller-text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.reseller-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a1628 0%, var(--reseller-darker) 100%);
}

.cta-card {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-content h2 {
    position: relative;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    position: relative;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: var(--reseller-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--reseller-primary-dark);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ============================================
   MODAL
   ============================================ */
.consult-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.modal-visual {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-avatar {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    border-radius: 50%;
    color: #fff;
    font-size: 60px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.3);
}

.modal-avatar svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
    flex-shrink: 0;
}

.modal-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 15px;
    color: var(--reseller-dark);
}

.modal-contact i {
    color: var(--reseller-primary);
}

.modal-form {
    padding: 50px 40px;
}

.modal-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--reseller-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-free {
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--reseller-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.modal-form input[type="text"],
.modal-form input[type="tel"],
.modal-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--reseller-primary);
}

.time-select {
    margin: 20px 0;
}

.time-select > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--reseller-dark);
    margin-bottom: 12px;
}

.time-opts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.time-opts label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}

.time-opts input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--reseller-primary);
}

.form-btns {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.btn-cancel {
    flex: 1;
    padding: 16px;
    background: #fff;
    color: var(--reseller-dark);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #f9fafb;
}

.btn-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--reseller-primary), var(--reseller-primary-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .reseller-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reseller-price-card.popular {
        transform: scale(1);
    }

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

@media (max-width: 992px) {
    .reseller-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reseller-hero-text {
        text-align: center;
    }

    .reseller-hero h1 {
        text-align: center;
        font-size: 2.5rem;
    }

    .reseller-hero-features {
        justify-content: center;
    }

    .reseller-hero-buttons {
        justify-content: center;
    }

    .reseller-hero-visual {
        min-height: 350px;
    }

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

    .modal-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .reseller-hero {
        padding: 80px 0 60px;
    }

    .reseller-hero h1 {
        font-size: 2rem;
    }

    .reseller-hero-features {
        flex-direction: column;
        align-items: center;
    }

    .reseller-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header-modern h2 {
        font-size: 1.75rem;
    }

    .reseller-consult-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .consult-content {
        flex-direction: column;
    }

    .consult-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .reseller-hero h1 {
        font-size: 1.75rem;
    }

    .reseller-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-reseller-primary,
    .btn-reseller-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        padding: 50px 24px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   WINDOWS THEME - Indigo/Blue
   ============================================ */
.reseller-hero.windows .reseller-hero-bg {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(129, 140, 248, 0.2) 0%, transparent 50%);
}

.reseller-hero.windows .reseller-badge {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(129, 140, 248, 0.15));
    border-color: rgba(79, 70, 229, 0.2);
    color: #818cf8;
}

.reseller-hero.windows .reseller-badge svg {
    color: #0ea5e9;
}

.reseller-hero.windows h1 .text-gradient {
    background: linear-gradient(135deg, #6366f1, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reseller-hero.windows .reseller-hero-desc strong {
    color: #818cf8;
}

.reseller-hero.windows .reseller-feature-item {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.reseller-hero.windows .reseller-feature-item i {
    color: #818cf8;
}

.reseller-hero.windows .btn-reseller-primary {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.reseller-hero.windows .btn-reseller-primary:hover {
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
}

.reseller-hero.windows .btn-reseller-secondary {
    border-color: rgba(79, 70, 229, 0.3);
}

.reseller-hero.windows .btn-reseller-secondary:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
}

.reseller-hero.windows .reseller-icon-float {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.2) 0%, rgba(67, 56, 202, 0.3) 100%);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 30px 80px rgba(79, 70, 229, 0.4);
}

.reseller-hero.windows .reseller-icon-float .main-icon {
    color: #818cf8;
}

.reseller-hero.windows .orbit-ring {
    border-color: rgba(79, 70, 229, 0.2);
}

.reseller-hero.windows .reseller-floating-card .card-icon {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

.reseller-hero.windows .reseller-floating-card .card-icon.blue {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

/* Benefits - Windows */
.reseller-benefits.windows .benefit-card:hover {
    border-color: #4f46e5;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

.reseller-benefits.windows .benefit-icon {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.reseller-benefits.windows .benefit-icon.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

/* Pricing - Windows */
.reseller-pricing.windows .section-badge {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(129, 140, 248, 0.15));
    border-color: rgba(79, 70, 229, 0.2);
    color: #4f46e5;
}

.reseller-pricing.windows .reseller-price-card {
    border-color: #4f46e5;
}

.reseller-pricing.windows .reseller-price-card:hover {
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.15);
}

.reseller-pricing.windows .reseller-price-card.popular {
    border-color: #4f46e5;
}

.reseller-pricing.windows .popular-badge {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.reseller-pricing.windows .reseller-card-header {
    border-bottom-color: rgba(79, 70, 229, 0.2);
}

.reseller-pricing.windows .reseller-plan-name {
    color: #4f46e5;
}

.reseller-pricing.windows .reseller-price-card.popular .reseller-plan-name {
    color: #818cf8;
}

.reseller-pricing.windows .reseller-plan-space {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.reseller-pricing.windows .reseller-price-card.popular .reseller-plan-space {
    background: rgba(79, 70, 229, 0.2);
    color: #818cf8;
}

.reseller-pricing.windows .reseller-card-price .price-amount {
    color: #4f46e5;
}

.reseller-pricing.windows .reseller-features-list li {
    border-bottom-color: rgba(79, 70, 229, 0.1);
}

.reseller-pricing.windows .feature-value.tick::before {
    content: "\2713";
    color: #4f46e5;
    font-weight: bold;
}

.reseller-pricing.windows .reseller-btn-order {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

.reseller-pricing.windows .reseller-btn-order:hover {
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.reseller-pricing.windows .reseller-btn-order.primary {
    background: linear-gradient(135deg, #818cf8, #6366f1);
}

/* Pricing Grid - 6 columns for Windows */
.reseller-pricing-grid.six-cols {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
    .reseller-pricing-grid.six-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reseller-pricing-grid.six-cols {
        grid-template-columns: 1fr;
    }
}

/* Consultation Banner - Windows */
.reseller-consult-banner.windows {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.reseller-consult-banner.windows .consult-btn.online {
    color: #4f46e5;
}

/* Features Section - Windows */
.reseller-features-section.windows .feature-card:hover {
    border-color: #4f46e5;
}

.reseller-features-section.windows .feature-card .feature-icon {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(129, 140, 248, 0.2));
}

.reseller-features-section.windows .feature-card .feature-icon svg {
    color: #818cf8;
}

.reseller-features-section.windows .feature-card .feature-icon.indigo svg {
    color: #6366f1;
}

/* FAQ - Windows */
.reseller-faq.windows .faq-item:hover {
    border-color: #4f46e5;
}

.reseller-faq.windows .faq-question i {
    color: #818cf8;
}

/* CTA - Windows */
.reseller-cta.windows .cta-card {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

.reseller-cta.windows .btn-cta-primary {
    color: #4f46e5;
}

.reseller-cta.windows .btn-cta-primary:hover {
    color: #4338ca;
}

/* Modal - Windows */
.consult-modal.windows .modal-visual {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.consult-modal.windows .modal-avatar {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.consult-modal.windows .modal-avatar svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
    flex-shrink: 0;
}

.consult-modal.windows .modal-contact i {
    color: #4f46e5;
}

.consult-modal.windows .badge-free {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.consult-modal.windows .modal-form input:focus {
    border-color: #4f46e5;
}

.consult-modal.windows .time-opts input[type="radio"] {
    accent-color: #4f46e5;
}

.consult-modal.windows .btn-submit {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

.consult-modal.windows .btn-submit:hover {
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

/* ============================================
   BILLING TABS
   ============================================ */
.billing-tabs-wrapper { display: flex; justify-content: center; margin-bottom: 48px; }
.billing-tabs { display: inline-flex; align-items: center; position: relative; padding: 5px; background: #fff; border-radius: 14px; border: 2px solid #e2e8f0; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
.billing-tab { position: relative; z-index: 1; padding: 14px 32px; font-size: 15px; font-weight: 700; color: #1e3a5f; background: none; border: none; border-radius: 10px; cursor: pointer; transition: all 0.3s ease; user-select: none; display: inline-flex; align-items: center; gap: 8px; }
.billing-tab.active { color: #fff; background: linear-gradient(135deg, #21a0d5, #00d4aa); box-shadow: 0 4px 15px rgba(33, 160, 213, 0.35); }
.billing-tab:not(.active) { color: #1e3a5f; background: #f1f5f9; }
.billing-tab:not(.active):hover { background: #e2e8f0; }
.discount-badge { display: inline-block; padding: 3px 9px; background: rgba(255,255,255,0.25); color: #fff; font-size: 11px; font-weight: 700; border-radius: 20px; animation: pulse-badge 2s ease-in-out infinite; }
.billing-tab:not(.active) .discount-badge { background: linear-gradient(135deg, #00d4aa, #00a67d); color: #fff; }
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.price-original { margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.price-old { font-size: 20px; font-weight: 600; color: #94a3b8; text-decoration: line-through; text-decoration-color: #21a0d5; text-decoration-thickness: 2px; }
.price-save-badge { display: inline-block; padding: 3px 10px; background: linear-gradient(135deg, rgba(33,160,213,0.1), rgba(0,212,170,0.1)); color: #21a0d5; font-size: 12px; font-weight: 700; border-radius: 20px; border: 1px solid rgba(33,160,213,0.25); }
.price-period-sub { display: block; font-size: 12px; color: #94a3b8; margin-top: 4px; }

/* Menu spacing */
.main-menu > li {
    margin-left: 12px !important;
}

.main-menu > li > a {
    padding: 15px 16px !important;
}
