/* =================================================================
   ELECTROHUB - PREMIUM ELECTRONICS WEBSITE
   Modern, Responsive, Glassmorphism Design
   ================================================================= */

/* =================================================================
   CSS VARIABLES & ROOT STYLES
   ================================================================= */
:root {
    /* Colors */
    --primary-dark: #020617;
    --primary-blue: #2563EB;
    --accent-cyan: #22D3EE;
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --text-light: #F1F5F9;
    --text-dark: #1E293B;
    --text-gray: #94A3B8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #020617, #2563EB);
    --gradient-accent: linear-gradient(135deg, #2563EB, #22D3EE);
    --gradient-light: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 15px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =================================================================
   RESET & BASE STYLES
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =================================================================
   TYPOGRAPHY
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-light {
    background: linear-gradient(135deg, #fff, #F1F5F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Gradient Text */
.animated-gradient {
    background: linear-gradient(90deg, #2563EB, #22D3EE, #2563EB, #22D3EE);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.bg-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.bg-gradient {
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-normal);
}

.bg-dark .glass-card,
.bg-gradient .glass-card {
    background: rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.3);
}

/* =================================================================
   SCROLL PROGRESS BAR
   ================================================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.1s;
}

/* =================================================================
   HEADER & NAVIGATION
   ================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
}

.nav__logo i {
    font-size: 2rem;
}

.nav__list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav__link .nav-icon {
    display: none;
}

.nav__link:hover,
.nav__link.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-cyan);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
}

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

.btn-glow {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
}

.btn-light {
    background: white;
    color: var(--primary-dark);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../Images/g.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95), rgba(37, 99, 235, 0.85));
    opacity: 1;
}

.hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.15) 0%, transparent 50%);
}

.hero__container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero__content {
    color: var(--text-light);
    text-align: center;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__subtitle {
    display: block;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    justify-content: center;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero__img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero__image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-accent);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 3rem;
    color: var(--accent-cyan);
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.floating-element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 60%;
    right: 5%;
    animation-delay: 1s;
}

.floating-element-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

/* =================================================================
   SECTION HEADERS
   ================================================================= */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 500;
}

.bg-dark .section__badge {
    background: rgba(37, 99, 235, 0.2);
    color: var(--accent-cyan);
}

.section__title {
    margin-bottom: 1rem;
}

.section__description {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* =================================================================
   FEATURES SECTION
   ================================================================= */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 15px;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card__title {
    margin-bottom: 1rem;
}

.feature-card__description {
    opacity: 0.8;
}

.feature-card__glow {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    filter: blur(60px);
    opacity: 0;
    transition: var(--transition-slow);
}

.feature-card:hover .feature-card__glow {
    opacity: 0.1;
}

/* =================================================================
   PRODUCTS SECTION
   ================================================================= */
.products__filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--primary-blue);
}

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

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-new {
    background: linear-gradient(135deg, #10B981, #22D3EE);
}

.badge-hot {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.product-card__image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__content {
    padding: 0 1rem 1rem;
}

.product-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-card__description {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-original {
    text-decoration: line-through;
    opacity: 0.5;
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #F59E0B;
}

.product-card__rating span {
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.products__cta {
    text-align: center;
    margin-top: 3rem;
}

/* =================================================================
   STEPS/HOW IT WORKS
   ================================================================= */
.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.step-content {
    padding: 2rem;
}

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

.step-title {
    margin-bottom: 1rem;
}

.step-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.step-features i {
    color: #10B981;
}

.step-line {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--primary-blue), transparent);
}

.step-item:last-child .step-line {
    display: none;
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testimonials__slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    color: #F59E0B;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-position {
    opacity: 0.7;
    font-size: 0.9rem;
}

.author-earning {
    font-weight: 600;
    margin-top: 0.3rem;
}

.testimonial-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    opacity: 0.1;
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dots .dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

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

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

.stat-box i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.stat-box .stat-number {
    font-size: 3rem;
}

/* =================================================================
   CTA SECTION
   ================================================================= */
.cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: var(--accent-cyan);
    filter: blur(100px);
    opacity: 0.2;
}

.cta__container {
    position: relative;
    z-index: 1;
}

.cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.cta__feature i {
    color: #10B981;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta__trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: white;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 20px;
    position: relative;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__logo i {
    font-size: 2rem;
}

.footer__description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
}

.footer__title {
    margin-bottom: 1.5rem;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    opacity: 0.8;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer__contact i {
    color: var(--accent-cyan);
    margin-top: 3px;
}

.footer__newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
}

.newsletter__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter__form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter__form input {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

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

.footer__bottom-links {
    display: flex;
    gap: 2rem;
}

.footer__bottom-links a:hover {
    color: var(--accent-cyan);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* =================================================================
   PAGE HERO (FOR INTERNAL PAGES)
   ================================================================= */
.page-hero {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.page-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    opacity: 0.8;
}

.breadcrumb a:hover {
    color: var(--accent-cyan);
}

/* =================================================================
   ANIMATIONS
   ================================================================= */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-down {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 0.8s ease forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(50px);
    animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRight 0.8s ease forwards;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleUp 0.8s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 5rem 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__link {
        width: 100%;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .step-item {
        grid-template-columns: 1fr;
    }
    
    .step-line {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =================================================================
   PRODUCT DETAIL PAGE
   ================================================================= */
.breadcrumb-section {
    padding: 120px 0 20px;
    background: var(--bg-dark);
}

.product-detail__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.gallery-main {
    margin-bottom: 1.5rem;
}

.main-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.75rem 1.5rem;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.thumbnail {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.thumbnail.active {
    border-color: var(--primary-blue);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.product-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-category,
.product-sku {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
}

.product-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #F59E0B;
}

.rating-value {
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 0.5rem;
}

.rating-count {
    color: var(--text-gray);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-price .price-current {
    font-size: 3rem;
}

.product-price .price-original {
    font-size: 1.5rem;
}

.price-discount {
    padding: 0.5rem 1rem;
    background: #10B981;
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    border-radius: 50px;
    color: #10B981;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-description {
    margin-bottom: 2rem;
}

.product-features h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.product-features i {
    color: #10B981;
    margin-top: 3px;
}

.product-options {
    margin: 2rem 0;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 150px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.qty-btn:hover {
    transform: scale(1.1);
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.05);
    font-size: 1.1rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-benefits {
    padding: 1.5rem;
}

.product-benefits .benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-benefits .benefit:last-child {
    margin-bottom: 0;
}

.product-benefits i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.product-benefits strong {
    display: block;
    margin-bottom: 0.25rem;
}

.product-benefits span {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Product Tabs */
.product-tabs {
    padding: 60px 0;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gradient-accent);
    color: white;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.specs-table table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td {
    padding: 1.25rem;
}

.spec-label {
    font-weight: 600;
    width: 40%;
}

.spec-value {
    opacity: 0.8;
}

.description-content h3,
.description-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.description-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.description-content li {
    margin-bottom: 0.5rem;
}

.reviews-content h3 {
    margin-bottom: 2rem;
}

.review-item {
    padding: 2rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 0.25rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    color: #F59E0B;
}

.review-date {
    opacity: 0.6;
    font-size: 0.9rem;
}

.review-text {
    opacity: 0.9;
    line-height: 1.8;
}

.shipping-content h3 {
    margin-bottom: 2rem;
}

.shipping-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.shipping-option i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.shipping-option h4 {
    margin-bottom: 0.5rem;
}

.shipping-option p {
    margin: 0;
    opacity: 0.7;
}

.related-products {
    padding: 60px 0;
}

/* =================================================================
   PRODUCTS PAGE
   ================================================================= */
.products-toolbar {
    margin-bottom: 3rem;
}

.toolbar-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.toolbar-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.05);
}

.sort-select {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.05);
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.no-results h3 {
    margin-bottom: 0.5rem;
}

.benefits-banner {
    padding: 60px 0;
}

.benefits-banner__content {
    text-align: center;
}

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

.benefits-banner .benefit-item {
    text-align: center;
}

.benefits-banner .benefit-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.benefits-banner .benefit-item h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.benefits-banner .benefit-item p {
    margin: 0;
    opacity: 0.9;
}

/* =================================================================
   ABOUT PAGE
   ================================================================= */
.about-story__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story__image {
    position: relative;
}

.about-story__image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.image-badge i {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.image-badge h4 {
    margin-bottom: 0.25rem;
}

.image-badge p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.story-stats .stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card {
    text-align: center;
    padding: 3rem;
}

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

.mission-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
}

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

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

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

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-blue);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    margin-bottom: 0.5rem;
}

.leader-role {
    display: block;
    margin-bottom: 1rem;
}

.leader-bio {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.leader-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.leader-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.leader-social a:hover {
    background: var(--gradient-accent);
    color: white;
}

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

.success-card {
    overflow: hidden;
}

.success-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.success-card:hover .success-image img {
    transform: scale(1.1);
}

.success-content h3 {
    margin-bottom: 0.5rem;
}

.success-author {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.success-stat {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* =================================================================
   BUSINESS PLAN PAGE
   ================================================================= */
.plan-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

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

.plan-stat .stat-number {
    font-size: 3rem;
}

.ranks-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.rank-card {
    margin-bottom: 3rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.rank-card .rank-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

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

.rank-card:hover .rank-image img {
    transform: scale(1.1);
}

.rank-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.rank-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #C87533);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #AAA9AD);
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.rank-badge.platinum {
    background: linear-gradient(135deg, #E5E4E2, #B9F2FF);
}

.rank-badge.elite {
    background: linear-gradient(135deg, #9333EA, #EC4899);
}

.rank-title {
    text-align: center;
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.rank-income {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.rank-requirements,
.rank-benefits {
    margin-bottom: 2rem;
}

.rank-requirements h4,
.rank-benefits h4 {
    margin-bottom: 1rem;
}

.rank-requirements ul,
.rank-benefits ul {
    list-style: none;
}

.rank-requirements li,
.rank-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rank-requirements i {
    color: var(--primary-blue);
    margin-top: 3px;
}

.rank-benefits i {
    color: #10B981;
    margin-top: 3px;
}

/* Income Preview Styles */
.income__streams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.income-card {
    text-align: center;
    padding: 2.5rem;
}

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

.income-card__title {
    margin-bottom: 1rem;
}

.income-card__percentage {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.income-card__description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.income-card__features {
    list-style: none;
}

.income-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.income-card__features i {
    color: #10B981;
}

.income__examples {
    margin-top: 4rem;
}

.examples__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.example-card {
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.example-card.featured {
    border: 2px solid var(--primary-blue);
}

.example-card.elite {
    border: 2px solid #9333EA;
}

.example-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.example-rank {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.example-amount {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.example-requirements {
    list-style: none;
    text-align: left;
}

.example-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.example-requirements i {
    color: #10B981;
    margin-top: 2px;
}

.income__disclaimer {
    margin-top: 3rem;
    text-align: center;
}

.income__disclaimer p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    justify-content: center;
    opacity: 0.7;
}

.income__disclaimer i {
    color: var(--accent-cyan);
}

/* Bonuses Section */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    text-align: center;
    padding: 2.5rem;
}

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

.bonus-card h3 {
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.bonus-card ul {
    list-style: none;
    text-align: left;
}

.bonus-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bonus-card i {
    color: #10B981;
}

/* Comparison Table */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
}

.package-name {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.package-price {
    margin-bottom: 2rem;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.package-price .period {
    opacity: 0.7;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.package-features .fa-check {
    color: #10B981;
}

.package-features .fa-times {
    color: #EF4444;
}

/* =================================================================
   JOIN PAGE
   ================================================================= */
.join-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.join-benefits h2 {
    margin-bottom: 1rem;
}

.join-benefits > p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.benefit-list {
    margin-bottom: 2rem;
}

.join-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.join-benefits .benefit-item i {
    font-size: 1.5rem;
    color: #10B981;
}

.join-benefits .benefit-item h4 {
    margin-bottom: 0.5rem;
}

.join-benefits .benefit-item p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
}

.trust-item i {
    color: #10B981;
}

.join-form-container {
    padding: 3rem;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.05);
    transition: var(--transition-normal);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-label span {
    font-size: 0.95rem;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.form-footer a {
    color: var(--primary-blue);
    font-weight: 600;
}

.join-testimonials {
    padding: 60px 0;
}

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

.testimonials-grid .testimonial-card {
    min-width: auto;
    padding: 2rem;
}

.testimonials-grid .testimonial-author {
    gap: 1rem;
}

.testimonials-grid .author-image {
    width: 50px;
    height: 50px;
}

.testimonials-grid .testimonial-author h4 {
    font-size: 1rem;
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-cards {
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-card h3 {
    margin-bottom: 0.75rem;
}

.contact-card p {
    margin: 0;
    opacity: 0.8;
    line-height: 1.8;
}

.social-media h3 {
    margin-bottom: 1rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.contact-form-container {
    padding: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.map-section {
    padding: 60px 0;
}

.map-container {
    padding: 0;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    display: block;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
}

.faq-question h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    font-size: 1.1rem;
}

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

.faq-question > i {
    transition: var(--transition-normal);
}

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

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

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

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.8;
}

/* =================================================================
   LOGIN PAGE - PERFORMANCE OPTIMIZED
   ================================================================= */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.login-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.95;
}

.login-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 211, 238, 0.2) 0%, transparent 50%);
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* Login Container - White Background, No Glass Effects */
.login-container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* NO backdrop-filter, NO blur, NO transforms on hover */
}

/* Dashboard Await Container - White Background, Static */
.dashboard-await-container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* COMPLETELY STATIC - No hover effects, no transforms, no animations */
    pointer-events: none; /* Disable all interactions */
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #666;
    margin: 0;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.login-logo i {
    font-size: 2.5rem;
}

.login-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.login-form label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.login-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333;
    transition: border-color 0.2s;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: var(--primary-blue);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 2rem 0;
}

.login-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-google {
    background: white;
    color: #333;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-facebook {
    background: #1877F2;
    color: white;
}

.btn-facebook:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer p {
    margin: 0;
    color: #666;
}

.login-footer a {
    color: var(--primary-blue);
    font-weight: 600;
}

.dashboard-await-container h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #1a1a1a;
}

.dashboard-await-container > p {
    color: #666;
    margin-bottom: 2rem;
}

.preview-features {
    margin-bottom: 2rem;
}

.preview-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    /* NO hover effects - completely static */
}

.preview-feature i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.preview-feature h4 {
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.preview-feature p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.preview-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    /* NO hover effects */
}

.preview-stat i {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.preview-stat h4 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preview-stat p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Mock Dashboard */
.mock-dashboard {
    padding: 100px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.dashboard-header h2 {
    margin: 0;
}

.dashboard-header p {
    margin: 0;
    opacity: 0.8;
}

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

.dashboard-card {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.card-content p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.card-change {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-change.positive {
    color: #10B981;
}

.dashboard-sections {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.dashboard-section {
    padding: 2rem;
}

.dashboard-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
    padding: 1rem;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 8px 8px 0 0;
    transition: var(--transition-normal);
}

.chart-bar:hover {
    opacity: 0.8;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.activity-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-top: 2px;
}

.activity-item p {
    margin: 0 0 0.25rem;
}

.activity-item span {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* =================================================================
   ADDITIONAL RESPONSIVE STYLES
   ================================================================= */
@media screen and (max-width: 968px) {
    .product-detail__wrapper,
    .about-story__content,
    .join-wrapper,
    .contact-wrapper,
    .login-wrapper,
    .dashboard-sections {
        grid-template-columns: 1fr;
    }
    
    /* Hero Section - Tablet */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero__container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .hero__badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero__badge span {
        display: inline;
    }
    
    .hero__title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1.25rem;
    }
    
    .hero__description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero__stats {
        gap: 2rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .trust-badges {
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .badge-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .badge-item i {
        font-size: 1.25rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: left 0.3s ease;
        flex-direction: column;
        gap: 1.5rem;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .nav__link {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        justify-content: flex-start;
    }
    
    .nav__link .nav-icon {
        display: inline-block;
        font-size: 1.2rem;
        width: 24px;
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-light);
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
    }
    
    .nav__actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav__actions .btn i {
        display: none;
    }
    
    .mission-vision__grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    /* Hero Section - Mobile */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero__container {
        padding: 0 1rem;
    }
    
    .hero__badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero__title {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-top: 0.4rem;
    }
    
    .hero__description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: space-around;
        margin: 1.25rem 0;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 0.75rem;
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    .badge-item {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
        flex: 0 0 calc(50% - 0.375rem);
    }
    
    .badge-item i {
        font-size: 1.1rem;
    }
    
    .badge-item span {
        font-size: 0.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    /* Hero Section - Small Mobile */
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero__container {
        padding: 0 0.75rem;
    }
    
    .hero__badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
    }
    
    .hero__badge i {
        font-size: 0.8rem;
    }
    
    .hero__badge span {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero__title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 0.75rem;
        line-height: 1.15;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
        margin-top: 0.3rem;
        line-height: 1.3;
    }
    
    .hero__description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin: 1rem 0;
    }
    
    .stat-item {
        width: 100%;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero__buttons {
        gap: 0.625rem;
    }
    
    .hero__buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero__buttons .btn i {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        gap: 0.5rem;
        margin-top: 1.25rem;
    }
    
    .badge-item {
        padding: 0.5rem 0.65rem;
        font-size: 0.75rem;
        flex: 0 0 calc(50% - 0.25rem);
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .badge-item i {
        font-size: 1rem;
    }
    
    .badge-item span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .examples__grid {
        grid-template-columns: 1fr;
    }
    
    .toolbar-actions {
        flex-direction: column;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Devices (iPhone SE, Galaxy Fold) */
@media screen and (max-width: 375px) {
    .hero__title {
        font-size: 1.4rem;
    }
    
    .hero__subtitle {
        font-size: 0.85rem;
    }
    
    .hero__description {
        font-size: 0.8rem;
    }
    
    .hero__buttons .btn {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .badge-item {
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
    }
}

/* Landscape Orientation for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 30px;
    }
    
    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero__description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .hero__stats {
        flex-direction: row;
        gap: 1rem;
        margin: 0.75rem 0;
    }
    
    .stat-item {
        padding: 0.25rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero__buttons {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .hero__buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        flex: 1;
    }
    
    .trust-badges {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .badge-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}
