/* ========================================
   StyleMate - Premium AI Fashion Styles
   ======================================== */

:root {
    /* Brand Colors - Soft Rose Pink */
    --primary: #e4b3b3;
    --primary-light: #f5dede;
    --primary-dark: #d49a9a;
    --primary-rgb: 228, 179, 179;

    /* Secondary - Warm Rose Accent */
    --secondary: #b08989;
    --secondary-light: #c9a3a3;
    --secondary-dark: #8f6f6f;

    /* Neutrals */
    --dark: #0D0D14;
    --dark-light: #161622;
    --dark-medium: #1E1E2E;
    --surface: #252535;

    /* Text */
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e4b3b3 0%, #f0c9c9 50%, #f5dede 100%);
    --gradient-secondary: linear-gradient(135deg, #b08989 0%, #c9a3a3 100%);
    --gradient-hero: linear-gradient(135deg, #d49a9a 0%, #e4b3b3 25%, #f0c9c9 50%, #f5dede 100%);
    --gradient-glow: linear-gradient(135deg, rgba(228, 179, 179, 0.4) 0%, rgba(176, 137, 137, 0.4) 100%);

    /* Glass */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-light: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-light: rgba(255, 255, 255, 0.12);

    /* Effects */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(228, 179, 179, 0.25);
    --shadow-glow-strong: 0 0 100px rgba(228, 179, 179, 0.4);

    /* Spacing */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.3s var(--ease);
    --transition-slow: all 0.5s var(--ease);
}

/* ========================================
   Reset & Base
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   Animated Background
   ======================================== */

.animated-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: var(--primary);
    top: -300px;
    right: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    bottom: -200px;
    left: -200px;
    animation-delay: -8s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: 40%;
    left: 30%;
    opacity: 0.2;
    animation-delay: -15s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.05); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(30px, 50px) scale(1.02); }
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
    box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.5);
}

.btn-glass {
    background: var(--glass-light);
    color: var(--text);
    border: 1px solid var(--glass-border-light);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-glow {
    background: var(--gradient-primary);
    color: var(--text);
    animation: buttonGlow 2.5s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4); }
    50% { box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.7); }
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.glass-nav {
    background: rgba(13, 13, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text .brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-logo-text .brand-tagline {
    font-size: 0.7rem;
    color: var(--primary-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.hero-badge i {
    color: var(--primary-light);
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    line-height: 1.1;
}

.title-line {
    display: block;
    color: var(--text);
}

.title-gradient {
    display: block;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.15em;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-legal {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-legal {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Hero Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: -10px;
    border: 2px solid var(--dark);
}

.trust-avatars .avatar:first-child {
    margin-left: 0;
}

.trust-avatars .avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.65rem;
    margin-left: -10px;
    border: 2px solid var(--dark);
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FBBF24;
    font-size: 0.85rem;
}

.trust-rating span {
    color: var(--text);
    font-weight: 700;
    margin-left: 6px;
}

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

/* Hero Visual - Premium Phone Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 40px;
}

/* Glowing Background Effects */
.visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -50px;
    right: -100px;
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation: glowPulse 4s ease-in-out infinite 2s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Phone Showcase Container */
.phone-showcase {
    position: relative;
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s var(--ease);
}

.phone-showcase:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-10px);
}

/* Premium Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        var(--shadow-glow-strong);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #0d0d14;
    border-radius: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch::before {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(145deg, #333, #1a1a1a);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    border-radius: 38px 38px 0 0;
    pointer-events: none;
}

/* App Interface */
.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 16px 20px;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-bar .time {
    color: var(--text);
}

.status-icons {
    display: flex;
    gap: 6px;
    color: var(--text);
    font-size: 0.7rem;
}

/* App Navigation */
.app-nav {
    display: flex;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.app-logo {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    object-fit: cover;
}

.app-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-left: 10px;
}

.app-icons {
    display: flex;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* AI Analysis Card */
.analysis-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 16px;
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ai-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.2rem;
    color: white;
}

.avatar-ring {
    position: absolute;
    inset: -3px;
    border: 2px solid var(--primary);
    border-radius: 17px;
    opacity: 0.5;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.analysis-title {
    display: flex;
    flex-direction: column;
}

.analysis-title .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.analysis-title .status {
    font-size: 0.7rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
}

.analysis-title .status i {
    font-size: 0.5rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* Scan Visual */
.scan-visual {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.scan-avatar {
    width: 80px;
    height: 100px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.scan-avatar > i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.8;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanMove 2s linear infinite;
}

@keyframes scanMove {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

.scan-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.data-point {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    animation: fadeSlideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-10px);
}

.data-point i {
    color: var(--primary);
    font-size: 0.85rem;
}

.dp-1 { animation-delay: 0.3s; }
.dp-2 { animation-delay: 0.5s; }
.dp-3 { animation-delay: 0.7s; }

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

/* Match Score */
.match-score {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(var(--primary-rgb), 0.15);
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.score-circle {
    width: 50px;
    height: 50px;
    position: relative;
}

.score-circle svg {
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 8;
}

.score-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 6;
    animation: scoreGrow 1.5s ease-out forwards;
}

@keyframes scoreGrow {
    from { stroke-dashoffset: 283; }
    to { stroke-dashoffset: 6; }
}

.score-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.score-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* Outfit Preview */
.outfit-preview {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 14px;
    margin-top: auto;
}

.outfit-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.outfit-title i {
    color: var(--primary);
}

.outfit-items {
    display: flex;
    gap: 10px;
}

.outfit-item {
    flex: 1;
    text-align: center;
}

.item-color {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.outfit-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Floating Feature Cards */
.feature-float {
    position: absolute;
    background: rgba(20, 20, 35, 0.9);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: floatCard 5s ease-in-out infinite;
    z-index: 10;
}

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

.ff-content {
    display: flex;
    flex-direction: column;
}

.ff-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.ff-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.ff-1 { top: 20px; left: -140px; animation-delay: 0s; }
.ff-2 { top: 150px; right: -150px; animation-delay: -1.2s; }
.ff-3 { bottom: 200px; left: -120px; animation-delay: -2.4s; }
.ff-4 { bottom: 60px; right: -130px; animation-delay: -3.6s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Decorative Elements */
.deco-circle {
    position: absolute;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.dc-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    animation: rotateSlow 30s linear infinite;
}

.dc-2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -100px;
    animation: rotateSlow 25s linear infinite reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.deco-sparkle {
    position: absolute;
    color: var(--primary);
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.sp-1 { top: 80px; right: 60px; animation-delay: 0s; }
.sp-2 { bottom: 120px; left: 40px; animation-delay: 0.6s; }
.sp-3 { top: 250px; left: -20px; animation-delay: 1.2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.scroll-down .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    position: relative;
}

.scroll-down .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scrollMouse 2s ease-in-out infinite;
}

@keyframes scrollMouse {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* ========================================
   Brands Strip
   ======================================== */

.brands-strip {
    padding: 50px 24px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.brands-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.brand-item i {
    color: var(--primary-light);
    font-size: 1.3rem;
}

.brand-divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

/* ========================================
   Section Intro
   ======================================== */

.section-intro {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

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

/* ========================================
   AI Section
   ======================================== */

.ai-section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-visual-side {
    display: flex;
    justify-content: center;
}

.ai-brain-visual {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-center {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text);
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow-glow-strong);
}

.brain-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: brainPulse 2s ease-out infinite;
}

.brain-pulse:nth-child(2) { animation-delay: 0.5s; }
.brain-pulse:nth-child(3) { animation-delay: 1s; }

@keyframes brainPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.brain-orbit {
    position: absolute;
    border: 1px dashed rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

.orbit-1 { width: 180px; height: 180px; }
.orbit-2 { width: 240px; height: 240px; animation-direction: reverse; animation-duration: 25s; }
.orbit-3 { width: 300px; height: 300px; animation-duration: 30s; }

.orbit-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.data-node {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border-light);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    animation: nodeFloat 3s ease-in-out infinite;
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { right: 0; top: 50%; transform: translateY(-50%); animation-delay: -0.75s; }
.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: -1.5s; }
.node-4 { left: 0; top: 50%; transform: translateY(-50%); animation-delay: -2.25s; }

@keyframes nodeFloat {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.ai-cards-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.ai-card:hover {
    background: var(--glass-light);
    transform: translateX(8px);
    border-color: var(--glass-border-light);
}

.ai-card-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ai-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.ai-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Features Section
   ======================================== */

.features-section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: var(--glass-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--glass-border-light);
}

.feature-card.feature-hero {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.15) 0%, rgba(74, 101, 114, 0.15) 100%);
    border-color: rgba(var(--primary-rgb), 0.25);
    display: flex;
    flex-direction: column;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--text);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-3d {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: var(--shadow-glow);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    gap: 24px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.feature-stats .stat {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-stats .stat strong {
    color: var(--primary-light);
    display: block;
    font-size: 1.1rem;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: var(--glass-border);
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 28px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-card:hover {
    background: var(--glass-light);
    transform: translateY(-8px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    background: var(--glass-light);
    transform: translateY(-8px);
}

.testimonial-card.featured {
    background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.12) 0%, rgba(74, 101, 114, 0.12) 100%);
    border-color: rgba(var(--primary-rgb), 0.25);
    transform: scale(1.02);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #FBBF24;
    margin-bottom: 20px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    margin-bottom: 4px;
}

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

/* ========================================
   Download Section
   ======================================== */

.download-section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

.download-wrapper {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.download-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.download-bg-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.shape-2 { width: 200px; height: 200px; bottom: -50px; left: 20%; }
.shape-3 { width: 150px; height: 150px; top: 30%; left: -30px; }

.download-content {
    position: relative;
    z-index: 2;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.download-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
    margin-bottom: 20px;
}

.download-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.store-btn i {
    font-size: 2rem;
}

.store-btn span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-btn strong {
    font-size: 1.1rem;
}

.download-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.df-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.download-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.download-phone {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.download-logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.contact-card .contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-card strong {
    display: block;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.social-btn {
    width: 48px;
    height: 48px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.footer-logo .brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
}

.footer-logo .brand-tagline {
    font-size: 0.7rem;
    color: var(--primary-light);
}

.footer-brand > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--primary);
}

.admin-link {
    color: rgba(255, 255, 255, 0.02);
    font-size: 6px;
}

/* ========================================
   Animations
   ======================================== */

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

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

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 40px; }
    .float-element { display: none; }

    /* Hero Visual Responsive - Tablet */
    .feature-float { display: none; }
    .deco-circle { display: none; }
    .deco-sparkle { display: none; }
    .phone-showcase { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
    .phone-showcase:hover { transform: translateY(-10px); }
    .visual-glow { opacity: 0.4; }
    .glow-1 { width: 300px; height: 300px; }
    .glow-2 { width: 220px; height: 220px; }

    .ai-grid { grid-template-columns: 1fr; gap: 60px; }
    .features-showcase { grid-template-columns: repeat(2, 1fr); }
    .feature-card.feature-hero { grid-column: span 2; grid-row: span 1; }
    .steps-timeline { grid-template-columns: 1fr; }
    .timeline-line { display: none; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .testimonial-card.featured { transform: none; }
    .download-wrapper { grid-template-columns: 1fr; text-align: center; padding: 60px 40px; }
    .download-buttons { justify-content: center; }
    .download-features { justify-content: center; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-logo-text .brand-tagline { display: none; }

    .hero { padding: 100px 20px 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

    .hero-visual { width: 100%; }
    .visual-wrapper { padding: 20px; }

    /* Phone Mockup Responsive - Mobile */
    .phone-mockup {
        width: 280px;
        height: 580px;
        border-radius: 44px;
        padding: 10px;
    }
    .phone-notch { width: 110px; height: 30px; top: 14px; }
    .phone-screen { border-radius: 34px; }
    .app-interface { padding: 46px 14px 18px; }
    .status-bar { font-size: 0.7rem; }
    .app-nav { padding: 10px 0; margin-bottom: 14px; }
    .app-logo { width: 28px; height: 28px; }
    .app-title { font-size: 1rem; }
    .app-icons { font-size: 0.9rem; gap: 12px; }

    .analysis-card { padding: 14px; margin-bottom: 14px; border-radius: 16px; }
    .analysis-header { margin-bottom: 14px; gap: 10px; }
    .ai-avatar { width: 40px; height: 40px; font-size: 1rem; border-radius: 12px; }
    .avatar-ring { border-radius: 14px; }
    .analysis-title .label { font-size: 0.85rem; }
    .analysis-title .status { font-size: 0.65rem; }

    .scan-visual { gap: 12px; margin-bottom: 14px; }
    .scan-avatar { width: 70px; height: 90px; border-radius: 10px; }
    .scan-avatar > i { font-size: 2rem; }
    .data-point { padding: 8px 10px; font-size: 0.7rem; border-radius: 8px; }
    .data-point i { font-size: 0.75rem; }

    .match-score { padding: 10px 14px; border-radius: 12px; gap: 12px; }
    .score-circle { width: 44px; height: 44px; }
    .score-value { font-size: 0.75rem; }
    .score-label { font-size: 0.8rem; }

    .outfit-preview { padding: 12px; border-radius: 14px; }
    .outfit-title { font-size: 0.75rem; margin-bottom: 10px; }
    .outfit-items { gap: 8px; }
    .item-color { height: 44px; border-radius: 8px; }
    .outfit-item span { font-size: 0.65rem; }

    .brands-content { flex-direction: column; gap: 20px; }
    .brand-divider { display: none; }

    /* AI Section Responsive */
    .ai-section { padding: 80px 20px; }
    .ai-brain-visual { width: 280px; height: 280px; }
    .brain-center { width: 80px; height: 80px; font-size: 2rem; }
    .orbit-1 { width: 150px; height: 150px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 260px; height: 260px; }
    .data-node { width: 40px; height: 40px; font-size: 0.9rem; }
    .ai-card { padding: 20px; gap: 16px; }
    .ai-card-icon { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 12px; }
    .ai-card-content h3 { font-size: 1rem; }
    .ai-card-content p { font-size: 0.9rem; }

    .features-showcase { grid-template-columns: 1fr; }
    .feature-card.feature-hero { grid-column: span 1; }

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

    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .footer-brand > p { max-width: 100%; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }

    .hero { padding: 90px 16px 50px; }
    .hero-title { font-size: 1.9rem; }
    .hero-tagline { font-size: 1.05rem; }
    .hero-description { font-size: 1rem; }
    .hero-legal { font-size: 0.8rem; line-height: 1.5; margin-bottom: 16px; }

    .visual-wrapper { padding: 12px; }
    .phone-showcase {
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .phone-mockup {
        width: min(240px, 72vw);
        height: auto;
        aspect-ratio: 300 / 620;
        border-radius: 36px;
        padding: 8px;
    }
    .phone-notch { width: 90px; height: 24px; top: 12px; border-radius: 16px; }
    .phone-notch::before { width: 8px; height: 8px; }
    .phone-screen { border-radius: 30px; }
    .phone-reflection { border-radius: 30px 30px 0 0; }
    .app-interface { padding: 38px 10px 14px; }

    .status-bar { font-size: 0.65rem; padding: 0 2px 10px; }
    .status-icons { gap: 4px; font-size: 0.6rem; }

    .app-nav { padding: 8px 0; margin-bottom: 12px; }
    .app-logo { width: 24px; height: 24px; border-radius: 8px; }
    .app-title { font-size: 0.9rem; margin-left: 8px; }
    .app-icons { font-size: 0.85rem; gap: 10px; }

    .analysis-card { padding: 12px; margin-bottom: 12px; border-radius: 14px; }
    .analysis-header { margin-bottom: 12px; gap: 8px; }
    .ai-avatar { width: 36px; height: 36px; font-size: 0.9rem; border-radius: 10px; }
    .avatar-ring { inset: -2px; border-radius: 12px; }
    .analysis-title .label { font-size: 0.78rem; }
    .analysis-title .status { font-size: 0.6rem; }

    .scan-visual { gap: 10px; margin-bottom: 12px; }
    .scan-avatar { width: 60px; height: 78px; border-radius: 8px; }
    .scan-avatar > i { font-size: 1.6rem; }
    .scan-line { height: 2px; }
    .data-point { padding: 6px 8px; font-size: 0.62rem; border-radius: 6px; gap: 6px; }
    .data-point i { font-size: 0.68rem; }

    .match-score { padding: 8px 12px; border-radius: 10px; gap: 10px; }
    .score-circle { width: 38px; height: 38px; }
    .score-bg, .score-fill { stroke-width: 6; }
    .score-value { font-size: 0.68rem; }
    .score-label { font-size: 0.72rem; }

    .outfit-preview { padding: 10px; border-radius: 12px; }
    .outfit-title { font-size: 0.68rem; margin-bottom: 8px; gap: 6px; }
    .outfit-items { gap: 6px; }
    .item-color { height: 38px; border-radius: 6px; margin-bottom: 4px; }
    .outfit-item span { font-size: 0.58rem; }

    .visual-glow { filter: blur(50px); opacity: 0.35; }
    .glow-1 { width: 200px; height: 200px; top: -30px; right: -50px; }
    .glow-2 { width: 160px; height: 160px; bottom: -30px; left: -30px; }

    .scroll-down { bottom: 30px; }
    .scroll-down .mouse { width: 20px; height: 32px; border-radius: 12px; }
    .scroll-down span { font-size: 0.7rem; }

    .features-section,
    .how-section,
    .testimonials-section,
    .download-section,
    .contact-section {
        padding: 80px 16px;
    }

    .section-intro { margin-bottom: 50px; }
    .section-label { padding: 8px 16px; font-size: 0.8rem; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; }

    /* AI Section - Small Mobile */
    .ai-section { padding: 70px 16px; }
    .ai-grid { gap: 40px; }
    .ai-brain-visual { width: 240px; height: 240px; }
    .brain-center { width: 70px; height: 70px; font-size: 1.7rem; }
    .orbit-1 { width: 130px; height: 130px; }
    .orbit-2 { width: 170px; height: 170px; }
    .orbit-3 { width: 220px; height: 220px; }
    .data-node { width: 36px; height: 36px; font-size: 0.85rem; }
    .ai-cards-side { gap: 12px; }
    .ai-card { padding: 18px; gap: 14px; flex-direction: column; text-align: center; }
    .ai-card-icon { width: 52px; height: 52px; font-size: 1.2rem; margin: 0 auto; }
    .ai-card-content h3 { font-size: 1.05rem; }
    .ai-card-content p { font-size: 0.88rem; }

    .feature-card { padding: 24px; }
    .feature-icon { width: 52px; height: 52px; font-size: 1.3rem; border-radius: 14px; }
    .feature-card h3 { font-size: 1.1rem; }
    .feature-card p { font-size: 0.9rem; }
    .feature-icon-3d { width: 100px; height: 100px; font-size: 2.5rem; border-radius: 28px; }
    .feature-stats { gap: 16px; }

    .step-card { padding: 28px 20px; }
    .step-number { font-size: 3rem; top: -12px; }
    .step-icon { width: 68px; height: 68px; font-size: 1.6rem; }
    .step-card h3 { font-size: 1.1rem; }
    .step-card p { font-size: 0.9rem; }

    .testimonial-card { padding: 24px; }
    .testimonial-text { font-size: 0.95rem; }

    .download-wrapper { padding: 40px 20px; gap: 32px; }
    .download-content h2 { font-size: 1.8rem; }
    .download-tagline { font-size: 1.05rem; }
    .download-content > p { font-size: 0.95rem; }
    .download-buttons { flex-direction: column; align-items: stretch; }
    .store-btn { justify-content: center; padding: 12px 20px; }
    .store-btn i { font-size: 1.6rem; }
    .store-btn span { font-size: 0.65rem; }
    .store-btn strong { font-size: 1rem; }
    .download-features { flex-direction: column; align-items: center; gap: 12px; }
    .df-item { font-size: 0.85rem; }
    .download-phone { width: 140px; height: 140px; border-radius: 32px; }
    .download-logo { width: 100px; height: 100px; border-radius: 24px; }

    .contact-wrapper { gap: 36px; }
    .contact-info h2 { font-size: 1.8rem; }
    .contact-info > p { font-size: 1rem; }
    .contact-card { padding: 16px; }
    .contact-card .contact-icon { width: 42px; height: 42px; font-size: 1rem; border-radius: 10px; }
    .contact-card strong { font-size: 0.95rem; }
    .contact-card p { font-size: 0.85rem; }
    .social-btn { width: 42px; height: 42px; font-size: 1rem; border-radius: 10px; }
    .contact-form { padding: 24px; }
    .form-group input, .form-group textarea { padding: 14px 16px; font-size: 0.95rem; }

    .footer { padding: 60px 16px 32px; }
    .footer-main { gap: 40px; margin-bottom: 40px; }
    .footer-logo img { width: 42px; height: 42px; border-radius: 12px; }
    .footer-logo .brand-name { font-size: 1.2rem; }
    .footer-brand > p { font-size: 0.9rem; }
    .footer-links h4 { font-size: 0.95rem; margin-bottom: 16px; }
    .footer-links a { font-size: 0.9rem; }
    .footer-bottom { padding-top: 32px; font-size: 0.8rem; }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero { padding: 85px 12px 45px; }
    .hero-title { font-size: 1.7rem; }
    .hero-tagline { font-size: 0.95rem; }
    .hero-description { font-size: 0.9rem; }
    .hero-badge { padding: 8px 14px; font-size: 0.75rem; }

    .phone-mockup {
        width: min(220px, 70vw);
        border-radius: 32px;
        padding: 6px;
    }
    .phone-notch { width: 80px; height: 22px; top: 10px; }
    .phone-screen { border-radius: 26px; }
    .app-interface { padding: 34px 8px 12px; }

    .analysis-card { padding: 10px; }
    .ai-avatar { width: 32px; height: 32px; font-size: 0.8rem; }
    .analysis-title .label { font-size: 0.72rem; }

    .scan-avatar { width: 52px; height: 68px; }
    .scan-avatar > i { font-size: 1.4rem; }
    .data-point { padding: 5px 6px; font-size: 0.58rem; }

    .match-score { padding: 6px 10px; }
    .score-circle { width: 34px; height: 34px; }
    .score-value { font-size: 0.6rem; }
    .score-label { font-size: 0.65rem; }

    .outfit-preview { padding: 8px; }
    .item-color { height: 32px; }
    .outfit-item span { font-size: 0.52rem; }

    .trust-avatars .avatar { width: 34px; height: 34px; font-size: 0.75rem; }
    .trust-rating { font-size: 0.75rem; }
    .trust-info p { font-size: 0.75rem; }

    .btn-xl { padding: 14px 28px; font-size: 0.95rem; }
}

/* ========================================
   Admin Styles (Keep Existing)
   ======================================== */

.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    padding: 20px;
}

.admin-login-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.admin-login-container .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.admin-login-container .logo-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.admin-login-container h2 {
    margin-bottom: 30px;
    color: var(--text);
}

.admin-login-container .form-group {
    text-align: left;
    margin-bottom: 16px;
}

.admin-login-container .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.admin-login-container .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
    padding: 12px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Admin Dashboard */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--dark);
}

.admin-sidebar {
    width: 260px;
    background: var(--dark-light);
    border-right: 1px solid var(--glass-border);
    padding: 20px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.admin-sidebar .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.admin-nav {
    list-style: none;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: var(--text-secondary);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: var(--glass);
    color: var(--text);
    border-left-color: var(--primary);
}

.admin-nav li a i {
    width: 20px;
}

.admin-legal {
    padding: 20px 20px 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
}

.admin-header {
    background: var(--dark-light);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.5rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-user span {
    font-weight: 500;
    color: var(--text-secondary);
}

.admin-user .logout-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.admin-content {
    padding: 30px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card .stat-icon.users { background: var(--primary); }
.stat-card .stat-icon.active { background: #10B981; }
.stat-card .stat-icon.feedback { background: #F472B6; }
.stat-card .stat-icon.premium { background: #FBBF24; }

.stat-card .stat-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

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

/* Data Tables */
.data-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.data-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-card-header h2 {
    font-size: 1.2rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.9rem;
    width: 200px;
    color: var(--text);
}

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

.search-box i {
    color: var(--text-muted);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.data-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.data-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.data-table .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.data-table .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.data-table .user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.active { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.status-badge.blocked { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.status-badge.new { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.status-badge.reviewed { background: rgba(251, 191, 36, 0.15); color: #FBBF24; }
.status-badge.resolved { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.status-badge.bug { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.status-badge.feature { background: rgba(var(--primary-rgb), 0.15); color: var(--primary-light); }
.status-badge.improvement { background: rgba(6, 182, 212, 0.15); color: #06B6D4; }
.status-badge.general { background: var(--glass); color: var(--text-secondary); }

.action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    margin-right: 6px;
}

.action-btn.view { background: var(--glass-light); color: var(--primary-light); }
.action-btn.view:hover { background: var(--primary); color: var(--text); }
.action-btn.block { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.action-btn.block:hover { background: #EF4444; color: var(--text); }
.action-btn.unblock { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.action-btn.unblock:hover { background: #10B981; color: var(--text); }

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--dark-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: var(--transition);
}

.modal-overlay.show .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.2rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.modal-body {
    padding: 25px;
}

.modal-body .info-row {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
}

.modal-body .info-row:last-child {
    border-bottom: none;
}

.modal-body .info-label {
    width: 140px;
    font-weight: 500;
    color: var(--text-muted);
}

.modal-body .info-value {
    flex: 1;
}

.modal-body .info-value select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.feedback-message {
    background: var(--glass);
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 12px;
    font-style: italic;
    color: var(--text-secondary);
}

/* Tabs */
.tab-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    padding: 0 20px;
    border-bottom: 1px solid var(--glass-border);
}

.tab-btn {
    padding: 14px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    border-radius: 10px 10px 0 0;
    position: relative;
}

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

.tab-btn.active {
    color: var(--primary-light);
    background: rgba(var(--primary-rgb), 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    display: none;
}

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

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px;
}

.pagination button {
    padding: 10px 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--text);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.pagination button:hover,
.pagination button.active {
    background: var(--primary);
    border-color: var(--primary);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loading */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.loading-spinner::after {
    content: '';
    width: 44px;
    height: 44px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

/* Admin Responsive */
@media (max-width: 992px) {
    .admin-sidebar { width: 220px; }
    .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .data-table { font-size: 0.85rem; }
    .data-table th, .data-table td { padding: 12px; }
}

/* ========================================
   Page Styles (About, FAQ, Privacy, Terms)
   ======================================== */

.page-body {
    background: var(--dark);
}

.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    width: 100%;
}

/* Page Header */
.page-header {
    padding: 160px 24px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border-light);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 24px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.trademark-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
}

.company-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Content Sections */
.content-section {
    padding: 0 24px 60px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

/* Hero Card (About Page) */
.hero-card {
    text-align: center;
    padding: 60px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-card .hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.hero-card h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.hero-card .tagline {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.hero-card .version {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Content Cards */
.content-card {
    padding: 40px;
    margin-bottom: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.card-header h2 {
    font-size: 1.4rem;
}

.content-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-item {
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: var(--glass-light);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tech List */
.tech-list {
    margin-top: 20px;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.tech-item i {
    color: #10B981;
    font-size: 1.2rem;
    margin-top: 2px;
}

.tech-item strong {
    color: var(--text);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.value-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    background: var(--glass-light);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(var(--primary-rgb), 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Connect Card */
.connect-card {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.connect-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.connect-card > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-buttons .social-btn {
    width: 60px;
    height: 60px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-buttons .social-btn.instagram:hover { background: #E4405F; }
.social-buttons .social-btn.twitter:hover { background: #1DA1F2; }
.social-buttons .social-btn.facebook:hover { background: #4267B2; }
.social-buttons .social-btn.linkedin:hover { background: #0077B5; }

.made-with-love {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.made-with-love i {
    color: var(--primary);
}

/* ========================================
   FAQ Styles
   ======================================== */

.faq-category {
    margin-bottom: 48px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.category-title i {
    color: var(--primary-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--glass-border-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-question i {
    color: var(--primary-light);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    border-top: 1px solid var(--glass-border);
    margin-top: -1px;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Help Box */
.help-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(74, 101, 114, 0.1) 100%);
    border-color: rgba(var(--primary-rgb), 0.25);
}

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

.help-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.help-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ========================================
   Legal Pages (Privacy, Terms)
   ======================================== */

.legal-content {
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 24px;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 500;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-section h3 {
    font-size: 1.1rem;
    margin: 20px 0 12px;
    color: var(--text);
}

.legal-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    margin-bottom: 16px;
}

.legal-section ul li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.legal-section a {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary);
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 24px 0;
}

.warning-box i {
    color: #EF4444;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.warning-box p {
    color: var(--text);
    margin: 0;
}

/* Disclaimer Box */
.disclaimer-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 16px 0;
}

.disclaimer-box p {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.disclaimer-box ul {
    margin: 0;
}

/* Privacy Highlight */
.privacy-highlight {
    display: flex;
    gap: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 40px;
}

.privacy-highlight i {
    font-size: 2.5rem;
    color: #10B981;
}

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

.privacy-highlight p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Terms Acceptance */
.terms-acceptance {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 40px;
}

.terms-acceptance i {
    font-size: 2rem;
    color: var(--primary-light);
}

.terms-acceptance p {
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Page Responsive
   ======================================== */

@media (max-width: 768px) {
    .page-header {
        padding: 140px 20px 60px;
    }

    .content-card {
        padding: 28px;
    }

    .legal-content {
        padding: 30px;
    }

    .help-box {
        flex-direction: column;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .warning-box,
    .privacy-highlight,
    .terms-acceptance {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 120px 16px 50px;
    }

    .page-header h1 {
        font-size: 2.1rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .content-section {
        padding: 0 16px 50px;
    }

    .hero-card {
        padding: 32px 24px;
    }

    .content-card {
        padding: 28px 24px;
    }

    .legal-content {
        padding: 24px;
    }
}
