/* ========================================
   WELCOME PAGE STYLES - JOboost Design System V2
   ======================================== */

/* =========================
   CSS VARIABLES
   ========================= */
:root {
    /* Primary Colors */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    
    /* Secondary Colors */
    --secondary: #14b8a6;
    --secondary-dark: #0d9488;
    --secondary-light: #2dd4bf;
    
    /* Accent Colors */
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* White & Black */
    --white: #ffffff;
    --black: #000000;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}


/* =========================
   GLOBAL RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Force GPU acceleration on animated elements */
.reveal,
.feature-card,
.platform-card,
.testimonial-slide,
.hero-shape,
.welcome-header {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

img, video {
    will-change: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

html {
    scroll-behavior: auto;
}

/* Smooth scroll only on desktop with good performance */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}


/* =========================
   HEADER
   ========================= */
.welcome-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: box-shadow, background-color;
    transform: translateZ(0);
}

.welcome-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform var(--transition-base);
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-logo img {
    width: 48px;
    height: 48px;
    transition: transform var(--transition-base);
}

.header-logo:hover img {
    transform: rotate(5deg);
}

.header-logo .logo-text-primary {
    color: var(--primary);
}

.header-nav {
    display: none;
    gap: 2rem;
}

.header-nav a {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav a:hover::after {
    width: 100%;
}

/* Navigation buttons */
.nav-btn-login,
.nav-btn-register {
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.nav-btn-login {
    color: var(--primary);
}

.nav-btn-login::after {
    display: none;
}

.nav-btn-login:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.nav-btn-register {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.nav-btn-register::after {
    display: none;
}

.nav-btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-btn-register:hover::before {
    left: 100%;
}

.nav-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    color: var(--white) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    padding: 0.625rem 1.5rem;
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-login:hover {
    background: rgba(16, 185, 129, 0.1);
}

.btn-register {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.mobile-menu-btn {
    display: block;
    color: var(--gray-700);
    font-size: 1.5rem;
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-menu a:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.mobile-btn-login,
.mobile-btn-register {
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.mobile-btn-login {
    color: var(--primary) !important;
    background: rgba(16, 185, 129, 0.1);
}

.mobile-btn-register {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.mobile-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}


/* =========================
   HERO SECTION
   ========================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f766e 0%, #10b981 50%, #14b8a6 100%);
    overflow: hidden;
    padding-top: 80px;
    border-bottom-left-radius: var(--radius-2xl);
    border-bottom-right-radius: var(--radius-2xl);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: none;
    transform: translateZ(0);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-shape {
        filter: blur(30px);
        opacity: 0.15;
    }
}

.hero-shape-1 {
    top: 5%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-shape-2 {
    bottom: 5%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: rgba(20, 184, 166, 0.2);
}

.hero-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(245, 158, 11, 0.1);
}

.hero-shape-1::before,
.hero-shape-2::before,
.hero-shape-3::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
    box-shadow: none;
}

.hero-badge i {
    color: #fbbf24;
    animation: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-gradient::after {
    display: none;
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.7;
}

.hero-subtitle strong {
    font-weight: 700;
    color: #fbbf24;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    margin-bottom: 3rem;
}

.btn-cta-primary {
    padding: 1.125rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    transition: left 0.6s;
}

.btn-cta-primary:hover .btn-shine {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5);
}

.btn-cta-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-cta-secondary {
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-platforms {
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.9s forwards;
    opacity: 0;
}

.platforms-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platforms-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platforms-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    cursor: pointer;
}

.platforms-icons i:hover {
    color: var(--white);
    transform: scale(1.2) translateY(-5px);
}

.platforms-icons .fa-facebook:hover { color: #1877f2; }
.platforms-icons .fa-instagram:hover { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.platforms-icons .fa-tiktok:hover { color: #000000; }
.platforms-icons .fa-youtube:hover { color: #ff0000; }
.platforms-icons .fa-spotify:hover { color: #1db954; }
.platforms-icons .fa-twitter:hover { color: #1da1f2; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.scroll-indicator a:hover {
    color: var(--white);
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    animation: bounce 2s infinite;
}


/* =========================
   FEATURES SECTION
   ========================= */
.features-section {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    animation: pulse 1s infinite;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
}


/* =========================
   HOW IT WORKS SECTION
   ========================= */
.how-it-works-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom, var(--gray-50), var(--gray-100));
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-connector {
    display: none;
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.step-card:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.step-card:hover .step-number::before {
    opacity: 0.5;
    animation: pulse 1.5s infinite;
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    transition: left 0.6s;
}

.step-card:hover .step-content::before {
    left: 100%;
}

.step-card:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--gray-600);
}


/* =========================
   TESTIMONIALS SECTION
   ========================= */
.testimonials-section {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(20, 184, 166, 0.08));
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.quote-icon {
    font-size: 3.5rem;
    color: rgba(16, 185, 129, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.5rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.4s;
}

.testimonial-content:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--gray-600);
}

.author-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.author-rating i {
    color: var(--accent);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(16, 185, 129, 0.5);
}


/* =========================
   JOMAK SECTION
   ========================= */
.jomak-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.jomak-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.jomak-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.jomak-image {
    position: relative;
}

.jomak-image-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.jomak-image img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.jomak-image img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.jomak-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.jomak-intro {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.jomak-subtitle {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.jomak-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.jomak-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.jomak-feature-item:nth-child(1) { animation-delay: 0.1s; }
.jomak-feature-item:nth-child(2) { animation-delay: 0.2s; }
.jomak-feature-item:nth-child(3) { animation-delay: 0.3s; }
.jomak-feature-item:nth-child(4) { animation-delay: 0.4s; }
.jomak-feature-item:nth-child(5) { animation-delay: 0.5s; }

.jomak-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.jomak-feature-item:hover .jomak-feature-icon {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 255, 255, 0.35);
}

.jomak-feature-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

.jomak-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s;
}

.jomak-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.jomak-cta p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.jomak-cta strong {
    color: var(--white);
}


/* =========================
   CONTACT SECTION
   ========================= */
.contact-section {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
}

.contact-cards {
    max-width: 1280px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(20, 184, 166, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.contact-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.social-media {
    text-align: center;
}

.social-media h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.5s;
}

.social-btn:hover::before {
    transform: scale(2);
}

.social-btn:hover {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-facebook {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.social-instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-tiktok {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.social-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-spotify {
    background: linear-gradient(135deg, #1db954, #1ed760);
}

.social-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
}


/* =========================
   FOOTER
   ========================= */
.welcome-footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: var(--white);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.welcome-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.footer-brand:hover {
    transform: scale(1.05);
}

.footer-brand img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.footer-text {
    color: var(--gray-400);
    text-align: center;
    transition: color 0.3s;
}

.footer-text:hover {
    color: var(--gray-300);
}

.footer-text .highlight {
    color: var(--primary);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
}


/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -20px, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}


/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* Mobile First - Base styles above are for mobile */

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .header-logo {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .header-logo img {
        width: 36px;
        height: 36px;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 5rem 1rem 3rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        gap: 0.375rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin: 1.5rem 0;
    }
    
    .title-gradient {
        display: block;
        margin-top: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin: 2rem 0;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .hero-platforms {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .platforms-icons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .platforms-icons i {
        font-size: 1.5rem;
    }
    
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-description {
        font-size: 0.875rem;
    }
    
    .steps-container {
        padding: 0 1rem;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 0;
    }
    
    .step-number {
        width: 52px;
        height: 52px;
        font-size: 1.375rem;
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 1.25rem;
        transform: none;
    }
    
    .step-content {
        padding: 1.75rem 1.5rem;
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .author-name {
        font-size: 0.9375rem;
    }
    
    .author-role {
        font-size: 0.8125rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .jomak-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .jomak-image {
        max-width: 180px;
        margin: 0 auto;
    }
    
    .jomak-content h2 {
        font-size: 1.5rem;
    }
    
    .jomak-intro,
    .jomak-feature-text {
        font-size: 0.875rem;
    }
    
    .social-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 1.375rem;
        padding: 0.5rem;
    }
    
    .header-container {
        padding: 1rem 1.25rem;
    }
    
    .header-logo {
        font-size: 1.25rem;
    }
    
    .header-logo img {
        width: 42px;
        height: 42px;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 6rem 1.25rem 4rem;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin: 2rem 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin: 2.5rem 0;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 1rem 2rem;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .hero-platforms {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .platforms-label {
        width: 100%;
        text-align: center;
    }
    
    .platforms-icons {
        gap: 1rem;
    }
    
    .section-header {
        padding: 0 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.9375rem;
        max-width: 100%;
    }
    
    .features-section,
    .how-it-works-section,
    .testimonials-section,
    .jomak-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.25rem;
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.25rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-card {
        padding: 0;
    }
    
    .step-number {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 1.5rem;
        transform: none;
        width: 64px;
        height: 64px;
        font-size: 1.625rem;
    }
    
    .step-content {
        text-align: center;
        padding: 2rem 1.75rem;
    }
    
    .step-icon {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .step-description {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-carousel {
        padding: 0 1.25rem;
    }
    
    .testimonial-slide {
        padding: 0;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .carousel-controls {
        margin-top: 2rem;
    }
    
    .jomak-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.25rem;
    }
    
    .jomak-image {
        order: -1;
        max-width: 220px;
        margin: 0 auto;
    }
    
    .jomak-content {
        text-align: center;
    }
    
    .jomak-features {
        gap: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.25rem;
    }
    
    .social-media {
        padding: 0 1.25rem;
    }
    
    .social-links {
        gap: 1rem;
        justify-content: center;
    }
}

/* Tablets (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        gap: 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .jomak-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }
    
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
    .header-nav {
        display: flex;
        gap: 1.5rem;
    }
    
    .header-nav a {
        font-size: 0.9375rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-section {
        padding: 7rem 2rem 5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
        max-width: 700px;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin: 4rem auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.0625rem;
        max-width: 700px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .step-connector {
        display: none;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .jomak-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .jomak-content {
        text-align: left;
    }
    
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .header-container {
        padding: 1.25rem 2rem;
    }
    
    .header-nav {
        gap: 2.5rem;
    }
    
    .header-nav a {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 8rem 2rem 6rem;
        min-height: 100vh;
    }
    
    .hero-badge {
        font-size: 0.9375rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        max-width: 800px;
        line-height: 1.7;
    }
    
    .hero-cta {
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }
    
    .hero-stats {
        max-width: 1000px;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .platforms-icons {
        gap: 1.5rem;
    }
    
    .platforms-icons i {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1.125rem;
        max-width: 750px;
    }
    
    .features-section,
    .how-it-works-section,
    .testimonials-section,
    .jomak-section,
    .contact-section {
        padding: 5rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1400px;
    }
    
    .feature-card {
        padding: 2.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.375rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        max-width: 1400px;
    }
    
    .step-connector {
        display: block;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-icon {
        font-size: 2.25rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9375rem;
    }
    
    .testimonials-carousel {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .testimonial-content {
        padding: 3rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
        line-height: 1.8;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .jomak-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        max-width: 1400px;
    }
    
    .jomak-image {
        max-width: 400px;
    }
    
    .jomak-content h2 {
        font-size: 2.5rem;
    }
    
    .jomak-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-cards {
        gap: 2rem;
        max-width: 1200px;
    }
    
    .contact-card {
        padding: 2.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
    .header-container {
        padding: 1.5rem 3rem;
    }
    
    .header-logo {
        height: 48px;
    }
    
    .header-nav {
        gap: 3rem;
    }
    
    .header-nav a {
        font-size: 1.0625rem;
    }
    
    .hero-section {
        padding: 10rem 3rem 8rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.625rem;
        max-width: 900px;
    }
    
    .hero-cta {
        gap: 2.5rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1.25rem 3rem;
        font-size: 1.125rem;
    }
    
    .hero-stats {
        max-width: 1200px;
        gap: 3rem;
    }
    
    .stat-item {
        padding: 2.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-description {
        font-size: 1.25rem;
        max-width: 850px;
    }
    
    .features-section,
    .how-it-works-section,
    .testimonials-section,
    .jomak-section,
    .contact-section {
        padding: 6rem 3rem;
    }
    
    .features-grid {
        gap: 3rem;
        max-width: 1600px;
    }
    
    .feature-card {
        padding: 3rem;
    }
    
    .steps-container {
        gap: 2.5rem;
        max-width: 1600px;
    }
    
    .jomak-container {
        gap: 5rem;
        max-width: 1600px;
    }
    
    .jomak-image {
        max-width: 500px;
    }
    
    .jomak-content h2 {
        font-size: 3rem;
    }
    
    .jomak-subtitle {
        font-size: 1.75rem;
    }
    
    .contact-cards {
        gap: 3rem;
        max-width: 1400px;
    }
}

/* Extra Large Desktop (1536px and up) */
@media (min-width: 1536px) {
    .header-container {
        padding: 2rem 4rem;
    }
    
    .header-logo {
        height: 52px;
    }
    
    .hero-section {
        padding: 12rem 4rem 10rem;
    }
    
    .hero-title {
        font-size: 5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
        max-width: 1000px;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .section-description {
        font-size: 1.375rem;
        max-width: 950px;
    }
    
    .features-section,
    .how-it-works-section,
    .testimonials-section,
    .jomak-section,
    .contact-section {
        padding: 8rem 4rem;
    }
    
    .features-grid {
        gap: 4rem;
    }
    
    .jomak-container {
        gap: 6rem;
    }
    
    .jomak-image {
        max-width: 600px;
    }
    
    .jomak-content h2 {
        font-size: 3.5rem;
    }
}


/* =========================
   UTILITY CLASSES
   ========================= */
.text-primary {
    color: var(--primary);
}

.bg-primary {
    background-color: var(--primary);
}

.transition-all {
    transition: all var(--transition-base);
}

/* =========================
   PERFORMANCE OPTIMIZATIONS
   ========================= */

/* Disable expensive effects during scroll */
body {
    --smooth-shadows: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Disable expensive effects while scrolling */
body.is-scrolling * {
    pointer-events: none !important;
    animation-play-state: paused !important;
}

body.is-scrolling .feature-card:hover,
body.is-scrolling .platform-card:hover,
body.is-scrolling .contact-card:hover {
    transform: none !important;
}

/* Simplify all shadows globally for performance */
.feature-card,
.platform-card,
.how-to-step,
.testimonial-slide,
.contact-card,
.jomak-image {
    box-shadow: var(--smooth-shadows) !important;
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-shape {
        animation: none !important;
    }
}

/* Disable expensive effects on low-end devices */
@media (max-width: 768px) {
    .welcome-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .hero-badge {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.9);
    }
    
    /* Hide decorative shapes on mobile */
    .hero-shape {
        display: none;
    }
}

/* ========================================
   WHATSAPP CHANNEL SECTION
   ======================================== */
.whatsapp-channel-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-channel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.whatsapp-channel-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.whatsapp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.whatsapp-content {
    color: var(--white);
    animation: slideInLeft 0.8s ease;
}

.whatsapp-icon-large {
    font-size: 80px;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.whatsapp-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.whatsapp-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    font-weight: 500;
}

.whatsapp-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.btn-whatsapp-join {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--white);
    color: #25d366;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.btn-whatsapp-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.btn-whatsapp-join i {
    font-size: 1.3rem;
}

.btn-arrow {
    margin-left: var(--spacing-sm);
    transition: transform var(--transition-base);
}

.btn-whatsapp-join:hover .btn-arrow {
    transform: translateX(5px);
}

.whatsapp-note {
    opacity: 0.9;
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-image {
    display: flex;
    justify-content: center;
    animation: slideInRight 0.8s ease;
}

.whatsapp-phone-frame {
    width: 280px;
    height: 520px;
    background: var(--white);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 8px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-header {
    padding: 40px var(--spacing-sm) var(--spacing-md);
    background: #25d366;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.phone-content {
    flex: 1;
    padding: var(--spacing-md);
    background: #f5f5f5;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.message {
    display: flex;
    margin-bottom: var(--spacing-sm);
    animation: messageSlide 0.5s ease forwards;
}

.message:nth-child(2) {
    animation-delay: 0.2s;
}

.message:nth-child(3) {
    animation-delay: 0.4s;
}

.message-incoming {
    justify-content: flex-start;
}

.message p {
    background: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    font-size: 0.8rem;
    color: var(--gray-900);
    max-width: 80%;
    word-wrap: break-word;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-channel-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .whatsapp-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .whatsapp-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-subtitle {
        font-size: 1rem;
    }
    
    .whatsapp-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .benefit-item {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .whatsapp-image {
        margin-top: var(--spacing-md);
    }
    
    .whatsapp-phone-frame {
        width: 250px;
        height: 480px;
    }
}

.hover-scale:hover {
    transform: scale(1.05);
}

.cursor-pointer {
    cursor: pointer;
}

/* ========================================
   PAYMENT METHODS SECTION - Premium Design
   ======================================== */
.payment-methods-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.payment-methods-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.payment-methods-section .section-header {
    position: relative;
    z-index: 2;
}

.payment-methods-section .section-title::after {
    content: '💳';
    margin-left: 12px;
}

.payment-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.country-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.country-card:hover::before {
    transform: scaleX(1);
}

.country-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.country-flag {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.15) rotate(-5deg);
}

.country-info {
    flex: 1;
}

.country-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.country-badge.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.country-badge.active::before {
    content: '●';
    font-size: 6px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.payment-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.payment-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.payment-method i {
    font-size: 1.1rem;
    color: #10b981;
}

.payment-method i.fa-cc-visa { color: #1a1f71; }
.payment-method i.fa-cc-mastercard { color: #eb001b; }

.country-note {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 10px;
    border: 1px dashed #86efac;
}

.country-note::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
}

/* Special header colors with gradient borders */
.country-header.intl { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #6366f1, #8b5cf6); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.cd { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #3b82f6, #60a5fa); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.cg { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #4ade80); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.cm { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #facc15); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.ci { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #f97316, #22c55e); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.sn { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #facc15); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.ke { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #000000, #ef4444, #22c55e); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.gh { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #ef4444, #facc15, #22c55e); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.ng { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #ffffff, #22c55e); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.bj { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #facc15, #ef4444); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.bf { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #ef4444, #22c55e); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.ga { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #facc15, #3b82f6); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.rw { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #3b82f6, #facc15, #22c55e); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.ug { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #000000, #facc15, #ef4444); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.tz { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #facc15, #3b82f6); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.zm { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #ef4444, #000000); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }
.country-header.sl { border-left: 4px solid transparent; background-image: linear-gradient(white, white), linear-gradient(180deg, #22c55e, #ffffff, #3b82f6); background-origin: border-box; background-clip: padding-box, border-box; padding-left: 16px; border-radius: 8px 0 0 8px; }

/* ========================================
   TOP SERVICES SECTION - Ultra Premium
   ======================================== */
.top-services-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.top-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.top-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

.top-services-section .section-header {
    position: relative;
    z-index: 2;
}

.top-services-section .section-title {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.top-services-section .section-title::after {
    content: '🔥';
    margin-left: 12px;
}

.top-services-section .section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

/* Grid pour 6 cartes */
.services-showcase.six-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
}

@media (max-width: 1200px) {
    .services-showcase.six-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-showcase.six-cards {
        grid-template-columns: 1fr;
    }
}

.service-showcase-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* Currency Badge */
.currency-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.currency-badge.usd {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.currency-badge.cdf {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* Card currency styles */
.service-showcase-card.currency-usd::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease infinite;
}

.service-showcase-card.currency-cdf::before {
    background: linear-gradient(90deg, #22c55e, #4ade80, #22c55e);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease infinite;
}

/* Single price display */
.single-price {
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.single-price::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-price:hover::before {
    opacity: 1;
}

.single-price.usd {
    background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
    border: 3px solid #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
}

.single-price.cdf {
    background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
    border: 3px solid #22c55e;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.25);
}

.single-price .price-amount {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.single-price.usd .price-amount {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-price.cdf .price-amount {
    background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover effects for currency cards */
.service-showcase-card.currency-usd:hover {
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-showcase-card.currency-cdf:hover {
    box-shadow: 
        0 30px 60px rgba(34, 197, 94, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #f59e0b, #3b82f6, #10b981);
    background-size: 300% 100%;
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent, rgba(59, 130, 246, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-showcase-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(16, 185, 129, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1);
}

.service-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
}

.service-showcase-card:hover .service-category {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin: 16px 0;
    line-height: 1.5;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}

.service-min {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 20px;
    display: inline-block;
}

.service-min::before {
    content: '📦 ';
}

.service-prices {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.price-box {
    flex: 1;
    padding: 20px 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-box:hover::before {
    opacity: 1;
}

.price-box.usd {
    background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.price-box.usd:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.price-box.cdf {
    background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #22c55e;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.price-box.cdf:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.price-currency {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    padding: 4px 12px;
    border-radius: 12px;
}

.price-box.usd .price-currency { 
    color: #1d4ed8; 
    background: rgba(29, 78, 216, 0.1);
}
.price-box.cdf .price-currency { 
    color: #15803d; 
    background: rgba(21, 128, 61, 0.1);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.price-box.usd .price-value { 
    color: #1e40af; 
    text-shadow: 0 2px 4px rgba(30, 64, 175, 0.2);
}
.price-box.cdf .price-value { 
    color: #166534; 
    text-shadow: 0 2px 4px rgba(22, 101, 52, 0.2);
}

.btn-service-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-service-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-service-order:hover::before {
    left: 100%;
}

.btn-service-order:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
}

.btn-service-order i {
    transition: transform 0.3s ease;
}

.btn-service-order:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-view-all:hover::before {
    opacity: 1;
}

.btn-view-all:hover {
    background: white;
    color: #1e293b;
    border-color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .payment-methods-section {
        padding: 60px 16px;
    }
    
    .payment-countries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 0;
    }
    
    .country-card {
        padding: 20px;
    }
    
    .country-flag {
        font-size: 2.5rem;
    }
    
    .top-services-section {
        padding: 60px 16px;
    }
    
    .top-services-section .section-title {
        font-size: 1.8rem;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0;
    }
    
    .service-showcase-card {
        padding: 24px;
    }
    
    .service-title {
        font-size: 1rem;
        min-height: auto;
    }
    
    .service-prices {
        gap: 12px;
    }
    
    .price-box {
        padding: 16px 12px;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .btn-view-all {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
}
