/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent: #10b981;
    --accent-color: #3b82f6;
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
    --text-primary: #1f2937;
    --text-dark: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --background-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Trust Banner */
.trust-banner {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 10px 16px;
    background: transparent;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    justify-content: center;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
    z-index: -1;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}



.trust-item i {
    font-size: 16px;
    background: linear-gradient(135deg, #10b981, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.3));
}

/* Premium Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-logo:hover::before {
    left: 100%;
}

.nav-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.nav-logo i {
    font-size: 36px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-logo span {
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.nav-logo small {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 600;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.nav-links, .nav-links-luxury {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a, .nav-link-luxury {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 50px;
    background: transparent;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a::before, .nav-link-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(147, 51, 234, 0.8));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    z-index: -1;
}

.nav-links a:hover::before, .nav-link-luxury:hover::before {
    opacity: 1;
}

.nav-links a:hover, .nav-link-luxury:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.nav-links a.active, .nav-link-luxury.active {
    color: white;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(147, 51, 234, 0.9));
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Navigation Icons */
.link-icon-luxury {
    font-size: 16px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-link-luxury:hover .link-icon-luxury {
    transform: scale(1.1);
    opacity: 1;
}

.language-toggle {
    display: flex;
    background: var(--background-gray);
    border-radius: 20px;
    padding: 4px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-color);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-color);
}

/* ==================== SEO SECTIONS STYLES ==================== */

/* Operators Section */
.operators-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.operator-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

/* Modernized operator cards */
.operators-grid .operator-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
}

.operators-grid .operator-card .operator-logo i {
    font-size: 26px;
}

.operators-grid .operator-card .operator-features li {
    color: #475569;
}

.operator-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.operator-logo:hover {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.operator-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-icon i {
    font-size: 1.4rem;
    color: white;
}

.brand-content {
    flex: 1;
}

.brand-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.operator-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.operator-badge i {
    font-size: 0.8rem;
}

/* Brand icon colors */
.operator-logo.play .brand-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.operator-logo.orange .brand-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.operator-logo.plus .brand-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.operator-logo.tmobile .brand-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}



.operator-features ul {
    list-style: none;
    padding: 0;
}

/* Modern Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    padding: 12px 8px;
    margin: 0 -8px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1rem;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

/* Feature icon colors */
.feature-icon.speed { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.feature-icon.packages { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-icon.universal { background: linear-gradient(135deg, #10b981, #059669); }
.feature-icon.blik { background: linear-gradient(135deg, #f59e0b, #d97706); }
.feature-icon.no-login { background: linear-gradient(135deg, #ef4444, #dc2626); }
.feature-icon.flex { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.feature-icon.global { background: linear-gradient(135deg, #84cc16, #65a30d); }
.feature-icon.internet { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.feature-icon.auto { background: linear-gradient(135deg, #ec4899, #db2777); }
.feature-icon.instant { background: linear-gradient(135deg, #f97316, #ea580c); }
.feature-icon.account { background: linear-gradient(135deg, #14b8a6, #0d9488); }

/* Payment Methods */
.payment-methods {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.payment-methods h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-weight: 700;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.payment-method {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.payment-method i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-method h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.payment-method p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: white;
}

.seo-text {
    max-width: 900px;
    margin: 0 auto;
}

.seo-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 35px 0 15px 0;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.seo-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.seo-keywords {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.seo-keywords li {
    margin: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.seo-keywords li:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Modern SEO Benefits */
.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.seo-benefit-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.seo-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.4rem;
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.benefit-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-stats .stat {
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid #e2e8f0;
}

/* Benefit card colors */
.seo-benefit-card.leader .benefit-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.seo-benefit-card.speed .benefit-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.seo-benefit-card.security .benefit-icon { background: linear-gradient(135deg, #10b981, #059669); }
.seo-benefit-card.pricing .benefit-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

/* Interactive Guarantee Section */
.guarantee-interactive {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.guarantee-icon-animated {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon-animated i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

.guarantee-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.guarantee-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.highlight-time {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    color: #92400e;
}

.guarantee-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.stat-box .stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* SEO Hero Cards */
.seo-intro-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.intro-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.intro-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-card.speed .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.intro-card.global .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.intro-card .card-icon i {
    font-size: 1.4rem;
    color: white;
}

.intro-card .card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.intro-card .card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.highlight-instant {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    color: #166534;
}

/* Keywords Grid */
.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.keyword-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.keyword-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.keyword-card.trending {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.keyword-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.keyword-icon.play { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.keyword-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.keyword-icon.speed { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }

.keyword-icon i {
    font-size: 0.9rem;
    color: white;
}

.keyword-content {
    flex: 1;
}

.keyword-phrase {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.keyword-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.keyword-stats .searches {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.keyword-stats .period {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.trending-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* How It Works Header */
.how-it-works-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.process-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-stat:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.process-stat .stat-icon {
    font-size: 1.2rem;
}

.process-stat .stat-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Modern Step Cards */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-content {
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.detail-item i {
    font-size: 0.7rem;
    color: #10b981;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0369a1;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #7dd3fc;
}

.step-time.success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    border-color: #a7f3d0;
}

.step-time i {
    font-size: 0.7rem;
}

/* Step Card Colors */
.step-card.operator-step .step-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-card.data-step .step-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.step-card.payment-step .step-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-card.success-step .step-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Guarantee Features */
.guarantee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.guarantee-feature:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.guarantee-feature i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Why Us Header */
.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    border: 1px solid #7dd3fc;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Advanced Benefit Cards */
.benefit-card-advanced {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card-advanced:hover::before {
    transform: scaleX(1);
}

.benefit-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.benefit-icon-modern {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon-modern i {
    font-size: 1.6rem;
    color: white;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

.benefit-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.benefit-badge.instant { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.benefit-badge.secure { background: linear-gradient(135deg, #10b981, #059669); }
.benefit-badge.complete { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.benefit-badge.premium { background: linear-gradient(135deg, #f59e0b, #d97706); }

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.card-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-features .feature:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.benefit-features .feature i {
    font-size: 0.9rem;
    color: var(--primary-color);
    width: 16px;
}

.benefit-features .feature span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Benefit card icon colors */
.benefit-card-advanced.speed .benefit-icon-modern {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-card-advanced.security .benefit-icon-modern {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-card-advanced.operators .benefit-icon-modern {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-card-advanced.support .benefit-icon-modern {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Technology Showcase */
.technology-showcase {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    color: white;
}

.tech-header {
    text-align: center;
    margin-bottom: 40px;
}

.tech-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: white;
}

.tech-header p {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 1.4rem;
    color: white;
}

.tech-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: white;
}

.tech-content p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.4;
}

/* Enhanced CTA Button */
.cta-button-enhanced {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 16px;
    padding: 20px 32px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    margin: 2rem auto;
    max-width: 500px;
}

.cta-button-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button-enhanced:hover::before {
    left: 100%;
}

.cta-button-enhanced:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.button-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-icon i {
    font-size: 1.4rem;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    border-radius: 12px;
    animation: iconGlow 2s infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.button-content {
    flex: 1;
    text-align: left;
}

.button-main {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.button-sub {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.3;
}

.button-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-button-enhanced:hover .button-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    70% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Futuristic Hero Elements */
.hero-badge-tech {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge-tech:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 0.9rem;
    color: white;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-main {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-title-enhanced {
    text-align: center;
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 12px;
    line-height: 1.1;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.title-operators {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
}

.highlight-tech {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
}

.highlight-tech::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-pill::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-pill:hover::before {
    transform: scaleY(1);
}

.feature-pill:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-pill i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.feature-pill.security i {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-pill.speed i {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-pill.trust i {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-pill span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Trust Certification */
.trust-certification {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.trust-certification:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.08));
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

.cert-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cert-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
}

.cert-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent);
    border-radius: 50%;
    animation: certGlow 3s infinite;
}

@keyframes certGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.cert-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cert-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.cert-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cert-badge .badge-code {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.cert-badge .badge-year,
.cert-badge .badge-level,
.cert-badge .badge-standard {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Hero Capabilities */
.hero-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.capability-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.capability-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.capability-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.capability-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.icon-orbit {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: orbit 4s linear infinite;
}

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

.security-card .capability-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.speed-card .capability-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.trust-card .capability-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.capability-badge {
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.capability-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.capability-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.security-indicators,
.speed-metrics,
.trust-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.indicator,
.metric,
.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #f8fafc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.indicator:hover,
.metric:hover,
.proof-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.indicator i,
.proof-item i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.indicator span,
.proof-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.metric {
    justify-content: space-between;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsive for SEO Sections */
@media (max-width: 768px) {
    .seo-intro-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .keywords-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .guarantee-main {
        flex-direction: column;
        gap: 15px;
    }
    
    .guarantee-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .process-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-header {
        gap: 12px;
    }
    
    .trust-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card-advanced {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .technology-showcase {
        padding: 24px;
        margin-top: 40px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tech-item {
        padding: 16px;
    }
    
    .cta-button-enhanced {
        padding: 16px 24px;
        max-width: 100%;
        gap: 12px;
    }
    
    .button-icon {
        width: 40px;
        height: 40px;
    }
    
    .button-main {
        font-size: 1rem;
    }
    
    .button-sub {
        font-size: 0.75rem;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
    
    .title-operators {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 12px;
        margin: 30px 0;
    }
    
    .feature-pill {
        padding: 12px 20px;
        gap: 12px;
    }
    
    .feature-pill i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .feature-pill span {
        font-size: 0.9rem;
    }
    
    .hero-badge-tech {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .badge-main {
        font-size: 0.8rem;
    }
    
    .badge-sub {
        font-size: 0.7rem;
    }
    
    .hero-capabilities {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-card {
        padding: 20px;
    }
    
    .capability-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .trust-certification {
        padding: 20px;
    }
    
    .cert-main {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cert-badges {
        justify-content: center;
    }
    
    .operators-section {
        padding: 60px 0;
    }
    
    .operators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .operator-logo {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .operator-brand {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .brand-content h3 {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    .operator-card {
        padding: 20px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-method {
        padding: 20px;
    }
    
    .seo-content {
        padding: 60px 0;
    }
    
    .seo-text h2 {
        font-size: 28px;
    }
    
    .seo-text h3 {
        font-size: 20px;
        margin: 25px 0 10px 0;
    }
    
    .seo-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seo-keywords {
        padding: 15px;
    }
}

/* ==================== BLOG STYLES ==================== */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.blog-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.blog-stats .stat {
    text-align: center;
}

.blog-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.blog-stats .stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-categories h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.article-count {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
    background: white;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.articles-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

/* Icon Placeholders for Blog */
.icon-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.icon-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.icon-placeholder .operator-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* Operator-specific colors */
.play-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.orange-icon {
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.blik-icon {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.germany-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.plus-icon {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.paypal-icon {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.tmobile-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.article-card:hover .icon-placeholder {
    transform: scale(1.05);
}

.icon-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover .icon-placeholder::before {
    opacity: 1;
}

/* Article Link Styles */
.article-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.article-link:hover {
    text-decoration: none;
    color: inherit;
}

.article-link h3 {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-link:hover h3 {
    color: var(--primary-color);
}

.article-link p {
    color: var(--text-secondary);
}

.article-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Enhanced Form Trust Elements */
.security-badge {
    text-align: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.trust-indicator.verified {
    border-color: #10b981;
}

.trust-indicator.instant {
    border-color: #3b82f6;
}

.trust-indicator.guaranteed {
    border-color: #f59e0b;
}

.trust-indicator.verified i {
    color: #10b981;
}

.trust-indicator.instant i {
    color: #3b82f6;
}

.trust-indicator.guaranteed i {
    color: #f59e0b;
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

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

/* Payment Methods Preview */
.payment-methods-preview {
    margin: 25px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.payment-methods-preview h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: white;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-icon i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.payment-icon.blik i {
    color: #10b981;
}

.payment-icon.card i {
    color: #3b82f6;
}

.payment-icon.paypal i {
    color: #0070ba;
}

.payment-icon.transfer i {
    color: #6366f1;
}

/* Enhanced Submit Button */
.submit-button.enhanced {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.submit-button.enhanced:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.submit-button.enhanced .button-text {
    flex: 1;
    text-align: left;
}

.submit-button.enhanced .button-text span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.submit-button.enhanced .button-text small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.submit-button.enhanced .button-arrow {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.submit-button.enhanced:hover .button-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Stepper and operator badges */
.form-intro {
    margin-bottom: 24px;
}

.form-stepper {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
    margin: 0 0 16px 0;
}

.form-stepper .step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-stepper .step span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5f9f2;
    color: #10b981;
    font-size: 12px;
}

.form-stepper .step.active {
    border-color: #10b981;
    color: #065f46;
    background: linear-gradient(180deg, #f0fdf4, #ecfeff);
}

.operator-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.operator-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.operator-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.operator-badge.active {
    border-color: #10b981;
    background: #ecfdf5;
    color: #065f46;
}

.helper-text {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Fix for How It Works Icons Size */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.4rem !important;
    color: white;
}

.step:hover .step-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

/* Mobile responsiveness for steps */
@media (max-width: 768px) {
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem !important;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .form-trust-indicators {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-indicator {
        padding: 15px;
    }
    
    .trust-indicator i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 1rem !important;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .payment-icons {
        grid-template-columns: 1fr;
    }
    
    .submit-button.enhanced {
        padding: 15px 20px;
    }
    
    .submit-button.enhanced .button-text span {
        font-size: 1rem;
    }
    
    /* Mobile blog icons optimization */
    .icon-placeholder i {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .icon-placeholder .operator-name {
        font-size: 0.9rem;
    }
    
    .article-card {
        margin-bottom: 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.article-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-badge.new {
    background: #10b981;
    color: white;
}

.article-badge.popular {
    background: #f59e0b;
    color: white;
}

.article-badge.trending {
    background: #ef4444;
    color: white;
}

.article-badge.hot {
    background: #8b5cf6;
    color: white;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.article-meta .category {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.article-meta .date {
    color: var(--text-secondary);
    font-size: 12px;
}

.article-content h3 {
    margin-bottom: 12px;
}

.article-content h3 a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: var(--primary-color);
}

.article-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.newsletter-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-benefits span {
    font-size: 14px;
    color: var(--text-secondary);
}

.newsletter-form form {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.newsletter-privacy {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-header {
        padding: 80px 0 60px;
    }
    
    .blog-title {
        font-size: 32px;
    }
    
    .blog-subtitle {
        font-size: 16px;
    }
    
    .blog-stats {
        gap: 20px;
    }
    
    .blog-stats .stat-number {
        font-size: 24px;
    }
    
    .blog-categories {
        padding: 60px 0;
    }
    
    .blog-categories h2 {
        font-size: 28px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .blog-articles {
        padding: 60px 0;
    }
    
    .articles-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .articles-header h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .search-box {
        width: 100%;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
    }
    
    .newsletter-content h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 60px 0 40px;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .blog-subtitle {
        font-size: 14px;
    }
    
    .blog-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .article-content h3 a {
        font-size: 16px;
    }
    
    .newsletter-card {
        padding: 25px 20px;
    }
    
    .newsletter-content h3 {
        font-size: 20px;
    }
}

/* ==================== ARTICLE STYLES ==================== */

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 120px 0 60px;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 10px;
}

.article-header h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.article-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
}

.publish-date {
    font-size: 14px;
    opacity: 0.8;
}

.article-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.main-content {
    max-width: none;
}

.article-intro {
    margin-bottom: 40px;
}

.lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.key-points {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.key-points h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.key-points ul {
    list-style: none;
    padding: 0;
}

.key-points li {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.5;
}

.quick-nav {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin: 40px 0;
}

.quick-nav h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.quick-nav ul {
    list-style: none;
    padding: 0;
}

.quick-nav li {
    margin: 8px 0;
}

.quick-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.quick-nav a:hover {
    text-decoration: underline;
}

/* Article Sections */
.article-content section {
    margin: 50px 0;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px 0;
}

.article-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 10px 0;
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Comparison Table */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:hover {
    background: #f8fafc;
}

/* Step by Step Guide */
.step-by-step {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
}

.step-content p {
    margin: 0;
    font-size: 15px;
}

/* Pro Tips */
.pro-tip {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #f59e0b;
}

.pro-tip h4 {
    color: #92400e;
    margin: 0 0 10px 0;
}

.pro-tip p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature h4 {
    margin: 10px 0 5px 0;
    font-size: 16px;
}

.feature p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Command Boxes */
.command-box {
    background: #1f2937;
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.sms-code {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    margin: 15px 0;
}

.sms-examples ul {
    list-style: none;
    padding: 0;
}

.sms-examples li {
    margin: 10px 0;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.sms-examples code {
    color: #10b981;
    font-weight: 700;
}

/* Tips and Warnings */
.sms-tips {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    margin: 20px 0;
}

.sms-tips h4 {
    color: #dc2626;
    margin: 0 0 10px 0;
}

.sms-tips ul {
    margin: 0;
    padding-left: 20px;
}

.sms-tips li {
    color: #dc2626;
    margin: 5px 0;
}

/* Stores Grid */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.store {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.store:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.store i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.store h4 {
    margin: 10px 0 5px 0;
    color: var(--text-primary);
}

.store p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Card Denominations */
.card-denominations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.card-value {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* Method Cards */
.method-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.method-card h4 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.method-card p {
    margin: 0 0 15px 0;
}

.method-card ul {
    margin: 0;
    padding-left: 20px;
}

.method-card li {
    margin: 8px 0;
    line-height: 1.5;
}

/* Problems and Solutions */
.problem {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ef4444;
}

.problem h4 {
    color: #dc2626;
    margin: 0 0 15px 0;
}

.solution {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.solution h5 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.solution ol {
    margin: 0;
    padding-left: 20px;
}

.solution li {
    margin: 8px 0;
    line-height: 1.5;
}

/* Article Summary */
.article-summary {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 50px 0;
    border: 2px solid var(--primary-color);
}

.article-summary h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.article-summary ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-summary li {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0 0 0;
}

.cta-box h3 {
    margin: 0 0 10px 0;
    color: white;
}

.cta-box p {
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin: 0 0 15px 0;
    color: var(--text-primary);
    font-size: 18px;
}

.sidebar-widget p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.widget-button {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

.widget-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    margin: 10px 0;
}

.related-articles a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.related-articles a:hover {
    text-decoration: underline;
}

.useful-codes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.code-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.code-item code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--primary-color);
    background: none;
    padding: 0;
}

.code-item span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Mobile Responsive for Articles */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 40px;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-meta-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-content {
        padding: 60px 0;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .lead {
        font-size: 18px;
    }
    
    .step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 24px;
    }
    
    .step {
        padding: 15px;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .card-denominations {
        justify-content: center;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/* ==================== ADDITIONAL ARTICLE ELEMENTS ==================== */

/* Stats Grid for Articles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Banks Grid */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.bank-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.bank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.bank-card.supported {
    border-left-color: #10b981;
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.bank-logo i {
    font-size: 24px;
    color: white;
}

.bank-card h4 {
    text-align: center;
    margin: 10px 0;
    color: var(--text-primary);
}

.bank-status {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 10px;
}

.bank-card p {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Other Banks List */
.other-banks {
    margin: 30px 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
}

.other-banks h4 {
    margin: 0 0 15px 0;
    color: var(--text-primary);
}

.banks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bank-item {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    border: 1px solid #e5e7eb;
}

/* Operator BLIK Cards */
.operators-blik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.operator-blik-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.operator-blik-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.operator-header {
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.operator-header.play {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.operator-header.orange {
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.operator-header.plus {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.operator-header.tmobile {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.operator-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.popularity {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.operator-details {
    padding: 20px;
}

.operator-details p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.operator-tip {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid var(--primary-color);
    font-size: 14px;
}

/* Costs Table Enhancements */
.costs-table {
    margin: 20px 0;
    overflow-x: auto;
}

.costs-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.costs-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.costs-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.costs-table tr:hover {
    background: #f8fafc;
}

.costs-table .free {
    color: #10b981;
    font-weight: 600;
}

.cost-tips {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    margin: 20px 0;
}

.cost-tips h4 {
    color: #065f46;
    margin: 0 0 15px 0;
}

.cost-tips ul {
    margin: 0;
    padding-left: 20px;
}

.cost-tips li {
    color: #065f46;
    margin: 8px 0;
    line-height: 1.5;
}

/* Security Layers */
.security-layer {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.layer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer-icon i {
    font-size: 24px;
    color: white;
}

.layer-content h4 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-size: 18px;
}

.layer-content p {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security Comparison Best Row */
.comparison-table tr.best {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.comparison-table tr.best td {
    font-weight: 600;
    color: #065f46;
}

/* Prevention Tips */
.prevention-tips {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.prevention-tips h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
}

.prevention-tips ul {
    margin: 0;
    padding-left: 20px;
}

.prevention-tips li {
    color: var(--primary-color);
    margin: 8px 0;
    line-height: 1.5;
}

/* Alternatives Grid */
.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.alternative-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.alternative-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.alternative-card h4 {
    margin: 0 0 20px 0;
    color: var(--text-primary);
    text-align: center;
    font-size: 18px;
}

.alt-pros, .alt-cons {
    margin: 15px 0;
}

.alt-pros strong {
    color: #10b981;
}

.alt-cons strong {
    color: #ef4444;
}

.alt-pros ul, .alt-cons ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.alt-pros li, .alt-cons li {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.alt-pros li {
    color: #065f46;
}

.alt-cons li {
    color: #dc2626;
}

/* Banks Widget in Sidebar */
.banks-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bank-widget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.bank-widget-item span {
    font-weight: 600;
    color: var(--text-primary);
}

.bank-widget-item small {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Mobile Responsive for Additional Elements */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banks-grid {
        grid-template-columns: 1fr;
    }
    
    .operators-blik {
        grid-template-columns: 1fr;
    }
    
    .security-layer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .layer-icon {
        align-self: center;
    }
    
    .alternatives-grid {
        grid-template-columns: 1fr;
    }
    
    .costs-table {
        font-size: 12px;
    }
    
    .costs-table th,
    .costs-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card .stat-number {
        font-size: 24px;
    }
    
    .bank-card {
        padding: 20px;
    }
    
    .operator-blik-card {
        margin: 0 -10px;
    }
    
    .banks-list {
        justify-content: center;
    }
}

/* ==================== GLOBAL MOBILE OPTIMIZATION ==================== */

/* Enhanced Touch Targets */
button, .btn, a, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Improved Text Readability on Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Prevent zoom on iOS */
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    p {
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    /* Better spacing for mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Clickable elements spacing */
    .nav-links a,
    .footer-section a,
    .btn,
    button {
        padding: 12px 16px;
        margin: 4px 0;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    /* Form improvements */
    input, select, textarea {
        font-size: 16px; /* Prevent zoom */
        padding: 12px 16px;
        border-radius: 8px;
        border: 2px solid var(--border);
        width: 100%;
        margin-bottom: 15px;
    }
    
    /* Table responsiveness */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }
    
    /* Better modal behavior on mobile */
    .modal, .modal-content {
        margin: 10px;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }
}

/* Small mobile specific optimizations */
@media (max-width: 480px) {
    /* Larger text for better readability */
    body {
        font-size: 17px;
    }
    
    /* Hero sections padding */
    .hero, .faq-hero, .gdpr-hero, .article-header {
        padding: 60px 0 40px;
    }
    
    /* Section spacing */
    section {
        padding: 40px 0;
    }
    
    /* Grid improvements */
    .grid, .features-grid, .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Navigation improvements */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    /* Footer improvements */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066cc;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border: #666666;
    }
    
    .btn, button {
        border: 2px solid currentColor;
    }
}

/* Dark mode preparation */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles here */
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero, .faq-hero, .gdpr-hero, .article-header {
        padding: 40px 0 30px;
    }
    
    .nav-menu {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Print styles */
@media print {
    .navbar, .footer, .cta-buttons, .contact-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .gdpr-section, .faq-section {
        page-break-inside: avoid;
        margin-bottom: 20pt;
    }
}

/* New Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Отступ для упрощенной навигации */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.floating-phone {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    animation: float 6s ease-in-out infinite;
}

.signal-waves {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 100px;
    height: 100px;
}

.signal-waves::before,
.signal-waves::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.signal-waves::before {
    width: 50px;
    height: 50px;
}

.signal-waves::after {
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    background: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    opacity: 1;
}

.cta-button {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: var(--text-primary);
    border: none;
    padding: 18px 40px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
    margin-bottom: 3rem;
}

.cta-button small {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.hero-security {
    margin-top: 2rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Trustpilot Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.trustpilot-logo h3 {
    color: #00B67A;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    padding: 8px 16px;
    background: rgba(0, 182, 122, 0.1);
    border-radius: 8px;
    border: 2px solid #00B67A;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #00b67a;
    font-size: 20px;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.details .name {
    font-weight: 600;
    color: var(--text-primary);
}

.details .date {
    font-size: 14px;
    color: var(--text-secondary);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #00b67a;
    font-size: 16px;
}

.review-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--success-color);
    font-weight: 500;
}

.reviews-footer {
    text-align: center;
}

.trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00b67a;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #00b67a;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.trustpilot-link:hover {
    background: #00b67a;
    color: white;
}

/* Why Use Us Section */
.why-us {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-stat {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Security Section */
.security-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.security-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-badge {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.security-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-partners {
    text-align: center;
    margin-top: 4rem;
}

.security-partners h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.partner-logo span {
    font-size: 14px;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Широкоформатные мониторы */
@media (min-width: 1400px) {
    .steps-container {
        max-width: 1400px;
        gap: 3rem;
    }
    
    .step {
        padding: 2.5rem 1.5rem;
    }
}

/* Средние широкие экраны */
@media (max-width: 1200px) and (min-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
}

/* Промежуточное разрешение */
@media (max-width: 992px) and (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
    
    .step {
        padding: 2rem 1rem;
    }
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    border-color: var(--primary-color);
}

.step::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--border-color);
}

.step:last-child::before {
    display: none;
}

.step-number {
    position: relative;
    top: 0;
    right: auto;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}



.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-time {
    display: inline-block;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #a7f3d0;
    margin-top: auto;
}

.process-guarantee {
    text-align: center;
    margin-top: 4rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-lg);
    font-size: 16px;
}

.guarantee-badge i {
    font-size: 2rem;
}

.guarantee-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.guarantee-text span {
    opacity: 0.9;
    font-size: 14px;
}

/* Form Section */
.recharge-form-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    font-size: 14px;
}

.trust-indicator i {
    color: var(--success-color);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.recharge-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.operator-select,
.phone-input,
.amount-input {
    position: relative;
    display: flex;
    align-items: center;
}

.operator-select select,
.phone-input input,
.amount-input input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.operator-select select:focus,
.phone-input input:focus,
.amount-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* custom select caret */
.operator-select i {
    position: absolute;
    right: 16px;
    pointer-events: none;
    color: var(--text-secondary);
}

.country-code {
    position: absolute;
    left: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 1;
}

.phone-input input {
    padding-left: 60px;
}

.currency {
    position: absolute;
    right: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount-input input {
    padding-right: 60px;
}

.amount-suggestions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.amount-btn {
    background: var(--background-gray);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-text small {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 1rem;
    text-align: center;
}

.form-security-note i {
    color: var(--success-color);
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 0.5rem;
    display: none;
}

/* Statistics Section */
.statistics-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-card .stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    background: white;
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

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

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo small {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 500;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-trust {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.contact-info i {
    width: 16px;
    color: var(--secondary-color);
}

.cert-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cert {
    background: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
    opacity: 0.7;
}

.security-logos {
    display: flex;
    gap: 1rem;
}

.security-logos span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.partners-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.partners-section .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    width: 100%;
    max-width: 280px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-logo span {
    font-size: 1.5rem;
}

.partner-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
}

/* Guarantees Section */
.guarantees-section {
    padding: 5rem 0;
    background: var(--background-light);
    text-align: center;
}

.guarantees-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.guarantees-section .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guarantee-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guarantee-terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    padding-top: 1rem;
}

.guarantee-card .guarantee-icon,
.guarantee-card h3,
.guarantee-card .guarantee-badge {
    flex-shrink: 0;
}

.guarantee-card p {
    flex-grow: 1;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.news-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.news-section .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.news-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.news-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.news-card.featured .news-badge {
    background: var(--gradient-secondary);
}

.news-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.news-card.featured .news-icon {
    background: var(--gradient-secondary);
}

.news-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .trust-banner {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .trust-items {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }
    
    .trust-item {
        font-size: 12px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        min-width: 100px;
        justify-content: center;
        flex: 0 1 auto;
        white-space: nowrap;
    }
    
    .trust-item i {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .navbar {
        top: 80px; /* Account for mobile fixed trust banner height + content */
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none; /* Hide desktop nav links on mobile */
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
        position: relative;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 3px 0;
        transition: var(--transition);
        border-radius: 2px;
    }
    
    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: white;
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: white;
    }
    
    /* Mobile Navigation - Simple and Clean */
    .nav-links, .nav-links-luxury {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 0;
        border-radius: 0;
        border: none;
    }
    
    .nav-links.active, .nav-links-luxury.active {
        left: 0;
    }
    
    .nav-links a, .nav-link-luxury {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        padding: 20px 40px;
        border-radius: 16px;
        transition: all 0.3s ease;
        text-align: center;
        min-width: 250px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .nav-links a:hover, .nav-link-luxury:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .link-icon-luxury {
        font-size: 20px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links, .nav-links-luxury {
        gap: 6px;
    }
    
    .nav-links a, .nav-link-luxury {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .nav-logo {
        font-size: 28px;
    }
    
    .nav-logo i {
        font-size: 32px;
    }
    
    .trust-banner {
        padding: 10px 0;
    }
    
    .trust-items {
        gap: 1rem;
    }
    
    .trust-item {
        padding: 8px 14px;
        font-size: 13px;
        min-width: 110px;
    }
    
    .hero {
        padding-top: 100px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
    }
    
    .trust-items {
        gap: 3rem;
    }
    
    .nav-links, .nav-links-luxury {
        gap: 12px;
    }
    
    .nav-links a, .nav-link-luxury {
        padding: 14px 24px;
        font-size: 16px;
    }
}
    

    

    

    

    

    
    .hero {
        min-height: 90vh;
        margin-top: 60px;
        padding: 2rem 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .security-badges {
        gap: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step::before {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .amount-suggestions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .partners-logos {
        gap: 2rem;
    }
    
    .form-trust-indicators {
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .amount-suggestions {
        grid-template-columns: 1fr;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0 15px;
    }
    
    .trust-item {
        font-size: 12px;
        padding: 6px 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 36px;
    }
    
    .trust-item i {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .trust-item span {
        font-weight: 600;
    }
    
    .form-trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    /* Responsive improvements for new sections */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
    }
    
    .partners-section .section-subtitle,
    .guarantees-section .section-subtitle,
    .news-section .section-subtitle {
        padding: 0 20px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 2rem 0 4rem;
    background: #f8fafc;
    min-height: 70vh;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    /* Additional mobile improvements */
    .trustpilot-logo h3 {
        font-size: 1.4rem;
        padding: 6px 12px;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .review-content h4 {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .step {
        padding: 1.5rem 0.5rem;
        min-height: 250px;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .step-time {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .form-trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trustpilot-logo h3 {
        font-size: 1.2rem;
        padding: 4px 8px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* PREMIUM HERO SECTION STYLES */

/* Premium Trust Header */
.trust-header-premium {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 48px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trust-shield {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.shield-icon {
    position: relative;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.shield-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.shield-pulse {
    position: absolute;
    width: 140%;
    height: 140%;
    border: 3px solid rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    animation: shieldPulse 2s infinite;
}

@keyframes shieldPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.shield-text {
    flex: 1;
}

.shield-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.shield-subtitle {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.compliance-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.compliance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compliance-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.compliance-item:hover::before {
    transform: scaleX(1);
}

.compliance-item:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.compliance-item i {
    font-size: 1.2rem;
    color: #10b981;
    margin-bottom: 8px;
}

.compliance-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.compliance-item small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Title Ultimate */
.hero-title-ultimate {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    animation: titleBadgePulse 3s infinite;
}

@keyframes titleBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.title-main-ultimate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.title-primary {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 2px 8px rgba(16, 185, 129, 0.3);
    line-height: 1.1;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.title-secondary {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.1;
    text-align: center;
}

.operators-showcase {
    margin-top: 24px;
}

.operators-text {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 600;
}

.operators-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.operator-logo-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.operator-logo-mini:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.operator-logo-mini i {
    font-size: 1.2rem;
    color: white;
}

.operator-logo-mini span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.operators-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.operators-more span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Live Trust Metrics */
.live-trust-metrics {
    margin: 48px 0;
}

.metrics-header {
    text-align: center;
    margin-bottom: 32px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-indicator span {
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 600;
}

.metrics-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.metric-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-card.clients .metric-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.metric-card.success .metric-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.metric-card.speed .metric-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.metric-card.rating .metric-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.metric-icon i {
    font-size: 1.4rem;
    color: white;
    z-index: 2;
}

.metric-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    animation: metricGlow 3s infinite;
}

.metric-card.clients .metric-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
}

.metric-card.success .metric-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent);
}

.metric-card.speed .metric-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent);
}

.metric-card.rating .metric-glow {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4), transparent);
}

@keyframes metricGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.metric-content {
    flex: 1;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 12px;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.stable {
    color: #6b7280;
}

.metric-change i {
    font-size: 0.75rem;
}

/* Trust Guarantees */
.trust-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.guarantee-item.security::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.guarantee-item.speed::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.guarantee-item.support::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.guarantee-item:hover::before {
    transform: scaleX(1);
}

.guarantee-item:hover {
    background: white;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.guarantee-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.guarantee-item.security .guarantee-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.guarantee-item.speed .guarantee-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.guarantee-item.support .guarantee-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.guarantee-icon i {
    font-size: 1.6rem;
    color: white;
    z-index: 2;
}

.guarantee-pulse {
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    animation: guaranteePulse 2.5s infinite;
}

.guarantee-item.security .guarantee-pulse {
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.guarantee-item.speed .guarantee-pulse {
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.guarantee-item.support .guarantee-pulse {
    border: 2px solid rgba(245, 158, 11, 0.4);
}

@keyframes guaranteePulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.guarantee-content {
    flex: 1;
}

.guarantee-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.guarantee-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.security-features,
.speed-promise,
.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature,
.promise-item span,
.channel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature:hover,
.promise-item:hover,
.channel:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.promise-item i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

/* CTA Section Ultimate */
.cta-section-ultimate {
    text-align: center;
    margin: 48px 0;
}

.cta-trust-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-trust-bar .trust-item i {
    font-size: 1.1rem;
    color: #10b981;
}

/* Enhanced CTA Button */
.cta-button-ultimate {
    position: relative;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 28px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 auto 24px auto;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.4);
    max-width: 800px;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button-ultimate:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(16, 185, 129, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.button-trust-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.trust-seal-main {
    position: relative;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.trust-seal-main i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
}

.seal-pulse {
    position: absolute;
    width: 130%;
    height: 130%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: sealPulse 2s infinite;
}

@keyframes sealPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.trust-seal-text {
    text-align: center;
}

.seal-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.seal-subtitle {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.button-content-ultimate {
    flex: 1;
    text-align: left;
}

.button-main-text {
    margin-bottom: 16px;
}

.button-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    margin-bottom: 6px;
    line-height: 1.2;
}

.button-subtitle {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.button-trust-indicators {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicator i {
    font-size: 0.9rem;
    color: white;
}

.trust-indicator span {
    font-size: 0.8rem;
    color: white;
    font-weight: 700;
}

.button-payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.payment-method.blik i {
    color: #00d4aa;
}

.payment-method.card i {
    color: #1a1f71;
}

.payment-method.paypal i {
    color: #0070ba;
}

.payment-method.transfer i {
    color: #6b7280;
}

.payment-method span {
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}

.button-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.action-arrow {
    position: relative;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.cta-button-ultimate:hover .action-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(6px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.action-arrow i {
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
}

.arrow-trail {
    position: absolute;
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    right: 70px;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-button-ultimate:hover .arrow-trail {
    opacity: 1;
    right: 80px;
}

.action-text {
    text-align: center;
}

.action-main {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.action-sub {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.button-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: buttonShimmer 4s infinite;
}

@keyframes buttonShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.button-success-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.cta-button-ultimate:hover .button-success-indicator {
    opacity: 1;
    transform: scale(1.1);
}

.button-success-indicator i {
    font-size: 0.8rem;
    color: white;
}

.cta-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-security-note i {
    color: #10b981;
}

/* Enhanced Social Proof Banner */
.social-proof-enhanced {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.proof-header {
    text-align: center;
    margin-bottom: 32px;
}

.proof-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.proof-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.proof-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.proof-stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.proof-stat-card.rating::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.proof-stat-card.clients::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.proof-stat-card.global::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.proof-stat-card.security::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.proof-stat-card:hover::before {
    transform: scaleX(1);
}

.proof-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proof-stat-card.rating .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.proof-stat-card.clients .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.proof-stat-card.global .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.proof-stat-card.security .stat-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-icon i {
    font-size: 1.4rem;
    color: white;
    z-index: 2;
}

.stat-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    animation: statGlow 3s infinite;
}

.proof-stat-card.rating .stat-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent);
}

.proof-stat-card.clients .stat-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
}

.proof-stat-card.global .stat-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent);
}

.proof-stat-card.security .stat-glow {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4), transparent);
}

@keyframes statGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 2px;
}

.stat-detail {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.stat-badge.excellent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-badge.verified {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-badge.global {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-badge.secure {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.proof-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.testimonial-quick {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.testimonial-quick:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.testimonial-author {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.testimonial-stars i {
    font-size: 0.7rem;
    color: #f59e0b;
}

/* Mobile Responsive for New Hero */
@media (max-width: 768px) {
    .trust-header-premium {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .trust-shield {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .shield-icon {
        width: 64px;
        height: 64px;
    }
    
    .shield-title {
        font-size: 1.3rem;
    }
    
    .compliance-bar {
        gap: 12px;
    }
    
    .compliance-item {
        padding: 12px 16px;
        min-width: 80px;
    }
    
    .title-primary {
        font-size: 2.5rem;
        padding: 12px 20px;
    }
    
    .title-secondary {
        font-size: 2.2rem;
    }
    
    .operators-logos {
        gap: 12px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-guarantees {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .guarantee-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .social-proof-enhanced {
        padding: 24px;
    }
    
    .proof-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .proof-stat-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .proof-testimonials {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cta-button-ultimate {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
        text-align: center;
    }
    
    .button-content-ultimate {
        text-align: center;
    }
    
    .button-trust-indicators {
        justify-content: center;
    }
    
    .button-payment-methods {
        justify-content: center;
    }
    
    .button-action-area {
        order: -1;
    }
    
    .cta-trust-bar {
        gap: 16px;
    }
    
    .social-proof-banner {
        gap: 16px;
        padding: 16px;
    }
    
    .proof-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .title-primary {
        font-size: 2rem;
        padding: 10px 16px;
    }
    
    .title-secondary {
        font-size: 1.8rem;
    }
    
    .metrics-header h3 {
        font-size: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .social-proof-enhanced {
        padding: 20px;
    }
    
    .proof-header h3 {
        font-size: 1.5rem;
    }
    
    .proof-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .button-title {
        font-size: 1.3rem;
    }
    
    .trust-indicator {
        padding: 4px 8px;
    }
    
    .trust-indicator span {
        font-size: 0.7rem;
    }
    
    .payment-method {
        padding: 6px 10px;
    }
    
    .payment-method span {
        font-size: 0.7rem;
    }
    
    .guarantee-content h4 {
        font-size: 1.1rem;
    }
}

/* Dark theme support for trust items */
@media (prefers-color-scheme: dark) {
    .trust-item {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .trust-item:hover {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .trust-item i {
        color: var(--primary-color);
    }
}