/* ============================================
   Tryonix AI - AI Clothes Change Generator
   Premium Dark UI Design
   ============================================ */

/* === Mouse Tracking Glow Effect === */
.glow-effect {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.glow-effect::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    left: var(--mouse-x, -999px);
    top: var(--mouse-y, -999px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 1;
}

/* Glow effect for buttons - smaller radius */
.glow-effect-btn::before {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, rgba(139, 92, 246, 0.12) 40%, transparent 70%);
}

/* Glow effect for cards - larger radius */
.glow-effect-card::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.12) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 70%);
}

/* Glow border effect */
.glow-effect-border {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.glow-effect-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(200px at var(--mouse-x, -999px) var(--mouse-y, -999px), #8b5cf6, rgba(139, 92, 246, 0.2) 40%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect-border:hover::after {
    opacity: 1;
}

/* === CSS Variables === */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --accent: #f472b6;
    --accent-light: #f9a8d4;
    --success: #34d399;
    --warning: #fbbf24;
    --error: #f87171;
    
    --bg-deep: #030712;
    --bg-container: rgba(15, 23, 42, 0.8);
    --bg-card: rgba(30, 41, 59, 0.6);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --bg-elevated: rgba(51, 65, 85, 0.8);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border-subtle: rgba(148, 163, 184, 0.1);
    --border-default: rgba(148, 163, 184, 0.2);
    --border-accent: rgba(244, 114, 182, 0.3);
    
    --gradient-pink-purple: linear-gradient(135deg, #f472b6 0%, #8b5cf6 100%);
    --gradient-purple-blue: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-pink: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow-pink: 0 0 20px rgba(244, 114, 182, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    --transition-fast: 150ms ease-out;
    --transition-base: 250ms ease-out;
    --transition-slow: 400ms ease-out;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* === Animated Background === */
.bg-animation {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
}

/* Large sphere - top left (blue/purple gradient) */
.orb-1 {
    width: 150px;
    height: 150px;
    top: 80px;
    left: 40px;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.15), transparent 70%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: inset 0 0 30px rgba(99, 102, 241, 0.1), 0 0 60px rgba(99, 102, 241, 0.1);
}

/* Accent circle - top left (small) */
.orb-2 {
    width: 40px;
    height: 40px;
    top: 50px;
    left: 180px;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.2), transparent 70%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Large sphere - top right (pink gradient) */
.orb-3 {
    width: 120px;
    height: 120px;
    top: 60px;
    right: -20px;
    background: radial-gradient(circle at 70% 30%, rgba(244, 114, 182, 0.12), transparent 70%);
    border: 1px solid rgba(244, 114, 182, 0.2);
    box-shadow: inset 0 0 40px rgba(244, 114, 182, 0.08), 0 0 50px rgba(244, 114, 182, 0.08);
}

/* Accent dot - right side */
.orb-4 {
    width: 12px;
    height: 12px;
    top: 180px;
    right: 80px;
    background: rgba(244, 114, 182, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.4);
    animation: glowPulse 3s ease-in-out infinite;
}

/* Bottom left - blue sphere (increased size) */
.glow-1 {
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.18), transparent 70%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 50%;
    box-shadow: inset 0 0 40px rgba(99, 102, 241, 0.1), 0 0 60px rgba(99, 102, 241, 0.12);
}

/* Bottom left accent (increased size) */
.glow-2 {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 50px;
    left: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.25), transparent 70%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
}

/* Bottom right - pink sphere (increased size) */
.glow-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -40px;
    background: radial-gradient(circle at 70% 70%, rgba(244, 114, 182, 0.15), transparent 70%);
    border: 1px solid rgba(244, 114, 182, 0.25);
    border-radius: 50%;
    box-shadow: inset 0 0 40px rgba(244, 114, 182, 0.1), 0 0 50px rgba(244, 114, 182, 0.1);
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* === Main Container === */
.main-wrapper {
    position: relative;
    z-index: 1;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-pink-purple);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-pink-purple);
    border-radius: 1px;
}

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

.api-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--error);
    border-radius: 50%;
}

.status-dot.ready {
    background: var(--success);
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.btn-try-now {
    padding: 10px 24px;
    background: var(--gradient-pink-purple);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.btn-try-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 19px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 26px;
}

/* Cross button transformation when menu is open */
.mobile-menu-btn.active span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.5);
    backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile menu panel */
.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(15, 20, 45, 0.98) 0%, rgba(10, 14, 30, 0.99) 100%);
    border-left: 1px solid rgba(148, 163, 184, 0.15);
    z-index: 1000;
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    display: block;
    right: 0;
}

/* Mobile menu close button inside panel */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.25);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: rgba(244, 114, 182, 0.2);
    border-color: rgba(244, 114, 182, 0.4);
    transform: rotate(90deg);
}

.mobile-menu-panel .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-panel .mobile-nav-link {
    display: block;
    padding: 14px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.mobile-menu-panel .mobile-nav-link:hover,
.mobile-menu-panel .mobile-nav-link.active {
    color: var(--text-primary);
    background: rgba(244, 114, 182, 0.08);
    border-color: rgba(244, 114, 182, 0.2);
}

.mobile-menu-panel .mobile-menu-actions {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-panel .mobile-menu-actions .btn-try-now {
    display: block;
    text-align: center;
    padding: 12px 24px;
    width: 100%;
}

/* === Hero Section === */
.hero-section {
    padding: 7% 24px 60px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    /* text-align: center; */
    width: 100%;
}

/* Hero Left - Layered Images Stack */
.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carousel Arrow Buttons */
.hero-carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 92, 246, 0.35);
    background: rgba(15, 20, 35, 0.7);
    backdrop-filter: blur(8px);
    color: rgba(248, 250, 252, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.hero-carousel-arrow:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
    color: #fff;
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.25);
    transform: scale(1.08);
}

.hero-carousel-arrow:active {
    transform: scale(0.95);
}

.hero-carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.hero-images-carousel img{
    width: 90%;
}

.hero-images-stack {
    position: relative;
    width: 320px;
    height: 420px;
}

.hero-img-card {
    position: absolute;
    width: 440px;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.1);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, z-index 0s;
    border: 2px solid rgba(139, 92, 246, 0.2);
    background: rgba(30, 20, 50, 0.6);
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Card 1 - top, nearly flat */
.hero-img-card-1 {
    top: 0;
    left: 50px;
    transform: rotate(-1deg);
    z-index: 1;
}

/* Card 2 - middle, slightly rotated */
.hero-img-card-2 {
    top: 40px;
    left: 30px;
    transform: rotate(4deg);
    z-index: 2;
}

/* Card 3 - bottom, more rotated */
.hero-img-card-3 {
    top: 80px;
    left: 10px;
    transform: rotate(10deg);
    z-index: 3;
}

/* Hover: only the hovered card lifts up */
/* .hero-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(244, 114, 182, 0.25);
    z-index: 10;
} */

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 30px;
}

.hero-title {
    margin-bottom: 0;
}

.title-line-1 {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.15;
    letter-spacing: 3px;
}

.title-line-2 {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}

.hero-subtitle {
    color: rgba(248, 250, 252, 0.7);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1px;
    color: rgba(248, 250, 252, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1rem;
}

/* Hero Feature Icons */
.hero-feature-icon {
    width: 30px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* .hero-feature-icon-pink {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.18) 0%, rgba(244, 114, 182, 0.06) 100%);
    border: 1px solid rgba(244, 114, 182, 0.25);
}

.hero-feature-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18) 0%, rgba(168, 85, 247, 0.06) 100%);
    border: 1px solid rgba(168, 85, 247, 0.25);
}

.hero-feature-icon-blue {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.06) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
} */

/* === Generator Section === */
.generator-section {
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.generator-container {
    max-width: 1700px;
    margin: 0 auto;
    background: var(--bg-container);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(16px);
    padding: 32px;
}

/* === Steps Grid === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all var(--transition-base);
}

.step-card:hover {
    border-color: var(--border-default);
    background: rgba(30, 41, 59, 0.6);
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.step-badge {
    width: 32px;
    height: 32px;
    background: var(--gradient-purple-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.step-card-title h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.step-card-title p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.step-card-body {
    padding: 16px;
}

/* === Upload Zone === */
.upload-zone {
    background: rgba(15, 23, 42, 0.4);
    border: 2px dashed var(--border-default);
    border-radius: var(--radius-md);
    padding: 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.fabric-zone {
    min-height: 180px;
}

.upload-zone-icon {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.fabric-icon {
    color: var(--accent);
}

.upload-main-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.upload-divider {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-choose-file {
    padding: 10px 24px;
    background: var(--gradient-purple-blue);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-bottom: 12px;
}

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

.btn-fabric-file {
    background: var(--gradient-pink-purple);
}

.btn-fabric-file:hover {
    box-shadow: var(--shadow-glow-pink);
}

.upload-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Image Previews */
.user-image-preview,
.fabric-preview-section {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.user-image-preview img,
.fabric-preview-section img {
    width: 70%;
    height: 50vh;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    justify-self: center;
}

.user-image-overlay,
.fabric-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.user-image-preview:hover .user-image-overlay,
.fabric-preview-section:hover .fabric-preview-overlay {
    opacity: 1;
}

.btn-change-image {
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    color: white;
    transition: all var(--transition-fast);
}

.btn-change-image:hover {
    background: rgba(255, 255, 255, 0.3);
}

.user-image-placeholder {
    display: none;
}

.fabric-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Ensure upload-zone-content uses column layout (not display:contents) so its children are contained */
.upload-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.user-image-placeholder svg,
.fabric-placeholder svg {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* === Clothing Search === */
.clothing-search {
    position: relative;
    margin-bottom: 12px;
}

.clothing-search-input {
    width: 100%;
    padding: 10px 40px 10px 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.clothing-search-input:focus {
    border-color: var(--primary);
}

.clothing-search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

/* === Clothing Grid === */
.clothing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.clothing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.clothing-item:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: var(--border-default);
}

.clothing-item.selected {
    background: rgba(244, 114, 182, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(244, 114, 182, 0.2);
}

.clothing-item-icon {
    font-size: 1.5rem;
}

.clothing-item-name {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    transition: color var(--transition-fast);
}

.clothing-item.selected .clothing-item-name {
    color: var(--accent);
}

/* === More Categories === */
.more-categories {
    margin-top: 12px;
}

.more-categories-btn {
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--accent);
    cursor: pointer;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.more-categories-btn:hover {
    background: rgba(244, 114, 182, 0.1);
}

/* Extra Categories */
.extra-categories .clothing-grid {
    margin-top: 12px;
}

/* === Generate Info Section === */
.generate-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.generate-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px solid rgba(244, 114, 182, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generate-steps-list {
    list-style: none;
    text-align: left;
    width: 100%;
}

.generate-steps-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.step-bullet {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-generate-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--gradient-pink-purple);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
    transition: all var(--transition-base);
}

.btn-generate-main:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.4);
}

.btn-generate-main:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-generate-icon {
    font-size: 1.3rem;
}

.generate-time-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === Status Section === */
.status-section {
    padding: 20px 24px;
    position: relative;
    z-index: 1;
}

.status-container {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: var(--radius-full);
}

.status-pulse {
    width: 10px;
    height: 10px;
    background: var(--error);
    border-radius: 50%;
}

.status-pulse.ready {
    background: var(--success);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

#statusText {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    padding: 80px 24px 100px;
    position: relative;
    z-index: 1;
}

/* Row containing all 4 cards + arrows */
.hiw-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 1280px;
    margin: 0 auto;
}

/* Individual step card */
.hiw-card {
    flex: 1;
    max-width: 270px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.hiw-card:hover {
    transform: translateY(-6px);
}

/* Device frame wrapping the screenshot image */
.hiw-device-frame {
    position: relative;
    width: 100%;
    background: #0d0d1a;
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hiw-card:hover .hiw-device-frame {
    border-color: rgba(244, 114, 182, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.15);
}

.hiw-device-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Step 4 frame - result card */
.hiw-device-frame-result {
    border-color: rgba(244, 114, 182, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(244, 114, 182, 0.12);
}

.hiw-card:hover .hiw-device-frame-result {
    border-color: rgba(244, 114, 182, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(244, 114, 182, 0.25);
}

/* "Generated Result" label on step 4 */
.hiw-result-label {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(10, 10, 20, 0.85);
    border: 1px solid rgba(255, 183, 0, 0.4);
    border-radius: 20px;
    color: #fbbf24;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.hiw-result-dot {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    animation: resultDotPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes resultDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Info section below the device frame */
.hiw-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 22px;
    gap: 8px;
    padding: 0 8px;
}

/* Numbered circle badge */
.hiw-num-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b91cd1 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 0 14px rgba(192, 38, 211, 0.5);
    flex-shrink: 0;
}

/* Step 4 badge gets a brighter glow */
.hiw-num-badge-featured {
    background: linear-gradient(135deg, #f472b6 0%, #8b5cf6 100%);
    box-shadow: 0 0 18px rgba(244, 114, 182, 0.6);
}

.hiw-card-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.hiw-card-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Dashed arrow between cards */
.hiw-dashed-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 100px; /* push down to roughly mid-image */
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.3);
    gap: 0;
}

.dash-line {
    display: inline-block;
    width: 28px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    margin-right: 5px;
}

.dash-arrowhead {
    font-size: 1.1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Responsive: How It Works ===== */
@media (max-width: 1100px) {
    .hiw-steps-row {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .hiw-card {
        max-width: 200px;
        flex: 0 0 200px;
    }

    .hiw-dashed-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .hiw-steps-row {
        gap: 28px;
    }

    .hiw-card {
        max-width: 160px;
        flex: 0 0 160px;
    }
}

@media (max-width: 480px) {
    .hiw-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .hiw-card {
        max-width: 300px;
        flex: none;
        width: 100%;
    }

    .hiw-dashed-arrow {
        display: flex;
        margin-top: 0;
        transform: rotate(90deg);
    }
}

/* === Wizard Progress Indicator === */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all var(--transition-base);
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.progress-step.active .progress-circle {
    background: var(--gradient-pink-purple);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.3);
}

.progress-step.completed .progress-circle {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.progress-step span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active span {
    color: var(--text-primary);
}

.progress-line {
    width: 60px;
    height: 2px;
    background: var(--border-default);
    margin: 0 8px;
    margin-bottom: 24px;
}

/* Step 4 Result Card */
.step4-result-card {
    margin-top: 24px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
}

.step4-result-card .result-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--accent);
}

.step4-result-card .tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.step4-result-card .result-image-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

.step4-result-card .result-image-wrapper img {
    width: 100%;
    display: block;
}

.step4-result-card .result-meta {
    padding: 12px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.step4-result-card .result-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* === Wizard Navigation === */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 12px;
}

.btn-wizard-next,
.btn-wizard-prev {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-wizard-next {
    background: var(--gradient-pink-purple);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.btn-wizard-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

.btn-wizard-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-wizard-prev {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}

.btn-wizard-prev:hover {
    border-color: var(--text-muted);
}

/* === Contact Section === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-email-card,
.contact-form-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.contact-email-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-base);
}

.contact-email-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(244, 114, 182, 0.15);
}

.contact-email-card .contact-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: 50%;
    margin-bottom: 16px;
}

.contact-email-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-email-card > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(244, 114, 182, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.contact-email-link:hover {
    background: rgba(244, 114, 182, 0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.2);
}

.contact-email-link svg {
    flex-shrink: 0;
}

.contact-form-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

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

.btn-contact-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient-pink-purple);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

.how-it-works-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.how-it-works-title .title-line {
    width: 60px;
    height: 1px;
    background: var(--border-default);
}

.how-it-works-title .title-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.hiw-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.hiw-icon svg {
    width: 28px;
    height: 28px;
}

.hiw-number {
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--gradient-pink-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.hiw-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.hiw-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.hiw-connector {
    width: 50px;
    height: 20px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* === Processing Section === */
.processing-section {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(10px);
}

.processing-content {
    text-align: center;
}

.processing-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
}

.ring-2 {
    inset: 8px;
    border-top-color: var(--primary);
    animation-duration: 1s;
    animation-direction: reverse;
}

.ring-3 {
    inset: 16px;
    border-top-color: #8b5cf6;
    animation-duration: 1.5s;
}

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

.processing-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === Results Section === */
.results-section {
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.results-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.result-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--accent);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.results-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.result-image-wrapper {
    width: 100%;
}

.result-image-wrapper img {
    width: 100%;
    display: block;
}

.result-meta {
    padding: 16px;
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid var(--border-subtle);
}

.processing-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.processing-time strong {
    color: var(--success);
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-result-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-download {
    background: var(--gradient-pink-purple);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

.btn-try-another {
    background: rgba(30, 41, 59, 0.6);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    transition: all var(--transition-base);
}

.btn-try-another:hover {
    border-color: var(--text-muted);
    background: rgba(51, 65, 85, 0.8);
}

/* Error Message */
.error-message {
    margin-top: 24px;
    padding: 16px;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: var(--radius-sm);
    color: var(--error);
    text-align: center;
}

/* === Footer === */
footer {
    padding: 40px 24px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.footer-powered,
.footer-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.model-name {
    color: var(--accent);
    font-weight: 600;
}

/* === Toast Notification === */
.toast {
    position: fixed;
    top: 100px;
    right: 24px;
    padding: 16px 24px;
    background: var(--bg-elevated);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    font-weight: 500;
    transform: translateX(calc(100% + 24px));
    transition: transform var(--transition-slow);
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
}

.toast.error {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-right {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-title {
        text-align: left;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        padding: 12px 16px;
    }

    .btn-try-now {
        padding: 10px 5px;
    }
    
    .hero-section {
        padding: 110px 16px 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-right {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-demo-visual {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .demo-image-wrapper {
        width: 130px;
        height: 150px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        gap: 16px;
    }

    .showcase-desc-app{
        font-size: 1rem;
    }
    
    .generator-section {
        padding: 20px 16px;
    }
    
    .generator-container {
        padding: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .how-it-works-steps {
        flex-direction: column;
    }
    
    .hiw-connector {
        transform: rotate(90deg);
        width: 30px;
    }
    
    .how-it-works-title {
        margin-bottom: 24px;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .btn-result-action {
        width: 100%;
        justify-content: center;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .api-status {
        display: none;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 1.6rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .clothing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gen-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .gen-icon-circle svg {
        width: 32px;
        height: 32px;
    }
}

/* === Limit Exceeded Dialog === */
.limit-exceeded-dialog {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.limit-exceeded-content {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(244, 114, 182, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(244, 114, 182, 0.15);
    animation: scaleIn 0.3s ease;
}

.limit-exceeded-icon {
    margin-bottom: 20px;
    color: #fbbf24;
}

.limit-exceeded-icon svg {
    width: 64px;
    height: 64px;
}

.limit-exceeded-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f472b6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.limit-exceeded-content p {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.limit-exceeded-btn {
    padding: 12px 32px;
    background: linear-gradient(135deg, #f472b6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.limit-exceeded-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

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

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* === Scrollbar Styling === */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* === Gallery Section (Home Page) === */
.gallery-section {
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.gallery-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.gallery-card:hover {
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-card-comparison {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.gallery-card-before,
.gallery-card-after {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gallery-card-before img,
.gallery-card-after img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.gallery-card-before-placeholder,
.gallery-card-after-placeholder {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.gallery-card-before-placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
}

.gallery-card-after-placeholder {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.05));
}

.gallery-card-before-placeholder svg,
.gallery-card-after-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.gallery-card-before-placeholder svg {
    color: var(--primary);
}

.gallery-card-after-placeholder svg {
    color: var(--accent);
}

.gallery-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-card-arrow {
    color: var(--accent);
    flex-shrink: 0;
}

.gallery-card-arrow svg {
    width: 20px;
    height: 20px;
}

.gallery-card-info {
    padding: 12px 16px;
    border-top: 1px solid var(--border-subtle);
}

.gallery-card-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-card-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gallery-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.gallery-empty svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.gallery-empty h3 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.gallery-empty p {
    font-size: 0.9rem;
}

/* === Gallery Page (Separate Page) === */
.gallery-page-section {
    padding: 120px 24px 60px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.gallery-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.gallery-page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-page-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.gallery-page-card:hover {
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-page-card-comparison {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 16px;
}

.gallery-page-card-before,
.gallery-page-card-after {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gallery-page-card-before img,
.gallery-page-card-after img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.gallery-page-card-before-placeholder,
.gallery-page-card-after-placeholder {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.gallery-page-card-before-placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
}

.gallery-page-card-after-placeholder {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.05));
}

.gallery-page-card-before-placeholder svg,
.gallery-page-card-after-placeholder svg {
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

.gallery-page-card-before-placeholder svg {
    color: var(--primary);
}

.gallery-page-card-after-placeholder svg {
    color: var(--accent);
}

.gallery-page-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-page-card-arrow {
    color: var(--accent);
    flex-shrink: 0;
}

.gallery-page-card-arrow svg {
    width: 24px;
    height: 24px;
}

.gallery-page-card-info {
    padding: 16px 20px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-page-card-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.gallery-page-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gallery-page-card-info .card-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gallery-page-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.gallery-page-empty svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.gallery-page-empty h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.gallery-page-empty p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.btn-generate-first {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-pink-purple);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.btn-generate-first:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

/* Brand link styling */
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* === About Section === */
.about-section {
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

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

.about-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about-title .title-line {
    width: 60px;
    height: 1px;
    background: var(--border-default);
}

.about-title .title-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* === Auth Buttons === */
.btn-login,
.btn-signup {
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-login {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.btn-login:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.btn-signup {
    background: var(--gradient-pink-purple);
    color: white;
    margin-left: 8px;
}

.btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.btn-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-profile:hover {
    border-color: var(--text-muted);
    background: rgba(51, 65, 85, 0.8);
}

/* === Auth Modals === */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(10px);
}

.auth-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-xl);
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.auth-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    z-index: 3001;
    position: relative;
    pointer-events: auto !important;
}

.auth-close:hover {
    color: var(--text-primary);
}

.auth-input-group {
    margin-bottom: 16px;
}

.auth-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.auth-input-group input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.auth-input-group input:focus {
    border-color: var(--primary);
}

.auth-input-group input::placeholder {
    color: var(--text-muted);
}

/* Phone input with country code */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-input-wrapper .country-code {
    padding: 12px 10px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    user-select: none;
}

.phone-input-wrapper input {
    flex: 1;
}

.btn-auth-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient-pink-purple);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: 8px;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

.auth-switch {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

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

/* === Profile Modal === */
.profile-info {
    text-align: center;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--gradient-pink-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.profile-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-md);
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-logout {
    width: 100%;
    padding: 12px;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: var(--radius-sm);
    color: var(--error);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-logout:hover {
    background: rgba(248, 113, 113, 0.2);
}

.otp-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

/* === New Professional Section Styles === */

/* Section Container & Headers */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    margin: 0 auto 20px auto;
    width: fit-content;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 20px auto;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient-pink-purple);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(244, 114, 182, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 114, 182, 0.5);
}

.btn-hero-primary .arrow {
    transition: transform var(--transition-fast);
}

.btn-hero-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

/* === Hero Stats Bar (Full-width) === */
.hero-stats-bar {
    width: 100%;
    max-width: 1320px;
    margin: 50px auto 30px;
    padding: 0 24px;
    box-sizing: border-box;
}

.hero-stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(180deg, rgba(15, 20, 45, 0.9) 0%, rgba(10, 14, 30, 0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 28px 32px;
    backdrop-filter: blur(12px);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.hero-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon-pink {
    background: rgba(244, 114, 182, 0.15);
    border: 1px solid rgba(244, 114, 182, 0.25);
}

.hero-stat-icon-purple {
    background: rgba(192, 132, 252, 0.12);
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.hero-stat-icon-violet {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.hero-stat-value {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero-stat-value-pink {
    color: #f472b6;
}

.hero-stat-value-purple {
    color: #c084fc;
}

.hero-stat-value-violet {
    color: #a78bfa;
}

.hero-stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.75);
    margin-top: 2px;
}

.hero-stat-sublabel {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(148, 163, 184, 0.7);
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(148, 163, 184, 0.15);
    flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}
/* Scroll Indicator */
/* .hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
} */

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.scroll-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: linear-gradient(180deg, rgba(15, 20, 45, 0.9) 0%, rgba(10, 14, 30, 0.95) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-align: center;
}

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

.feature-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

/* Catalog Section */
.catalog-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.3);
}

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

.catalog-category {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
}

.catalog-category.featured {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 4px 12px;
    background: var(--gradient-pink-purple);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.category-icon {
    font-size: 1.5rem;
}

.category-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.catalog-item:hover {
    background: rgba(15, 23, 42, 0.6);
}

.item-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.item-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--border-default);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.3);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: rgba(30, 41, 59, 0.4);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Section Enhanced */
.about-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-story {
    text-align: center;
    margin-bottom: 48px;
}

.about-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-story h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-story p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.about-feature {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.about-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.about-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-tech-stack {
    text-align: center;
}

.about-tech-stack h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tech-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.contact-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

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

.btn-contact-chat {
    padding: 10px 24px;
    background: var(--gradient-pink-purple);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-contact-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

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

.social-link {
    padding: 6px 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.newsletter-btn {
    padding: 14px 24px;
    background: var(--gradient-pink-purple);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Brand Text Styles */
.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-accent {
    color: var(--accent);
}

/* Enhanced Footer */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-accent {
    color: var(--accent);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid var(--border-default);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-social-link:hover {
    background: var(--gradient-pink-purple);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(244, 114, 182, 0.35);
}

.footer-links-group h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-powered,
.footer-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copyright p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer Innovated Line */
.footer-innovated {
    text-align: center;
    margin-top: 4px;
}

.footer-innovated p {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.footer-valkya-link {
    color: #5d4451;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    position: relative;
}

.footer-valkya-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #5d4451;
    transition: width var(--transition-base);
}

.footer-valkya-link:hover {
    color: var(--accent-light);
}

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

/* Nav Brand Logo styling */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive for new sections */
@media (max-width: 1200px) {
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .catalog-categories {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .wizard-progress {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .progress-line {
        display: none;
    }
    
    .progress-step span {
        font-size: 0.65rem;
    }
    
    .progress-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .wizard-nav {
        flex-direction: column;
    }
    
    .btn-wizard-next,
    .btn-wizard-prev {
        width: 100%;
        justify-content: center;
    }
    
    .how-it-works-steps {
        flex-direction: column;
    }
    
    .hiw-connector {
        transform: rotate(90deg);
        width: 30px;
    }
    
    .hiw-example-image {
        width: 80px;
        height: 80px;
    }
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-logout {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--error);
    border-radius: var(--radius-sm);
    color: var(--error);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-logout:hover {
    background: rgba(248, 113, 113, 0.1);
}

/* === Selection === */
::selection {
    background: rgba(244, 114, 182, 0.3);
    color: white;
}

/* ===== Hero App Download Buttons ===== */
.hero-app-download {
    margin: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.hero-app-text {
    font-size: 14px;
    color: rgba(248, 250, 252, 0.65);
    letter-spacing: 0.02em;
    margin: 0;
}
.hero-app-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-app-store {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    border: 1.5px solid rgba(148,163,184,0.22);
    background: rgba(30,41,59,0.7);
    color: #f8fafc;
    backdrop-filter: blur(8px);
    min-width: 160px;
}
.btn-app-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(244,114,182,0.25);
    border-color: rgba(244,114,182,0.45);
    background: rgba(51,65,85,0.85);
}
.btn-app-store svg {
    flex-shrink: 0;
    opacity: 0.9;
}
.btn-app-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.btn-app-sub {
    font-size: 11px;
    color: rgba(248,250,252,0.55);
    font-weight: 400;
}
.btn-app-name {
    font-size: 15px;
    font-weight: 700;
    color: #f8fafc;
}
.btn-playstore svg {
    color: #4ade80;
}
.btn-appstore svg {
    color: #ffffff;
}
@media (max-width: 640px) {
    .hero-app-download {
        align-items: center;
    }
    .hero-app-btns {
        justify-content: center;
    }
    .btn-app-store {
        min-width: 145px;
        padding: 10px 16px;
    }
}


/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   Hero Section + Footer Section
   ============================================ */

/* ===== HERO SECTION - TABLET (=768px) ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 16px 48px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-left {
        justify-content: center;
    }

    .hero-images-stack {
        max-width: 260px;
        height: 340px;
    }

    .title-line-1 {
        font-size: 2rem !important;
    }

    .title-line-2 {
        font-size: 1.8rem !important;
    }

    .hero-right {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 400px;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .stat-card .stat-value {
        font-size: 1.6rem;
    }
}

/* ===== HERO SECTION - MOBILE (=480px) ===== */
@media (max-width: 480px) {
    .hero-section {
        padding: 120px 12px 36px;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-images-stack {
        max-width: 220px;
        height: 300px;
        margin: 0 auto;
    }

    .title-line-1 {
        font-size: 2rem !important;
    }

    .title-line-2 {
        font-size: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.88rem !important;
    }

    .hero-features {
        gap: 10px 14px;
    }

    .hero-feature {
        font-size: 0.8rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-card {
        padding: 12px 8px;
    }

    .stat-card .stat-value {
        font-size: 1.3rem;
    }

    .stat-card .stat-label {
        font-size: 0.72rem;
    }
    
    .nav-brand{
        gap: 2px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }

    .nav-actions {
        gap: 5px;
    }
    
    .btn-try-now {
        padding: 10px 2px;
    }
}

/* ===== FOOTER SECTION - TABLET (=768px) ===== */
@media (max-width: 768px) {
    footer {
        padding-top: 0;
    }

    .footer-container {
        padding: 40px 16px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 32px;
        text-align: center;
        padding-bottom: 28px;
    }

    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-group {
        text-align: center;
    }

    .footer-links-group ul {
        column-count: 2;
        column-gap: 24px;
    }

    .footer-links-group li {
        break-inside: avoid;
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
    }

    .footer-powered,
    .footer-privacy {
        justify-content: center;
    }
}

/* ===== FOOTER SECTION - MOBILE (=480px) ===== */
@media (max-width: 480px) {
    .footer-container {
        padding: 32px 12px 20px;
    }

    .footer-main {
        gap: 24px;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links-group ul {
        column-count: 1;
    }

    .footer-links-group h4 {
        font-size: 0.88rem;
        margin-bottom: 10px;
    }

    .footer-links-group a {
        font-size: 0.84rem;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .footer-powered,
    .footer-privacy {
        font-size: 0.78rem;
    }

    .footer-copyright p {
        font-size: 0.78rem;
    }

    .footer-bottom {
        gap: 8px;
        padding-top: 16px;
    }
}


/* ============================================
   Features Showcase Section
   ============================================ */
.features-showcase-section {
    padding: 70px 24px 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-around;
}

/* Left Side Content */
.showcase-content-left {
    flex: 1;
    max-width: 580px;
}

/* Badge Pill */
.showcase-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 1px solid rgba(244, 114, 182, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.9);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.showcase-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(244, 114, 182, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Showcase Heading */
.showcase-heading {
    margin: 0 0 20px 0;
    line-height: 1.15;
}

.showcase-heading-line1 {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    color: rgba(248, 250, 252, 0.95);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.showcase-heading-line2 {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    color: rgba(248, 250, 252, 0.95);
    letter-spacing: -0.5px;
}

.showcase-gradient-text {
    background: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Showcase Description Text */
.showcase-desc-text {
    font-size: 1.09rem;
    font-weight: 400;
    color: rgba(248, 250, 252, 0.72);
    line-height: 1.75;
    margin: 0 0 28px 0;
}

.showcase-highlight-pink {
    color: #f9a8d4;
    font-weight: 600;
}

.showcase-highlight-purple {
    color: #c4b5fd;
    font-weight: 600;
}

/* Showcase Features Grid */
.showcase-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.showcase-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(30, 41, 59, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.showcase-feature-item:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(244, 114, 182, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.showcase-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-icon-pink {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.18) 0%, rgba(244, 114, 182, 0.08) 100%);
    border: 1px solid rgba(244, 114, 182, 0.25);
    color: #f472b6;
}

.showcase-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18) 0%, rgba(168, 85, 247, 0.08) 100%);
    border: 1px solid rgba(168, 85, 247, 0.25);
    color: #a855f7;
}

.showcase-icon-blue {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #818cf8;
}

.showcase-icon-green {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.18) 0%, rgba(52, 211, 153, 0.08) 100%);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #34d399;
}

.showcase-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.showcase-feature-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.92);
    letter-spacing: 0.2px;
}

.showcase-feature-sub {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(148, 163, 184, 0.8);
}

/* Description text (legacy) */
.showcase-desc {
    font-size: 1.55rem;
    font-weight: 400;
    color: rgba(248, 250, 252, 0.9);
    line-height: 1.6;
    margin-bottom: 36px;
}

.gradient-text-pink {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* CTA Buttons Row */
.showcase-cta-row {
    display: flex;
    gap: 16px;
    margin: 15px 0px 25px 0px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-showcase-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 15px;
    background: var(--gradient-pink-purple);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: 0 4px 25px rgba(244, 114, 182, 0.4);
}

.btn-showcase-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(244, 114, 182, 0.55);
}

.btn-showcase-primary .arrow {
    transition: transform var(--transition-fast);
    font-size: 1.2rem;
}

.btn-showcase-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-showcase-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 15px;
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    backdrop-filter: blur(8px);
}

.btn-showcase-secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Divider with sparkle */
.showcase-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-right: 60px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(148, 163, 184, 0.2), rgba(244, 114, 182, 0.15));
}

.divider-sparkle {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* App Download Description */
.showcase-desc-app {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(248, 250, 252, 0.85);
    line-height: 1.6;
    margin-bottom: 10px;
    margin-top: 5px;
}

/* App Store Buttons */
.showcase-app-btns {
    display: flex;
    gap: 15px;
    border-radius: 50px;
    /* border: 1px solid rgb(185, 101, 218, 0.2); */
    flex-wrap: wrap;
    padding: 5px;
    /* background: #0f0f1e; */
    margin-top: 1px;
    /* justify-content: center; */
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 35px;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #f8fafc;
    backdrop-filter: blur(8px);
    min-width: 180px;
}

.btn-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(244, 114, 182, 0.2);
    border-color: rgba(244, 114, 182, 0.4);
    background: rgba(30, 41, 59, 0.7);
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-sub {
    font-size: 11px;
    color: rgba(248, 250, 252, 0.5);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
}

/* Right: Phone Mockup */
.showcase-phone-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
}

.showcase-phone {
    position: relative;
    width: 320px;
    height: auto;
}

.showcase-phone .phone-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 36px;
    box-shadow: var(--shadow-glow-purple);
}

.showcase-phone .phone-screen {
    position: absolute;
    top: 25px;
    left: 16px;
    right: 16px;
    bottom: 5px;
    border-radius: 28px;
    overflow: hidden;
    z-index: 1;
    background: rgba(10, 10, 20, 0.95);
}

.showcase-phone .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .showcase-content {
        flex-direction: column;
        gap: 50px;
    }

    .showcase-content-left {
        max-width: 100%;
        text-align: center;
    }

    .showcase-badge-pill {
        justify-content: center;
    }

    .showcase-heading-line1,
    .showcase-heading-line2 {
        font-size: 2.2rem;
    }

    .showcase-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-cta-row {
        justify-content: center;
    }

    .showcase-divider {
        padding-right: 0;
    }

    .showcase-app-btns {
        justify-content: center;
    }

    .showcase-phone-wrapper {
        min-width: auto;
    }

    .showcase-phone {
        width: 260px;
        height: auto;
    }
}

@media (max-width: 640px) {
    .features-showcase-section {
        padding: 60px 16px;
    }

    .showcase-heading-line1,
    .showcase-heading-line2 {
        font-size: 1.8rem;
    }

    .showcase-desc-text {
        font-size: 0.95rem;
    }

    .showcase-features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-feature-item {
        padding: 12px 14px;
    }

    .showcase-desc {
        font-size: 1.2rem;
    }

    .btn-showcase-primary,
    .btn-showcase-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .showcase-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .showcase-phone {
        width: 240px;
        height: auto;
    }

    .showcase-phone .phone-frame {
        border-radius: 30px;
    }

    .showcase-phone .phone-screen {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 18px;
        border-radius: 22px;
    }

    .showcase-phone .phone-screen img {
        border-radius: 22px;
    }
}

.showcase-phone .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

/* Responsive: Showcase Section */
@media (max-width: 992px) {
    .showcase-content {
        flex-direction: column;
        gap: 50px;
    }

    .showcase-features {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .showcase-phone-wrapper {
        min-width: auto;
    }

    .showcase-phone {
        width: 260px;
        height: auto;
    }
}

@media (max-width: 640px) {
    .features-showcase-section {
        padding: 60px 16px;
    }

    .showcase-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px;
    }

    .showcase-item-icon {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }

    .showcase-phone {
        width: 220px;
        height: auto;
    }

    .showcase-phone .phone-screen {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 18px;
        border-radius: 22px;
    }

    .showcase-phone .phone-screen img {
        border-radius: 22px;
    }

    .showcase-phone .phone-frame {
        border-radius: 30px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Laptop (1024px), Tablet (768px), Mobile (480px)
   ============================================ */

/* ===== LAPTOP RESPONSIVE (1024px) ===== */
@media (max-width: 1024px) {
    /* Navigation - Show mobile menu button from laptop view */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        padding: 14px 20px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 110px 20px 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 900px;
    }
    
    .btn-showcase-secondary{
        padding: 15px 35px;
    }

    .hero-images-carousel img {
        width: 95%;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .title-line-1 {
        font-size: 3rem !important;
    }
    
    .title-line-2 {
        font-size: 2.2rem !important;
    }
    
    .hero-subtitle {
        text-align: center;
        max-width: 600px;
    }
    
    .hero-images-stack {
        gap: 10px;
        padding: 17px 20px;
    }

    .btn-store {
        gap: 10px;
        padding: 18px 20px;
    }

    .section-container{
        max-width: 900px;
    }

    .gallery-page-container{
        max-width: 900px;
    }
    
    /* Stats Bar */
    .hero-stats-bar-inner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px;
    }
    
    .hero-stat-item {
        min-width: 200px;
    }
    
    .hero-stat-divider {
        display: none;
    }

    .showcase-container{
        max-width: 900px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Showcase Section */
    .showcase-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .showcase-content-left {
        max-width: 100%;
        text-align: center;
    }
    
    .showcase-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .showcase-phone-wrapper {
        min-width: auto;
    }
    
    .showcase-phone {
        width: 280px;
    }
    
    /* How It Works */
    .hiw-steps-row {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    
    .hiw-card {
        max-width: 200px;
        flex: 0 0 200px;
    }
    
    .hiw-dashed-arrow {
        display: none;
    }
    
    /* Generator Section */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Section */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ===== TABLET RESPONSIVE (768px) ===== */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        padding: 100px 20px 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-left {
        align-items: center;
        justify-content: center;
    }
    
    .hero-images-carousel {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-images-carousel img {
        width: 80%;
        max-width: 500px;
    }
    
    .hero-right {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .title-line-1 {
        font-size: 2.2rem !important;
    }
    
    .title-line-2 {
        font-size: 1.7rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .showcase-cta-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-showcase-primary,
    .btn-showcase-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .showcase-app-btns {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-store {
        padding: 16px 24px;
        min-width: 160px;
    }
    
    /* Stats Bar */
    .hero-stats-bar {
        padding: 0 20px;
        margin: 30px auto 20px;
        max-width: 600px;
    }
    
    .hero-stats-bar-inner {
        padding: 24px;
        border-radius: 16px;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .hero-stat-item {
        flex: 1 1 45%;
        min-width: 180px;
        justify-content: center;
    }
    
    .hero-stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .hero-stat-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .hero-stat-value {
        font-size: 1.6rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .hero-stat-sublabel {
        font-size: 0.78rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    /* Showcase Section */
    .features-showcase-section {
        padding: 50px 20px 60px;
    }
    
    .showcase-container {
        max-width: 600px;
    }
    
    .showcase-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .showcase-content-left {
        max-width: 100%;
        text-align: center;
    }
    
    .showcase-badge-pill {
        justify-content: center;
    }
    
    .showcase-heading-line1,
    .showcase-heading-line2 {
        font-size: 1.9rem;
    }
    
    .showcase-desc-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .showcase-desc-app {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .showcase-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .showcase-feature-item {
        padding: 14px;
    }
    
    .showcase-phone-wrapper {
        min-width: auto;
        display: flex;
        justify-content: center;
    }
    
    .showcase-phone {
        width: 240px;
    }
    
    /* How It Works */
    .how-it-works-section {
        padding: 60px 20px 70px;
    }
    
    .section-container {
        max-width: 600px;
    }
    
    .hiw-steps-row {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    
    .hiw-card {
        max-width: 220px;
        flex: 0 0 220px;
    }
    
    .hiw-dashed-arrow {
        display: none;
    }
    
    /* Generator Section */
    .generator-section {
        padding: 30px 20px;
    }
    
    .generator-container {
        padding: 24px;
        border-radius: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .wizard-progress {
        padding: 16px;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .progress-line {
        display: none;
    }
    
    .progress-step span {
        font-size: 0.7rem;
    }
    
    .progress-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    /* Clothing Grid */
    .clothing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .clothing-item {
        padding: 12px 8px;
    }
    
    .clothing-item-icon {
        font-size: 1.4rem;
    }
    
    .clothing-item-name {
        font-size: 0.7rem;
    }
    
    /* Upload Zone */
    .upload-zone {
        padding: 20px;
        min-height: 180px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-container {
        max-width: 600px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .contact-email-card,
    .contact-form-card {
        padding: 28px 24px;
    }
    
    /* Footer */
    footer {
        padding: 30px 20px;
    }
    
    .footer-container {
        padding: 40px 20px 24px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 400px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-group {
        text-align: center;
    }
    
    .footer-links-group ul {
        column-count: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-powered,
    .footer-privacy {
        justify-content: center;
    }
    
    /* Gallery Page */
    .gallery-page-section {
        padding: 100px 20px 40px;
    }
    
    .gallery-page-container {
        max-width: 600px;
    }
    
    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Plans Modal */
    .plans-modal-content {
        padding: 24px;
    }
    
    .plans-row-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== MOBILE RESPONSIVE (480px) ===== */
@media (max-width: 480px) {
    /* === Navigation === */
    .navbar {
        padding: 0;
    }
    
    .nav-container {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    .nav-brand img {
        height: 36px !important;
        width: auto !important;
    }
    
    .brand-text {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-try-now {
        padding: 8px 14px;
        font-size: 0.78rem;
        border-radius: 8px;
    }
    
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    
    .mobile-menu-btn span {
        width: 20px;
        height: 2.5px;
    }
    
    /* === Hero Section === */
    .hero-section {
        padding: 90px 20px 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
    
    .hero-left {
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-images-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-images-carousel img {
        width: 90%;
        max-width: 400px;
        border-radius: 20px;
    }
    
    .hero-right {
        align-items: center;
        text-align: center;
        gap: 14px;
    }
    
    .hero-title {
        text-align: center;
        margin-bottom: 0;
    }
    
    .hero-badge {
        padding: 7px 14px;
        font-size: 0.72rem;
        margin-bottom: 15px;
        border-radius: 50px;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.72rem;
        letter-spacing: 0.3px;
    }
    
    .title-line-1 {
        font-size: 1.65rem !important;
        letter-spacing: 0.5px;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    
    .title-line-2 {
        font-size: 1.3rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.82rem;
        text-align: center;
        line-height: 1.65;
        padding: 0 8px;
        color: rgba(248, 250, 252, 0.65);
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 12px;
        margin-top: 4px;
    }
    
    .hero-feature {
        font-size: 0.72rem;
        gap: 4px;
    }
    
    .hero-feature-icon {
        width: 22px;
        height: 26px;
        border-radius: 6px;
    }
    
    .hero-feature-icon svg {
        width: 12px;
        height: 12px;
    }
    
    /* CTA Buttons */
    .showcase-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 12px 0 16px 0;
        width: 100%;
    }
    
    .btn-showcase-primary,
    .btn-showcase-secondary {
        padding: 13px 24px;
        font-size: 0.88rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        border-radius: 12px;
    }
    
    .btn-showcase-primary .arrow {
        font-size: 1rem;
    }
    
    /* App Download Section */
    .showcase-app-btns {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 5px;
        border-radius: 50px;
        flex-wrap: wrap;
    }
    
    .showcase-desc-app {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 6px;
        line-height: 1.6;
        padding: 0 12px;
        color: rgba(248, 250, 252, 0.7);
    }
    
    .btn-store {
        width: auto;
        max-width: none;
        padding: 12px 16px;
        min-width: 140px;
        gap: 10px;
        border-radius: 10px;
        flex: 0 1 auto;
    }
    
    .btn-store svg,
    .btn-store img {
        width: 24px;
        height: 24px;
    }
    
    .store-name {
        font-size: 14px;
    }
    
    .store-sub {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    
    /* === Stats Bar === */
    .hero-stats-bar {
        padding: 0 16px;
        margin: 24px auto 20px;
        max-width: 100%;
    }
    
    .hero-stats-bar-inner {
        padding: 18px 14px;
        border-radius: 16px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        border: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .hero-stat-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 130px;
        gap: 8px;
        justify-content: center;
        padding: 8px 4px;
    }
    
    .hero-stat-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }
    
    .hero-stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-stat-content {
        line-height: 1.3;
    }
    
    .hero-stat-value {
        font-size: 1.2rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
        margin-top: 1px;
    }
    
    .hero-stat-sublabel {
        font-size: 0.65rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    /* === Features Grid === */
    .features-section {
        padding: 50px 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .feature-card {
        padding: 22px 18px;
        border-radius: 14px;
    }
    
    .feature-icon-bg {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
        border-radius: 12px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.82rem;
        line-height: 1.6;
    }
    
    /* === Showcase Section === */
    .features-showcase-section {
        padding: 45px 25px 55px;
    }
    
    .showcase-container {
        max-width: 100%;
    }
    
    .showcase-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .showcase-content-left {
        max-width: 100%;
        text-align: center;
    }
    
    .showcase-badge-pill {
        padding: 6px 14px;
        font-size: 0.72rem;
        margin-bottom: 14px;
    }
    
    .showcase-badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .showcase-heading {
        margin-bottom: 14px;
    }
    
    .showcase-heading-line1,
    .showcase-heading-line2 {
        font-size: 1.45rem;
        letter-spacing: 0;
    }
    
    .showcase-desc-text {
        font-size: 0.82rem;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.7;
        padding: 0 8px;
    }
    
    .showcase-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .showcase-feature-item {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 12px;
        max-width: fit-content;
        display: flex;
        justify-self: center;
    }
    
    .showcase-feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .showcase-feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .showcase-feature-title {
        font-size: 0.82rem;
    }
    
    .showcase-feature-sub {
        font-size: 0.7rem;
    }
    
    .showcase-phone-wrapper {
        min-width: auto;
        display: flex;
        justify-content: center;
    }
    
    .showcase-phone {
        width: 200px;
    }
    
    .showcase-phone .phone-frame {
        border-radius: 28px;
    }
    
    /* === How It Works === */
    .how-it-works-section {
        padding: 50px 16px 60px;
    }
    
    .section-container {
        max-width: 100%;
        padding: 0;
    }
    
    .section-header {
        margin-bottom: 28px;
    }
    
    .section-badge {
        font-size: 0.68rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.45rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.82rem;
        line-height: 1.6;
    }
    
    .hiw-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .hiw-card {
        max-width: 280px;
        flex: none;
        width: 100%;
    }
    
    .hiw-device-frame {
        border-radius: 14px;
    }
    
    .hiw-num-badge {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .hiw-card-info {
        margin-top: 14px;
        gap: 6px;
    }
    
    .hiw-card-info h4 {
        font-size: 0.92rem;
    }
    
    .hiw-card-info p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .hiw-dashed-arrow {
        display: flex;
        margin-top: 0;
        transform: rotate(90deg);
    }
    
    /* === Generator Section === */
    .generator-section {
        padding: 24px 25px;
    }
    
    .generator-container {
        padding: 18px;
        border-radius: 18px;
    }
    
    .btn-plans {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
    
    /* Wizard Progress */
    .wizard-progress {
        padding: 14px 10px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 14px;
        margin-bottom: 20px;
    }
    
    .progress-line {
        display: none;
    }
    
    .progress-step {
        gap: 4px;
    }
    
    .progress-circle {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
    
    .progress-step span {
        font-size: 0.62rem;
    }
    
    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .step-card {
        border-radius: 14px;
    }
    
    .step-card-header {
        padding: 14px;
        gap: 10px;
    }
    
    .step-badge {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-card-title h3 {
        font-size: 0.92rem;
    }
    
    .step-card-title p {
        font-size: 0.72rem;
    }
    
    .step-card-body {
        padding: 14px;
    }
    
    /* Clothing Grid */
    .clothing-search {
        margin-bottom: 14px;
    }
    
    .clothing-search-input {
        padding: 11px 38px 11px 14px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .clothing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .clothing-item {
        padding: 12px 8px;
        border-radius: 10px;
    }
    
    .clothing-item-icon {
        font-size: 1.25rem;
    }
    
    .clothing-item-name {
        font-size: 0.65rem;
    }
    
    .more-categories-btn {
        padding: 10px;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    /* Upload Zone */
    .upload-zone {
        padding: 20px 16px;
        min-height: 160px;
        border-radius: 12px;
    }
    
    .upload-zone-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }
    
    .upload-main-text {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .upload-divider {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .btn-choose-file {
        padding: 9px 18px;
        font-size: 0.82rem;
        border-radius: 8px;
    }
    
    .upload-note {
        font-size: 0.7rem;
    }
    
    /* Wizard Nav */
    .wizard-nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
    }
    
    .btn-wizard-next,
    .btn-wizard-prev {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    
    /* Generate Section */
    .generate-info-section {
        padding: 18px;
        gap: 16px;
    }
    
    .generate-icon-circle {
        width: 64px;
        height: 64px;
    }
    
    .generate-icon-circle svg {
        width: 32px;
        height: 32px;
    }
    
    .generate-steps-list {
        width: 100%;
    }
    
    .generate-steps-list li {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }
    
    .step-bullet {
        width: 6px;
        height: 6px;
    }
    
    .btn-generate-main {
        padding: 14px;
        font-size: 0.92rem;
        border-radius: 10px;
    }
    
    .generate-time-note {
        font-size: 0.72rem;
    }
    
    /* === FAQ Section === */
    .faq-section {
        padding: 50px 25px;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 16px 16px;
    }
    
    .faq-question h3 {
        font-size: 0.88rem;
        line-height: 1.4;
    }
    
    .faq-toggle-icon {
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.82rem;
        line-height: 1.65;
    }
    
    /* === Contact Section === */
    .contact-section {
        padding: 50px 25px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    
    .contact-email-card,
    .contact-form-card {
        padding: 24px 18px;
        border-radius: 14px;
    }
    
    .contact-email-card h3,
    .contact-form-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contact-email-card > p {
        font-size: 0.78rem;
        margin-bottom: 14px;
    }
    
    .contact-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }
    
    .contact-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-email-link {
        padding: 10px 16px;
        font-size: 0.82rem;
        border-radius: 50px;
    }
    
    .contact-form .form-group {
        margin-bottom: 14px;
    }
    
    .contact-form label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    
    .contact-form textarea {
        min-height: 100px;
    }
    
    .btn-contact-submit {
        padding: 13px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    /* === Footer === */
    footer {
        padding: 24px 16px 16px;
    }
    
    .footer-container {
        padding: 32px 16px 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 24px;
        text-align: center;
        padding-bottom: 24px;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        height: 50px !important;
        margin-bottom: 12px;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
        max-width: 280px;
        margin: 0 auto 16px auto;
        line-height: 1.6;
    }
    
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .footer-links-group {
        text-align: center;
    }
    
    .footer-links-group ul {
        column-count: 1;
    }
    
    .footer-links-group h4 {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .footer-links-group li {
        margin-bottom: 8px;
    }
    
    .footer-links-group a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-powered,
    .footer-privacy {
        font-size: 0.72rem;
        justify-content: center;
        gap: 6px;
    }
    
    .footer-powered svg,
    .footer-privacy svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-copyright p {
        font-size: 0.72rem;
    }
    
    .footer-innovated {
        margin-top: 8px;
    }
    
    .footer-innovated p {
        font-size: 0.7rem;
    }
    
    /* === Gallery Page === */
    .gallery-page-section {
        padding: 85px 25px 40px;
    }
    
    .gallery-page-container {
        max-width: 100%;
    }
    
    .gallery-page-header {
        margin-bottom: 28px;
    }
    
    .gallery-page-header h1 {
        font-size: 1.55rem;
        margin-bottom: 6px;
    }
    
    .gallery-page-header p {
        font-size: 0.82rem;
    }
    
    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-page-card {
        border-radius: 14px;
    }
    
    .gallery-page-card-comparison {
        padding: 14px;
        gap: 10px;
    }
    
    .gallery-page-card-before img,
    .gallery-page-card-after img {
        height: 110px;
        border-radius: 8px;
    }
    
    .gallery-page-card-label {
        font-size: 0.7rem;
    }
    
    .gallery-page-card-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-page-card-info {
        padding: 12px 14px;
    }
    
    .gallery-page-card-info h4 {
        font-size: 0.88rem;
    }
    
    .gallery-page-card-info p {
        font-size: 0.72rem;
    }
    
    .gallery-page-empty {
        padding: 50px 20px;
    }
    
    .gallery-page-empty svg {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .gallery-page-empty h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .gallery-page-empty p {
        font-size: 0.82rem;
        margin-bottom: 20px;
    }
    
    .btn-generate-first {
        padding: 12px 24px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    
    /* === Auth Modals === */
    .auth-modal-content {
        padding: 24px 18px;
        max-width: calc(100% - 24px);
        margin: 0 12px;
        border-radius: 16px;
    }
    
    .auth-modal-header {
        margin-bottom: 20px;
    }
    
    .auth-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .auth-close {
        font-size: 1.4rem;
        padding: 6px;
    }
    
    .auth-input-group {
        margin-bottom: 14px;
    }
    
    .auth-input-group label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .auth-input-group input {
        padding: 12px 14px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    
    .phone-input-wrapper .country-code {
        padding: 12px 10px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    
    .btn-auth-submit {
        padding: 13px;
        font-size: 0.9rem;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .otp-section {
        margin-top: 14px;
        padding-top: 14px;
    }
    
    /* Profile Modal */
    .profile-avatar {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
    }
    
    .profile-info h3 {
        font-size: 1.1rem;
    }
    
    .profile-info p {
        font-size: 0.82rem;
    }
    
    .profile-stats {
        gap: 24px;
        padding: 14px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.72rem;
    }
    
    .btn-logout {
        padding: 12px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    
    /* === Plans Modal === */
    .plans-modal-content {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .plans-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .plans-modal-subtitle {
        font-size: 0.8rem;
    }
    
    .plans-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .plan-tab {
        padding: 10px 14px;
        font-size: 0.78rem;
        border-radius: 10px;
    }
    
    .plan-tab svg {
        width: 14px;
        height: 14px;
    }
    
    .plans-intro-text {
        font-size: 0.8rem;
    }
    
    .plans-row-3 {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .plan-card-sub {
        padding: 18px 16px;
        border-radius: 14px;
    }
    
    .plan-card-header {
        font-size: 1rem;
    }
    
    .plan-card-generations {
        font-size: 0.82rem;
    }
    
    .plan-card-price {
        font-size: 1.6rem;
        margin: 8px 0;
    }
    
    .plan-rupee {
        font-size: 1.2rem;
    }
    
    .plan-card-per {
        font-size: 0.72rem;
        margin-bottom: 14px;
    }
    
    .plan-card-btn {
        padding: 11px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .plans-modal-footer {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .plans-modal-footer p {
        font-size: 0.72rem;
    }
    
    /* === Toast === */
    .toast {
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 14px 18px;
        font-size: 0.85rem;
        border-radius: 12px;
        top: 80px;
    }
    
    /* === Mobile Menu Panel === */
    .mobile-menu-panel {
        width: 280px;
        max-width: 85vw;
        padding: 70px 20px 20px;
    }
    
    .mobile-menu-panel .mobile-nav-links {
        gap: 6px;
    }
    
    .mobile-menu-panel .mobile-nav-link {
        padding: 13px 16px;
        font-size: 0.92rem;
        border-radius: 10px;
    }
    
    .mobile-menu-panel .mobile-menu-actions {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .mobile-menu-panel .mobile-menu-actions .btn-try-now {
        padding: 13px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    /* === Processing Section === */
    .processing-content {
        padding: 20px;
    }
    
    .processing-spinner {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .processing-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .processing-subtext {
        font-size: 0.82rem;
    }
    
    /* === Status Section === */
    .status-section {
        padding: 16px;
    }
    
    .status-container {
        padding: 10px 20px;
        font-size: 0.82rem;
    }
    
    /* === Results Section === */
    .results-section {
        padding: 40px 16px;
    }
    
    .results-header h2 {
        font-size: 1.4rem;
    }
    
    .result-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-result-action {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
}

/* ===== EXTRA SMALL MOBILE (360px) ===== */
@media (max-width: 360px) {
    .hero-section {
        padding: 75px 10px 25px;
    }
    
    .title-line-1 {
        font-size: 1.5rem !important;
    }
    
    .title-line-2 {
        font-size: 1.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.82rem;
    }
    
    .hero-images-stack {
        max-width: 180px;
        height: 260px;
    }
    
    .hero-stats-bar-inner {
        padding: 12px;
    }
    
    .hero-stat-value {
        font-size: 1.1rem;
    }
    
    .btn-showcase-primary,
    .btn-showcase-secondary {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
    
    .feature-card {
        padding: 16px 12px;
    }
    
    .showcase-heading-line1,
    .showcase-heading-line2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}
