/* ========================================
   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;
}

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: 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.3;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

@media (max-width: 768px) {
    .hero-shape {
        filter: blur(40px);
        opacity: 0.2;
        animation: none;
    }
}

.hero-shape-1 {
    top: 5%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.hero-shape-2 {
    bottom: 5%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.4) 0%, transparent 70%);
    animation-delay: 2s;
}

.hero-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    animation-delay: 4s;
}

.hero-shape-1::before,
.hero-shape-2::before,
.hero-shape-3::before {
    content: '';
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: inherit;
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
    will-change: opacity;
}

@media (max-width: 768px) {
    .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: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #fbbf24;
    animation: pulse 2s ease-in-out infinite;
}

.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 4px 20px rgba(0, 0, 0, 0.3);
    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 {
    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);
}


/* =========================
   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
   ========================= */

/* 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);
    }
}

.hover-scale:hover {
    transform: scale(1.05);
}

.cursor-pointer {
    cursor: pointer;
}
