/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    /* Color System */
    --primary-color: #000000;
    --primary-gradient: linear-gradient(135deg, #000000 0%, #333333 100%);
    --secondary-color: #10B981;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 32px rgba(16, 185, 129, 0.15);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;    /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 1.875rem; /* 30px */
    --font-size-4xl: 2.25rem;  /* 36px */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
    overflow-x: hidden;
}

/* Selection Styling */
::selection {
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-dark);
}

::-moz-selection {
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

/* ===================================
   LAYOUT COMPONENTS
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--space-xs);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    padding: var(--space-xs) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    transition: all var(--transition-base);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.navbar-brand img {
    height: 60px;
    transition: transform var(--transition-fast);
    will-change: transform;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    margin: 0 var(--space-sm);
    position: relative;
    padding: var(--space-xs) 0 !important;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.btn:hover::before {
    opacity: 0.1;
}

.btn-primary-custom {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline-custom:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-white {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.15);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 80px 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero-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.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--transition-base) both;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.8s 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    animation: fadeInUp 0.8s 0.6s both;
}

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

.stat-number {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-top: var(--space-xs);
}

.hero-illustration {
    max-width: 85%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(var(--shadow-lg));
    will-change: transform;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

/* ===================================
   TRUSTED BY SECTION
   =================================== */
.trusted-section {
    padding: var(--space-xl) 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-muted);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    flex: 1 0 auto;
    justify-content: center;
}

.trusted-logo:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: white;
    box-shadow: var(--shadow-sm);
}

.trusted-logo i {
    font-size: 1.25em;
    color: var(--secondary-color);
}

/* ===================================
   EARNINGS CAROUSEL
   =================================== */
.earnings-section {
    background: var(--primary-gradient);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.earnings-section .section-title {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

.earnings-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.earnings-carousel {
    margin-top: var(--space-xl);
}

.earnings-slide {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.earnings-slide:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-glow);
}

.earnings-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background: linear-gradient(45deg, #10B981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.earnings-amount {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: var(--space-xs);
}

.earnings-description {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    transition: all var(--transition-fast);
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    width: 24px;
    border-radius: var(--radius-full);
}

/* ===================================
   SERVICE CARDS
   =================================== */
.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.service-description {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.service-price {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.service-features li {
    padding: var(--space-xs) 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    margin-right: var(--space-xs);
    font-size: var(--font-size-base);
}

/* ===================================
   HOW IT WORKS
   =================================== */
.step-card {
    text-align: center;
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-card:hover::before {
    background: white;
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: white;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.step-description {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

/* ===================================
   FEATURE CARDS
   =================================== */
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--bg-light);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #F59E0B;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: var(--font-size-sm);
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}

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

.author-name {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    margin: 0;
    color: var(--text-dark);
}

.author-role {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    margin: 0;
}

/* ===================================
   FAQ
   =================================== */
.faq-section {
    background: var(--bg-light);
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.accordion-button {
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    padding: var(--space-md) var(--space-lg);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111827'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform var(--transition-base);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg/xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: var(--space-md) var(--space-lg);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-logo {
    height: 85px;
    margin-bottom: var(--space-md);
    display: block;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

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

.social-icon:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

/* ===================================
   LOADING OVERLAY
   =================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    display: grid;
    place-items: center;
    z-index: 9999;
    transition: opacity 0.3s var(--transition-base);
    pointer-events: none;
}

.loading-overlay.hidden {
    opacity: 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet Landscape and Smaller */
@media (max-width: 992px) {
    :root {
        --space-2xl: 3rem;
        --space-xl: 2rem;
        --space-lg: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .trusted-logos {
        gap: var(--space-md);
    }
    
    .trusted-logo {
        font-size: var(--font-size-sm);
        padding: var(--space-xs);
        flex: 0 1 calc(33.333% - var(--space-md));
    }
}

/* Tablet Portrait and Smaller */
@media (max-width: 768px) {
    :root {
        --space-2xl: 2.5rem;
        --space-xl: 1.5rem;
        --space-lg: 1.25rem;
        --space-md: 1rem;
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--space-xs);
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .trusted-logos {
        gap: var(--space-sm);
    }
    
    .trusted-logo {
        flex: 0 1 calc(50% - var(--space-sm));
        font-size: var(--font-size-xs);
        padding: 0.5rem;
    }
    
    .cta-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-subtitle {
        font-size: var(--font-size-base);
    }
    
    .video-container {
        border-radius: var(--radius-md);
    }
    
    .service-card,
    .feature-card,
    .testimonial-card,
    .step-card,
    .earnings-slide {
        padding: var(--space-md);
    }
    
    .service-icon,
    .feature-icon,
    .step-number {
        width: 56px;
        height: 56px;
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer .row > div {
        margin-bottom: var(--space-xl);
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .service-card,
    .feature-card,
    .testimonial-card,
    .step-card {
        padding: var(--space-md);
    }
    
    .service-icon,
    .feature-icon,
    .step-number {
        width: 56px;
        height: 56px;
        font-size: var(--font-size-lg);
    }
    
    .nav-link {
        margin: 0;
        text-align: center;
    }
    
    .footer .row > div {
        text-align: center;
        margin-bottom: var(--space-xl);
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    :root {
        --space-xs: 0.375rem;
        --space-sm: 0.75rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 1.75rem;
        --space-2xl: 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .service-icon,
    .feature-icon,
    .step-number {
        width: 48px;
        height: 48px;
        font-size: var(--font-size-base);
    }
    
    .service-title,
    .feature-title,
    .step-title {
        font-size: var(--font-size-base);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-xs);
    }
}

/* Print Styles */
@media print {
    .loading-overlay,
    .navbar-custom,
    .hero-buttons,
    .trusted-section,
    .video-section,
    .cta-section,
    .footer,
    .btn {
        display: none !important;
    }
    
    .section {
        padding: 20px 0 !important;
        break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}