/**
 * Partners Landing Page CSS - Nordersun v6.2
 * Dark premium theme for wholesale/reseller platform
 */

/* ==========================================
   BASE & UTILITIES
   ========================================== */

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a12;
    color: #f1f5f9;
    overflow-x: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.section-subheading {
    font-size: 18px;
    color: #a0aec0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #ffc220;
}

/* ==========================================
   1. HEADER
   ========================================== */

.partners-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
}

.partners-badge {
    font-size: 12px;
    font-weight: 600;
    color: #0a0a12;
    background: linear-gradient(135deg, #ffc220, #f59e0b);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Toggle */
.lang-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 194, 32, 0.3);
}

.lang-active {
    color: #ffc220;
}

.lang-inactive {
    color: #64748b;
}

.lang-separator {
    color: #334155;
}

/* Account Icon */
.header-account-icon {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #a0aec0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-account-icon:hover {
    color: #ffc220;
    border-color: rgba(255, 194, 32, 0.3);
}

/* Hamburger */
.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.menu-line {
    height: 2px;
    background: #a0aec0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-button:hover .menu-line {
    background: #ffc220;
}

/* ==========================================
   2. HERO
   ========================================== */

.partners-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 194, 32, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.partners-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA Buttons */
.btn-cta-primary {
    background: linear-gradient(135deg, #ffc220 0%, #f59e0b 100%);
    color: #0a0a12;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 194, 32, 0.35);
}

.btn-cta-secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid rgba(96, 165, 250, 0.3);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.08);
}

/* Phone Mockup */
.hero-graphic {
    display: flex;
    justify-content: center;
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-mockup {
    width: 280px;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border-radius: 36px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-screen {
    background: #0d0d1a;
    border-radius: 26px;
    padding: 16px;
    min-height: 420px;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 4px 16px;
    font-size: 12px;
    color: #64748b;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.esim-card-anim {
    background: linear-gradient(135deg, rgba(255, 194, 32, 0.12), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(255, 194, 32, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.esim-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffc220, #f59e0b);
    border-radius: 6px;
    margin: 0 auto 10px;
    animation: chipPulse 2s ease infinite;
}

.esim-label {
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 6px;
}

.esim-status {
    font-size: 12px;
    color: #34d399;
}

.esim-status i {
    animation: statusBlink 2s ease infinite;
}

.phone-plans {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-plan {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #a0aec0;
    opacity: 0;
    animation: planSlideIn 0.5s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.3s + 0.5s);
}

.mini-plan:nth-child(1) { --i: 0; }
.mini-plan:nth-child(2) { --i: 1; }
.mini-plan:nth-child(3) { --i: 2; }

/* ==========================================
   3. STATS BAR
   ========================================== */

.partners-stats {
    background: rgba(255, 194, 32, 0.03);
    border-top: 1px solid rgba(255, 194, 32, 0.08);
    border-bottom: 1px solid rgba(255, 194, 32, 0.08);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #ffc220;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #a0aec0;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   4. WHAT WE OFFER
   ========================================== */

.offer-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.offer-card:hover {
    border-color: rgba(255, 194, 32, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.offer-icon {
    font-size: 36px;
    color: #ffc220;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 12px;
}

.offer-card p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
}

/* ==========================================
   5. HOW IT WORKS
   ========================================== */

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr 50px;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc220, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #0a0a12;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.5;
}

.step-icon-graphic {
    font-size: 24px;
    color: #60a5fa;
    text-align: center;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 194, 32, 0.3), rgba(255, 194, 32, 0.05));
    margin-left: 27px;
    transform-origin: top;
}

/* ==========================================
   6. EARNINGS CALCULATOR
   ========================================== */

.calculator-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 194, 32, 0.15);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.calc-input-group {
    margin-bottom: 36px;
}

.calc-input-group label {
    display: block;
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-slider-value {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffc220;
    margin-top: 12px;
}

/* Custom range slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #ffc220, #f59e0b);
    outline: none;
    opacity: 0.9;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffc220;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 194, 32, 0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffc220;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 194, 32, 0.4);
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-result-item:last-child {
    border-bottom: none;
}

.calc-label {
    font-size: 15px;
    color: #a0aec0;
}

.calc-amount {
    font-size: 20px;
    font-weight: 700;
    color: #f1f5f9;
}

.calc-result-item.highlight {
    background: rgba(255, 194, 32, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    border-bottom: none;
}

.calc-result-item.highlight .calc-amount {
    color: #ffc220;
    font-size: 28px;
}

/* ==========================================
   7. PRICING TABLE
   ========================================== */

.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-table th {
    background: rgba(255, 194, 32, 0.08);
    color: #ffc220;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 24px;
    text-align: left;
}

.pricing-table td {
    padding: 16px 24px;
    font-size: 15px;
    color: #a0aec0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.profit-cell {
    color: #34d399 !important;
    font-weight: 700;
}

.pricing-note {
    font-size: 13px;
    color: #64748b;
    margin-top: 16px;
    text-align: center;
}

/* ==========================================
   8. DASHBOARD PREVIEW
   ========================================== */

.dashboard-mockup {
    max-width: 900px;
    margin: 0 auto;
}

.mockup-window {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background: #0d0d1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #34d399; }

.mockup-url {
    font-size: 12px;
    color: #64748b;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
    max-width: 250px;
}

.mockup-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 320px;
}

.mockup-sidebar {
    background: rgba(15, 15, 25, 0.95);
    padding: 24px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-menu-item {
    padding: 12px 20px;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-menu-item.active {
    color: #ffc220;
    background: rgba(255, 194, 32, 0.06);
    border-left: 3px solid #ffc220;
}

.mockup-main {
    padding: 24px;
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.mockup-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.mockup-stat span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffc220;
}

.mockup-stat small {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(255, 194, 32, 0.3), rgba(96, 165, 250, 0.2));
    border-radius: 4px 4px 0 0;
    min-height: 8px;
}

/* ==========================================
   9. WHAT IS ESIM
   ========================================== */

.esim-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.esim-phone-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.esim-chip-large {
    width: 160px;
    height: 110px;
    background: linear-gradient(145deg, #ffd54f, #ffc220 30%, #f59e0b 70%, #e8890a);
    border-radius: 14px;
    position: relative;
    box-shadow:
        0 10px 40px rgba(255, 194, 32, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: chipPulse 3s ease infinite;
    overflow: hidden;
}

.esim-chip-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%),
        linear-gradient(315deg, rgba(0,0,0,0.08) 0%, transparent 50%);
    border-radius: 14px;
    pointer-events: none;
}

.esim-chip-large::after {
    content: 'eSIM';
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 9px;
    font-weight: 700;
    color: rgba(10, 10, 18, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chip-contacts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    padding: 4px;
    background: rgba(10, 10, 18, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(10, 10, 18, 0.12);
}

.chip-contact {
    background: linear-gradient(135deg, rgba(10,10,18,0.06), rgba(10,10,18,0.15));
    border-radius: 2px;
    border: 1px solid rgba(10, 10, 18, 0.1);
}

.chip-center-module {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(10, 10, 18, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.esim-label-float {
    font-size: 14px;
    color: #a0aec0;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.esim-info-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.esim-info-text p {
    font-size: 16px;
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.esim-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.esim-benefits li {
    font-size: 15px;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.esim-benefits li i {
    color: #34d399;
    font-size: 16px;
    flex-shrink: 0;
}

/* ==========================================
   10. COMPATIBILITY
   ========================================== */

.compat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.compat-brand {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.compat-brand:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
}

.compat-brand i {
    font-size: 32px;
    color: #60a5fa;
    display: block;
    margin-bottom: 10px;
}

.brand-icon-text {
    font-size: 34px;
    font-weight: 700;
    color: #60a5fa;
    display: block;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.compat-brand span:last-child {
    font-size: 13px;
    color: #a0aec0;
    font-weight: 500;
}

.compat-check {
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.compat-check code {
    color: #ffc220;
    font-weight: 600;
    background: rgba(255, 194, 32, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ==========================================
   11. TESTIMONIALS CAROUSEL
   ========================================== */

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: default;
}

.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonials-carousel.scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 194, 32, 0.3) transparent;
}

.testimonials-carousel.scrollable::-webkit-scrollbar {
    height: 6px;
}
.testimonials-carousel.scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
}
.testimonials-carousel.scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 194, 32, 0.3);
    border-radius: 3px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 194, 32, 0.15);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--avatar-color, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonials-dot.active {
    background: #ffc220;
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   12. FAQ
   ========================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(255, 194, 32, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #ffc220;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.7;
}

/* ==========================================
   13. FINAL CTA
   ========================================== */

.partners-final-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 194, 32, 0.05), rgba(96, 165, 250, 0.05));
    border-top: 1px solid rgba(255, 194, 32, 0.08);
    border-bottom: 1px solid rgba(255, 194, 32, 0.08);
}

.partners-final-cta h2 {
    font-size: 40px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.partners-final-cta p {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    font-size: 18px;
    padding: 18px 48px;
    border-radius: 14px;
}

/* ==========================================
   14. FOOTER
   ========================================== */

.partners-footer {
    background: rgba(8, 8, 16, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer-brand-text {
    font-size: 16px;
    font-weight: 600;
    color: #a0aec0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc220;
}

.footer-copyright {
    font-size: 13px;
    color: #475569;
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

/* ==========================================
   FLOATING CTA
   ========================================== */

.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #ffc220, #f59e0b);
    color: #0a0a12;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-cta:hover {
    transform: translateY(-3px);
}

.floating-cta.show {
    display: flex;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-title {
        font-size: 40px;
    }
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-content {
        grid-template-columns: 160px 1fr;
    }
    .esim-info-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .esim-benefits {
        align-items: center;
    }
    .compat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 70px 20px;
    }
    .section-heading {
        font-size: 32px;
    }
    .section-subheading {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number {
        font-size: 36px;
    }
    .phone-mockup {
        width: 240px;
    }
    .phone-screen {
        min-height: 340px;
    }
    .step-item {
        grid-template-columns: 50px 1fr;
    }
    .step-icon-graphic {
        display: none;
    }
    .calculator-card {
        padding: 28px 20px;
    }
    .mockup-content {
        grid-template-columns: 1fr;
    }
    .mockup-sidebar {
        display: none;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .partners-final-cta h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .offer-cards {
        grid-template-columns: 1fr;
    }
    .compat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }
    .testimonial-card {
        min-width: calc(100% - 0px);
    }
}

/* ==========================================
   LOGIN MODAL DARK THEME OVERRIDE
   ========================================== */

[data-theme="dark"] .login-modal {
    background: #12121c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .login-modal-close {
    background: rgba(255, 255, 255, 0.06);
    color: #a0aec0;
}
[data-theme="dark"] .login-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}

[data-theme="dark"] .login-modal-header h2 {
    color: #f1f5f9;
}
[data-theme="dark"] .login-modal-header p {
    color: #a0aec0;
}

[data-theme="dark"] .login-input-group label {
    color: #a0aec0;
}

[data-theme="dark"] .login-input-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    box-sizing: border-box;
}
[data-theme="dark"] .login-input-group input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}
[data-theme="dark"] .login-input-group input::placeholder {
    color: #64748b;
}

[data-theme="dark"] .login-submit-btn {
    background: linear-gradient(135deg, #ffc220 0%, #f59e0b 100%);
    color: #0a0a12;
}

[data-theme="dark"] .login-footer {
    border-top-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .login-footer p {
    color: #a0aec0;
}
[data-theme="dark"] .login-footer span {
    color: #64748b;
}

[data-theme="dark"] .login-error {
    background: rgba(220, 38, 38, 0.1);
    color: #f87171;
}

/* ==========================================
   SIGNUP MODAL (Partners)
   ========================================== */

.signup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 20px;
}
.signup-modal-overlay.active {
    display: flex;
}

.signup-modal {
    background: #12121c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    padding: 36px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.signup-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #a0aec0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.signup-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}

.signup-modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.signup-modal-header img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 14px;
}
.signup-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 6px;
}
.signup-modal-header p {
    font-size: 14px;
    color: #a0aec0;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #a0aec0;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signup-input-group input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: #f1f5f9;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
}
.signup-input-group input:focus {
    border-color: #ffc220;
    box-shadow: 0 0 0 3px rgba(255, 194, 32, 0.1);
}
.signup-input-group input::placeholder {
    color: #475569;
}

.signup-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ffc220, #f59e0b);
    color: #0a0a12;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}
.signup-submit-btn:hover {
    box-shadow: 0 4px 20px rgba(255, 194, 32, 0.35);
    transform: translateY(-1px);
}
.signup-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.signup-error {
    background: rgba(220, 38, 38, 0.1);
    color: #f87171;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    display: none;
}

.signup-success {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    display: none;
}

.signup-code-group {
    display: none;
    animation: modalSlideIn 0.3s ease;
}
.signup-code-group.visible {
    display: block;
}

.signup-divider {
    text-align: center;
    font-size: 12px;
    color: #475569;
    margin: 4px 0;
}

#signupCodeInput {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 6px;
    font-family: 'Courier New', monospace;
}
