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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: #1a2937;
    background: #f0f9ff;
    overflow-x: hidden;
    font-size: 18px;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Bright Sunny Blue Theme */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #ffffff;
    --secondary-dark: #f0f9ff;
    --secondary-light: #ffffff;
    --accent: #38bdf8;
    --accent-dark: #0ea5e9;
    --accent-light: #7dd3fc;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Neutrals - White, Blue, and Black Theme */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Bright Sunny Blue Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    --gradient-accent: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
    --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #7dd3fc 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --gradient-dark: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    
    /* Premium Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 50px 100px -20px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(135, 206, 235, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(135, 206, 235, 0.2);
    --shadow-colored: 0 20px 40px -12px rgba(135, 206, 235, 0.25);
    
    /* Typography - Clean Modern Fonts */
    --font-heading: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    --font-accent: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #0284c7;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: none;
}

.section-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #475569;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
    backdrop-filter: none;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    border: none;
    font-weight: 600;
    text-shadow: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: #ffffff;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
    transform: scale(1.0);
}

.brand-logo:hover {
    transform: scale(1.26);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    letter-spacing: 0.3px;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 500;
}

.account-toggle:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

.account-toggle i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.account-dropdown.active .account-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 6px;
}

.account-dropdown.active .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-100);
}

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

.account-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.account-item i {
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 0 0 80px 0 !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
    z-index: 2;
    animation: shimmer 6s ease-in-out infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    right: 5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 3%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 30%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 20%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 100px !important;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.hero-text {
    max-width: 800px;
    margin-top: 0;
    text-align: center;
}


.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

/* Desktop - keep on same line and larger size */
@media (min-width: 769px) {
    .hero {
        align-items: flex-end !important; /* Push content to bottom */
        padding-top: 0 !important;
        padding-bottom: 100px !important; /* Reduced space from bottom */
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-height: 100vh !important; /* Full height to prevent cutoff */
    }
    
    .hero-content {
        margin-top: 150px !important; /* Push content down on desktop */
    }
    
    .hero-title {
        font-size: clamp(4rem, 10vw, 6rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 32px !important;
        font-weight: 700 !important;
    }
    
    .hero-title .title-line {
        display: inline;
        margin-right: 12px;
    }
    
    .hero-title .title-line:last-child {
        margin-right: 0;
    }
}

/* Mobile-specific title styling - smaller header for mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
        font-weight: 700 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    }
    
    .hero-title .title-line {
        display: block !important;
        margin-bottom: 4px !important;
    }
}

/* Extra small mobile screens - smaller header for mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.2rem, 14vw, 3.5rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 18px !important;
        font-weight: 700 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    }
    
    .hero {
        padding: 200px 0 !important; /* Center content on small mobile */
    }
    
    .hero-content {
        margin-top: 0px; /* Reset margin since we're using padding */
    }
    
    .hero-title .title-line {
        display: block !important;
        margin-bottom: 3px !important;
    }
}

/* Very small mobile screens - smaller header for mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: clamp(2rem, 16vw, 3rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 16px !important;
        font-weight: 700 !important;
    }
}
    
    .hero-stats {
        padding: 32px 20px;
        gap: 16px;
        min-height: 120px;
        border-radius: 16px;
    }
    
    .stat-item {
        padding: 20px 12px;
        min-height: 100px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

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

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

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

.title-line {
    display: block;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 0px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cards {
    display: flex;
    gap: 20px;
    max-width: 700px;
    width: 100%;
    justify-content: flex-end;
    align-items: stretch;
}

.hero-card {
    background: var(--white);
    padding: 32px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 280px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 200px;
}

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

.hero-card.card-2 {
    background: var(--white);
    color: var(--gray-800);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-card.card-2 .card-icon {
    background: var(--gradient-secondary);
}

.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
    color: var(--gray-800);
    height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card p {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.3;
    margin: 0;
    color: var(--gray-600);
    height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.98);
    padding: 48px 32px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    max-width: 100%;
    overflow-x: auto;
    min-height: 140px;
    backdrop-filter: blur(15px);
    animation: fadeInUp 1s ease-out 0.6s both, float 6s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
    position: relative;
    transition: var(--transition-spring);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.2;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--white);
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 650px;
}

.about-features {
    margin-top: 48px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-content {
    flex: 1;
    padding-top: 4px;
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-content p {
    color: var(--black);
    line-height: 1.8;
    font-size: 16px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 80px;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff !important;
}

.image-placeholder i {
    color: #ffffff !important;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    scroll-margin-top: 80px;
    position: relative;
    color: var(--white);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(125, 211, 252, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.services .section-title {
    color: var(--white) !important;
}

.services .section-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

.services h1,
.services h2,
.services h3,
.services h4,
.services h5,
.services h6 {
    color: var(--white) !important;
}

.services p,
.services span,
.services div,
.services li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.services .service-header h3 {
    color: var(--white) !important;
}

.services .service-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.services .service-features {
    color: rgba(255, 255, 255, 0.9) !important;
}

.services .service-features li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.services .btn {
    color: var(--white) !important;
}

.services i,
.services .icon,
.services .fa,
.services .fas,
.services .far,
.services .fab {
    color: var(--white) !important;
}

.services .service-icon {
    color: var(--white) !important;
}

.services .service-icon i {
    color: var(--white) !important;
}

.services * {
    color: inherit;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-spring);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(135, 206, 235, 0.5);
    background: rgba(255, 255, 255, 0.15);
}



.service-header {
    margin-bottom: 32px;
    text-align: center;
}

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


.service-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
}

.service-content p {
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 18px;
    text-align: center;
}


.service-list {
    list-style: none;
    margin-bottom: 32px;
    text-align: center;
}

.service-list li {
    padding: 8px 0;
    color: var(--black);
    position: relative;
    padding-left: 0;
    font-size: 16px;
    text-align: center;
}


.service-list li::before {
    content: '✓';
    position: relative;
    margin-right: 8px;
    color: var(--primary);
    font-weight: 600;
}


.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 16px;
    justify-content: center;
    margin: 0 auto;
}


.service-link:hover {
    gap: 12px;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--section-padding);
    background: var(--gray-50);
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.category-content {
    padding: 32px;
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.category-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.category-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: var(--section-padding);
    background: var(--white);
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 80px;
    width: 2px;
    height: calc(100% + 16px);
    background: var(--gray-300);
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 16px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.contact-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.contact-text p {
    color: #64748b;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    line-height: 1.6;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== PROFILE SECTION ===== */
.profile {
    padding: 100px 0;
    background: var(--gray-50);
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 60px;
}

.profile-forms {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-form {
    max-width: 400px;
    margin: 0 auto;
}

.auth-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: var(--gray-800);
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-600);
}

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

.auth-switch a:hover {
    text-decoration: underline;
}

.profile-management {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.profile-info {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-md);
}

.profile-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.profile-details p {
    margin-bottom: 12px;
    color: var(--gray-600);
}

.brand-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gray-800);
}

@media (max-width: 768px) {
    .profile-management {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .profile-forms {
        padding: 24px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 32px;
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(125, 211, 252, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-bottom: 48px;
    text-align: center;
}

.footer-brand {
    max-width: 100%;
    text-align: center;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-logo .brand-icon {
    background: var(--gradient-primary);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.link-group h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.01em;
    text-align: center;
}

.link-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 15px;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 32px;
    text-align: center;
    color: var(--gray-400);
    font-size: 15px;
}

.footer-bottom #admin-link a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-bottom #admin-link a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero {
        padding-top: 80px; /* Increased padding from top on mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        max-width: 300px;
    }
    
    .hero-card {
        height: 250px;
        width: 180px;
        flex: 0 0 180px;
        padding: 24px 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 250px 0 !important; /* Center content on mobile */
    }
    
    .hero-content {
        margin-top: 0px; /* Reset margin since we're using padding */
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-cta {
        display: none !important; /* Hide entire nav-cta on mobile */
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .account-dropdown {
        display: none !important; /* Hide account dropdown on mobile */
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .account-toggle {
        display: none !important; /* Hide account toggle on mobile */
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .nav-container .nav-cta {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .nav-container .account-dropdown {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .account-menu {
        right: auto;
        left: 0;
        min-width: 200px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 24px;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .manufacturers {
        padding: 60px 0;
    }
    
    .manufacturers-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .manufacturers-text {
        max-width: 100%;
    }
    
    .manufacturers-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 12px;
        color: #fff;
    }
    
    .feature-icon i {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    .feature-item h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .feature-item p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-text {
        max-width: 100%;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        padding: 20px;
        text-align: center;
    }
    
    .contact-method i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .contact-method h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .contact-method p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ===== ADDITIONAL MOBILE OPTIMIZATIONS ===== */

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 16px;
    }
    
    /* Navigation improvements */
    .navbar {
        height: 70px;
        padding: 0 16px;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .nav-brand .brand-logo {
        height: 32px;
        max-width: 160px;
        transform: scale(1.0);
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 40px 20px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 16px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .mobile-account-section {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid var(--primary);
    }
    
    .mobile-account-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        color: var(--primary);
        border-bottom: 1px solid var(--gray-200);
    }
    
    .mobile-account-link:hover {
        background: var(--primary);
        color: var(--white);
    }
    
    .mobile-account-link i {
        font-size: 16px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--gray-700);
        transition: all 0.3s ease;
    }
}

/* Hide mobile account section on desktop */
@media (min-width: 769px) {
    .mobile-account-section {
        display: none;
    }
    
    .nav-cta {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .account-dropdown {
        display: block;
    }
    
    .btn-primary {
        display: inline-flex;
    }
    
    .nav-cta {
        display: none !important; /* Hide on mobile menu */
    }
    
    .account-dropdown {
        display: none !important; /* Hide account dropdown on mobile */
    }
}

/* Desktop navigation - show account dropdown */
@media (min-width: 769px) {
    .nav-cta {
        display: flex !important;
        align-items: center;
        gap: 16px;
    }
    
    .account-dropdown {
        display: block !important;
    }
    
    .btn-primary {
        display: inline-flex !important;
    }
    
    .mobile-account-section {
        display: none !important;
    }
    
    .hero {
        padding-top: 140px !important; /* Extra padding for desktop */
    }
    
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-evenly !important;
        gap: 20px !important;
        padding: 40px 20px !important;
        min-height: 120px !important;
    }
    
    .stat-item {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 20px 15px !important;
        min-height: 100px !important;
        width: 100% !important;
    }
    
    .about-visual {
        display: flex !important; /* Show the blue square with microscope on desktop */
    }
    
    .about-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 80px !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .about-text {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 650px !important;
    }
    
    .about .section-title {
        font-size: 3.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 32px !important;
        font-weight: 700 !important;
        color: var(--primary) !important;
    }
    
    .about .section-description {
        font-size: 1.2rem !important;
        line-height: 1.7 !important;
        margin-bottom: 40px !important;
        color: var(--gray-700) !important;
    }
    
    .about-features {
        margin-top: 60px !important;
    }
    
    .about .feature-content h3 {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
        color: var(--black) !important;
    }
    
    .about .feature-content p {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: var(--gray-600) !important;
    }
    
    .about .feature-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 20px !important;
    }
    }
    
    .service-card {
        padding: 30px !important;
    }
    
    .service-header h3 {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .service-content p {
        font-size: 20px !important;
        margin-bottom: 24px !important;
    }
    
    .service-list li {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .service-link {
        font-size: 18px !important;
    }
    
    .service-icon {
        width: 100px !important;
        height: 100px !important;
        font-size: 40px !important;
        margin-bottom: 24px !important;
    }
}
    
    /* Hero section mobile optimization */
    .hero {
        padding: 60px 0 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        box-sizing: border-box;
    }
    
    .hero-text {
        max-width: calc(100vw - 40px);
        margin: 0 auto;
        padding: 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: clamp(5.6rem, 20vw, 8.4rem);
        line-height: 1.1;
        margin-bottom: 24px;
        font-weight: 700;
        text-align: center;
        width: 100%;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 28px;
        max-width: 100%;
        padding: 0 10px;
        text-align: center;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
        margin: 8px auto 0;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: calc(100vw - 40px);
        display: flex;
        text-align: center;
        padding: 0;
        box-sizing: border-box;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 16px;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .btn span {
        text-align: center;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    
    .hero-cards {
        display: none; /* Hide cards on mobile for cleaner look */
    }
    
    .about-visual {
        display: none; /* Hide the blue square with science symbol on mobile */
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
        padding: 0;
        display: grid;
        justify-items: center;
        text-align: center;
        width: 100%;
        max-width: calc(100vw - 40px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    
    .stat-item {
        text-align: center;
        padding: 20px 12px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 8px;
        font-weight: 700;
        color: #000 !important;
    }
    
    .stat-label {
        font-size: 13px;
        line-height: 1.3;
        color: #000 !important;
        font-weight: 500;
    }
    
    /* About section mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .about-text {
        max-width: 100%;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-item {
        text-align: center;
        padding: 24px 16px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 16px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .feature-content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Services section mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-header h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .service-list {
        font-size: 13px;
    }
    
    .service-list li {
        margin-bottom: 6px;
    }
    
    /* Contact section mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-item {
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-text {
        text-align: center;
        width: 100%;
    }
    
    .contact-text h4 {
        font-size: 1rem;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .contact-text p {
        font-size: 14px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .link-group h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .link-group a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 24px;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 32px;
        padding-top: 24px;
        font-size: 14px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: clamp(3.6rem, 14vw, 5rem);
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 15px;
        padding: 0 2px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 50px;
    }
    
    .stat-item {
        padding: 16px 8px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        color: #000 !important;
    }
    
    .stat-label {
        font-size: 11px;
        color: #000 !important;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .feature-item {
        padding: 20px 12px;
    }
    
    .contact-item {
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
        width: 100%;
    }
    
    .contact-text h4 {
        text-align: center;
    }
    
    .contact-text p {
        text-align: center;
    }
    
    .navbar {
        height: 70px;
        padding: 0 12px;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .nav-brand .brand-logo {
        height: 28px;
        max-width: 140px;
        transform: scale(1.0);
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* iPhone specific optimizations for perfect centering */
@media screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .hero {
        padding: 90px 0 70px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        width: 100vw;
        margin: 0;
        position: relative;
        overflow-x: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        box-sizing: border-box;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
        max-width: calc(100vw - 40px);
        padding: 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .hero-title {
        text-align: center;
        width: 100%;
        max-width: 100%;
        font-size: clamp(2.2rem, 7vw, 3rem);
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        line-height: 1.2;
    }
    
    .hero-description {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        font-size: 16px;
        margin: 0 auto;
        box-sizing: border-box;
        line-height: 1.5;
    }
    
    .hero-actions {
        width: 100%;
        max-width: calc(100vw - 40px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 12px auto 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 20px;
        box-sizing: border-box;
        font-size: 14px;
    }
    
    .btn span {
        text-align: center;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    
    .hero-stats {
        width: 100%;
        max-width: calc(100vw - 40px);
        padding: 0;
        margin: 40px auto 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
        text-align: center;
        box-sizing: border-box;
    }
    
    .stat-item {
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px 8px;
        box-sizing: border-box;
    }
    
    .stat-number {
        color: #000 !important;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        font-size: 1.8rem;
    }
    
    .stat-label {
        color: #000 !important;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        font-size: 12px;
    }
}

/* Additional iPhone size variations */
@media screen and (max-width: 414px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-text {
        max-width: calc(100vw - 30px);
    }
    
    .hero-title {
        font-size: clamp(4rem, 12vw, 5rem);
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-actions {
        max-width: calc(100vw - 30px);
    }
    
    .btn {
        max-width: 220px;
        font-size: 13px;
        padding: 12px 18px;
    }
    
    .hero-stats {
        max-width: calc(100vw - 30px);
        gap: 10px;
        margin: 35px auto 15px;
    }
    
    .stat-item {
        padding: 14px 6px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media screen and (max-width: 375px) {
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-text {
        max-width: calc(100vw - 24px);
    }
    
    .hero-title {
        font-size: clamp(3.6rem, 11vw, 4.4rem);
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-actions {
        max-width: calc(100vw - 24px);
    }
    
    .btn {
        max-width: 200px;
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .hero-stats {
        max-width: calc(100vw - 24px);
        gap: 8px;
        margin: 35px auto 15px;
    }
    
    .stat-item {
        padding: 12px 4px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* Force hide account dropdown on mobile - highest priority */
@media screen and (max-width: 768px) {
    .nav-cta,
    .account-dropdown,
    .account-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    
    .nav-container .nav-cta,
    .nav-container .account-dropdown,
    .nav-container .account-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
}

/* ===== PROFILE HOME STYLES ===== */
.profile-home {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--white);
}

.welcome-section {
    text-align: center;
    padding: 60px 0;
    background: var(--white);
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.welcome-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gray-800);
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-section {
    margin-bottom: 60px;
}

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

.stat-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.stat-content h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-content p {
    color: var(--gray-600);
    margin: 0;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.step-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--gray-800);
    margin-bottom: 16px;
    font-weight: 600;
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.brand-preview {
    margin-bottom: 60px;
}

.brand-preview h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 32px;
    font-weight: 700;
}

.brand-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.brand-details h3 {
    font-size: 1.8rem;
    color: var(--gray-800);
    margin-bottom: 12px;
    font-weight: 700;
}

.brand-details p {
    color: var(--gray-600);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.support-section {
    margin-bottom: 60px;
}

.support-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.support-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.support-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: 12px;
    font-weight: 600;
}

.support-card p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.support-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.support-card a:hover {
    color: var(--primary-dark);
}

/* Mobile Responsive for Profile Home */
@media (max-width: 768px) {
    .profile-home {
        padding-top: 80px;
    }
    
    .welcome-section {
        padding: 40px 20px;
    }
    
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .welcome-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-card {
        padding: 32px 24px;
    }
    
    .brand-info-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .support-card {
        padding: 24px;
    }
}


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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== DASHBOARD STYLES ===== */
.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.welcome-info h1 {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.welcome-info p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.dashboard-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

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

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.stat-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.dashboard-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-header h2 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.steps-list {
    padding: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

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

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.step-action {
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

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

.brand-details {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-info h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.brand-info p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.quick-actions {
    padding: 1.5rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.action-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.action-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.action-item span {
    font-weight: 500;
}

.support-list {
    padding: 1.5rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.support-item i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.support-content h4 {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.support-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Dashboard Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .welcome-info h1 {
        font-size: 1.5rem;
    }
    
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-action {
        width: 100%;
    }
    
    .step-action .btn {
        width: 100%;
        text-align: center;
    }
    
    .brand-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .action-item {
        justify-content: center;
    }
}

/* ===== LARGE STEP CARD STYLES ===== */
.large-step-card {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    border: 2px solid var(--primary) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 2rem !important;
}

.large-step-card .step-number {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    align-self: center !important;
}

.large-step-card .step-content {
    flex: none !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

.large-step-header h2 {
    font-size: 2rem !important;
    color: var(--gray-800) !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
}

.step-subtitle {
    font-size: 1.1rem !important;
    color: var(--gray-600) !important;
    margin-bottom: 1.5rem !important;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    color: #fff;
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
}

.large-step-card .step-action {
    flex: none !important;
    text-align: center !important;
}

.large-btn {
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.large-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

/* Mobile responsive for large step card */
@media (max-width: 768px) {
    .large-step-card {
        padding: 1.5rem !important;
    }
    
    .large-step-header h2 {
        font-size: 1.5rem !important;
    }
    
    .step-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
    
    .large-btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* ===== BACK BUTTON STYLES ===== */
.back-button-container {
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: var(--white);
    border: 2px solid var(--primary);
}

.back-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(-2px);
}

.back-button i {
    font-size: 0.9rem;
}

/* ===== WEBSITE PAGE STYLES ===== */

/* Password Modal Styles */
.password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.password-modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.password-header {
    margin-bottom: 2rem;
}

.password-header i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.password-header h2 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.password-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

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

.password-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
    -webkit-text-security: disc;
    -moz-text-security: disc;
    text-security: disc;
}

.password-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.password-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.password-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.password-cancel {
    background: var(--gray-500);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.password-cancel:hover {
    background: var(--gray-600);
    transform: translateY(-1px);
}

.password-error {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fef2f2;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #fecaca;
}

/* Admin Panel Styles */
.admin-panel {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--gray-50);
}

/* Admin Layout */
.admin-layout {
    display: flex;
    min-height: calc(100vh - 100px);
}

/* Sidebar */
.admin-sidebar {
    width: 280px;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
    position: fixed;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-nav {
    padding: 1rem 0;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    background: var(--gray-50);
    color: var(--gray-800);
}

.nav-link.active {
    background: var(--primary);
    color: var(--white);
    border-left-color: var(--primary-dark);
}

.nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-link span {
    font-weight: 500;
}

/* Main Content */
.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background: var(--gray-50);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h1 {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-header h1 i {
    color: var(--primary);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

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

/* Customer Stats */
.customer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Item Lists */
.manufacturers-list,
.products-list,
.customers-list,
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.manufacturer-item,
.customer-item,
.agenda-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.manufacturer-item:hover,
.customer-item:hover,
.agenda-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.manufacturer-info,
.customer-info,
.agenda-info {
    flex: 1;
}

.manufacturer-info h4,
.customer-info h4,
.agenda-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
}

.manufacturer-info p,
.customer-info p,
.agenda-info p {
    margin: 0.25rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.manufacturer-status,
.customer-status,
.agenda-status {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.agenda-item.completed .agenda-status {
    background: #10b981;
}

.agenda-item.upcoming .agenda-status {
    background: #f59e0b;
}

.manufacturer-actions,
.customer-actions,
.agenda-actions {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    min-width: 120px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 250px;
    }
    
    .admin-content {
        margin-left: 250px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }
    
    .admin-sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .admin-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .nav-list {
        display: flex;
        gap: 0.5rem;
        min-width: max-content;
    }
    
    .nav-item {
        flex-shrink: 0;
    }
    
    .nav-link {
        white-space: nowrap;
        padding: 0.75rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .nav-link.active {
        border-left: none;
        border-bottom-color: var(--primary-dark);
    }
    
    .customer-stats {
        grid-template-columns: 1fr;
    }
    
    .manufacturer-item,
    .customer-item,
    .agenda-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .manufacturer-actions,
    .customer-actions,
    .agenda-actions {
        flex-direction: row;
        width: 100%;
        justify-content: flex-end;
    }
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.admin-header h1 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.admin-header h1 i {
    color: #dc2626;
}

.admin-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

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

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

.admin-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.admin-card .card-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.admin-card .card-header h2 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-card .card-header h2 i {
    color: var(--primary);
}

.admin-card .card-header p {
    color: var(--gray-600);
    margin: 0;
}

.admin-card .card-content {
    padding: 2rem;
}

.user-list {
    max-height: 400px;
    overflow-y: auto;
}

.user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--gray-50);
}

.user-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--gray-800);
    font-size: 1.1rem;
}

.user-info p {
    margin: 0 0 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.user-role {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.user-details {
    text-align: right;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.user-details p {
    margin: 0.25rem 0;
}

/* Product Management Styles */
.product-management {
    padding: 1rem 0;
}

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

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.product-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
}

.product-info p {
    margin: 0 0 0.25rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.product-price {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

.btn-small.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-small.btn-outline {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.btn-small.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

/* Message Management Styles */
.messages-management {
    padding: 1rem 0;
}

.message-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

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

.message-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.message-item.unread {
    border-left: 4px solid var(--primary);
    background: #f8fafc;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.message-header h4 {
    margin: 0;
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
}

.message-status {
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
}

.message-item.unread .message-status {
    background: var(--primary);
    color: var(--white);
}

.message-content {
    flex: 1;
    margin-right: 1rem;
}

.message-content p {
    margin: 0.25rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.message-preview {
    font-style: italic;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.message-actions {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    min-width: 120px;
}

.analytics-placeholder {
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
}

.analytics-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.analytics-placeholder h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

.loading, .error, .no-data {
    text-align: center;
    padding: 2rem;
    color: var(--gray-500);
    font-style: italic;
}

.error {
    color: #dc2626;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .admin-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .user-details {
        text-align: left;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
}

.website-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--gray-50);
}

.website-header {
    text-align: center;
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    margin-bottom: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

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

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

.website-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.website-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.website-header .back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
}

.website-header .back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-2px);
}

.website-header .header-badge i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.website-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.website-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-weight: 400;
}

.website-header .header-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.add-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.add-website-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}


.website-options {
    margin-bottom: 4rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.option-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 12px 30px -5px rgba(59, 130, 246, 0.3);
}

.option-card.featured::before {
    opacity: 1;
}

.option-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.4);
}

.card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.option-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.card-header h2 {
    font-size: 1.6rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.card-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.card-features {
    padding: 0 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.feature-item:hover {
    background: var(--gray-50);
    transform: translateX(4px);
}

.feature-item i {
    color: #fff;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.card-pricing {
    padding: 2rem 2rem 2.5rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    text-align: center;
    border-top: 1px solid var(--gray-200);
    position: relative;
}

.card-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0 0 3px 3px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.price-note {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 500;
}

.card-actions {
    padding: 0 2rem 2.5rem;
    text-align: center;
    margin-top: auto;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-outline:hover::before {
    left: 0;
}

/* Special styling for Free pricing */
.option-card.featured .price {
    color: #10b981;
    font-size: 2.8rem;
}

.option-card.featured .card-pricing {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.contact-section {
    background: var(--white);
    padding: 4rem 0;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

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

.contact-info h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-info span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.schedule-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Website page mobile responsive */
@media (max-width: 768px) {
    .website-header {
        padding: 2rem 0;
        margin-bottom: 1.5rem;
    }
    
    .website-header .header-top {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 0.5rem;
    }
    
    .website-header .header-badge {
        position: static;
        transform: none;
        order: 1;
    }
    
    .website-header .back-button {
        order: 2;
    }
    
    .website-header h1 {
        font-size: 2rem;
    }
    
    .website-header p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .website-header .header-actions {
        margin-top: 0.5rem;
    }
    
    .add-website-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .option-card.featured {
        transform: none;
    }
    
    .option-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
}

/* ===== PRODUCTS PAGE STYLES ===== */
.products-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--gray-50);
}

.products-header {
    text-align: center;
    padding: 3rem 0 2rem;
    background: var(--white);
    color: var(--primary);
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
}

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

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 0 1rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.products-header .back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 0.85rem;
}

.products-header .back-button:hover {
    background: var(--gray-200);
    transform: translateX(-2px);
}

.header-badge i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.products-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
    text-align: center;
    flex: 1;
}

.products-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-weight: 400;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.header-stats .stat-number {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.header-stats .stat-label {
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-categories {
    margin-bottom: 3rem;
}

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

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.7;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.75rem;
    text-align: center;
}

.product-content h3 {
    font-size: 1.375rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.feature-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.unit {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.product-btn {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
}

.custom-formulation {
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-section {
    background: var(--white);
    padding: 4rem 0;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

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

.contact-info h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-info span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.schedule-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Loading and No Products Messages */
.loading-message, .no-products-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    max-width: 500px;
    margin: 2rem auto;
}

/* Design Page Styles */
.design-page {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.design-header {
    text-align: center;
    padding: 3rem 0 2rem;
    background: var(--white);
    color: var(--primary);
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
}

.design-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.design-controls {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    height: fit-content;
}

.control-group {
    margin-bottom: 2rem;
}

.control-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.control-group input[type="text"],
.control-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.control-group input[type="text"]:focus,
.control-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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

.color-picker input[type="color"] {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.color-picker span {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.control-group input[type="range"] {
    width: 100%;
    margin: 0.5rem 0;
}

.control-group input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
}

.label-preview {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.label-preview h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.preview-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.label-sticker {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.label-sticker.rectangle {
    border-radius: 4px;
}

.label-sticker.rounded {
    border-radius: 12px;
}

.label-sticker.circle {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.label-sticker.oval {
    border-radius: 50%;
    width: 200px;
    height: 100px;
}

.label-content {
    text-align: center;
    padding: 1rem;
}

.logo-container {
    margin-bottom: 0.5rem;
}

.logo-container img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.brand-text {
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.product-text {
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.2;
}

.preview-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.saved-designs {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.saved-designs h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
    text-align: center;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.design-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.design-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-content {
    text-align: center;
    padding: 1rem;
}

.preview-brand {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.preview-product {
    font-weight: 500;
    opacity: 0.9;
}

.design-info {
    padding: 1rem;
}

.design-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.design-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.design-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.no-designs-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-600);
}

.no-designs-message i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-designs-message h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.message.success {
    background: #10B981;
}

.message.error {
    background: #EF4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .design-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .design-controls,
    .label-preview {
        padding: 1.5rem;
    }
    
    .preview-container {
        padding: 1rem;
    }
    
    .label-sticker {
        width: 150px;
        height: 90px;
    }
    
    .label-sticker.circle {
        width: 90px;
        height: 90px;
    }
    
    .label-sticker.oval {
        width: 150px;
        height: 75px;
    }
    
    .designs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .preview-actions {
        flex-direction: column;
    }
}

/* Label Generation Styles */
.label-generation {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.generation-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.generation-header .header-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.generation-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.generation-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.generation-actions {
    margin-bottom: 2rem;
    position: relative;
}

.generation-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.loading-animation {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.label-preview-container {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.preview-placeholder {
    text-align: center;
    color: var(--gray-500);
    padding: 3rem;
}

.preview-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.generated-label,
.active-label {
    display: inline-block;
    position: relative;
}

.label-image {
    max-width: 100%;
    max-height: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.label-actions {
    margin-top: 1rem;
}

/* Professional AI Design Studio Styles */
.ai-design-studio {
    margin-bottom: 3rem;
}

.studio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-prompt-section {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.header-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.header-content p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.prompt-container {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
}

.prompt-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prompt-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
}

.prompt-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
    font-family: inherit;
}

.prompt-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.generation-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.design-canvas {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.canvas-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.canvas-container {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-canvas-area {
    width: 100%;
    height: 100%;
    position: relative;
}

.canvas-placeholder {
    text-align: center;
    color: var(--gray-500);
    padding: 3rem;
}

.canvas-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.generated-design {
    position: relative;
    display: inline-block;
}

.design-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generated-design:hover .design-overlay {
    opacity: 1;
}

.active-design {
    display: inline-block;
}

/* Customization Panel */
.customization-panel {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

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

.panel-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.panel-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.customization-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--gray-100);
    padding: 0.5rem;
    border-radius: 12px;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content {
    min-height: 300px;
}

.tab-panel {
    display: none;
}

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

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

.control-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-item label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.control-item input,
.control-item select {
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.control-item input:focus,
.control-item select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.range-container input[type="range"] {
    flex: 1;
}

.range-container span {
    font-weight: 600;
    color: var(--primary);
    min-width: 60px;
    text-align: right;
}

.color-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.color-input-group input[type="color"] {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.color-input-group input[type="text"] {
    flex: 1;
    font-family: monospace;
}

.shape-options,
.alignment-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shape-btn,
.align-btn {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.shape-btn:hover,
.align-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.gradient-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Export Section */
.export-section {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.export-container {
    text-align: center;
}

.export-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.export-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mobile Responsive for New Design */
@media (max-width: 768px) {
    .studio-container {
        padding: 0 1rem;
    }
    
    .ai-prompt-section,
    .design-canvas,
    .customization-panel,
    .export-section {
        padding: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .header-content h2 {
        font-size: 1.5rem;
    }
    
    .control-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .customization-tabs {
        flex-direction: column;
    }
    
    .export-actions {
        flex-direction: column;
    }
    
    .canvas-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .shape-options,
    .alignment-options {
        justify-content: center;
    }
}

.loading-message i, .no-products-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.loading-message p, .no-products-message h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.no-products-message p {
    color: var(--gray-500);
    font-size: 1rem;
}

/* Products page mobile responsive */
@media (max-width: 768px) {
    .products-header {
        padding: 2rem 0;
        margin-bottom: 1.5rem;
    }
    
    .header-top {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        padding: 0 0.5rem;
        justify-content: space-between;
    }
    
    .header-badge {
        position: static;
        transform: none;
        order: 1;
    }
    
    .products-header .back-button {
        order: 2;
    }
    
    .products-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0;
        text-align: center;
        flex: 1;
    }
    
    .products-header p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .header-stats {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .header-stats .stat-number {
        font-size: 1.25rem;
        color: #ffffff !important;
    }
    
    .header-stats .stat-label {
        font-size: 0.8rem;
        color: #ffffff !important;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
}