/* CSS Variables */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #808080;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-mixed: linear-gradient(135deg, #FFD700 0%, #8B5CF6 50%, #3B82F6 100%);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.15);
    --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.15);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}

.logo-text:hover {
    transform: scale(1.05);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

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

.salon-image {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.salon-image.men-salon {
    left: 0;
}

.salon-image.women-salon {
    right: 0;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.3) contrast(1.2);
    opacity: 0.4;
    transition: var(--transition);
    display: block;
    min-height: 100%;
}

.fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 1;
}

.men-fallback {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.women-fallback {
    background: linear-gradient(135deg, #2a1a2a 0%, #1a1a2a 50%, #2a1a2a 100%);
}

.salon-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(59, 130, 246, 0.1) 100%);
    z-index: 2;
}

.hero-container {
    width: 100%;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    height: calc(100vh - 150px);
    max-height: 600px;
}

.hero-text {
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    position: relative;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Phone Mockup */
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateX(50px);
    height: 100%;
}

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

.phone-mockup {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 35px;
    padding: 18px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    animation: phoneFloat 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
}

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

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

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

.status-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.signal-icon, .wifi-icon {
    color: var(--primary-gold);
    font-size: 11px;
}

.battery-indicator {
    width: 22px;
    height: 11px;
    border: 1px solid var(--primary-gold);
    border-radius: 2px;
    position: relative;
}

.battery-level {
    width: 80%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    flex-shrink: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 14px;
}

.user-info h4 {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.user-info p {
    font-size: 11px;
    color: var(--text-secondary);
}

.header-right .notification-dot {
    width: 32px;
    height: 32px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    position: relative;
}

.notification-dot::after {
    content: '';
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    background: #ff4444;
    border-radius: 50%;
}

.welcome-section {
    padding: 15px 0;
    flex: 1;
    overflow-y: auto;
}

.welcome-section h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.quick-stat-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.inventory-card {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.order-card {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 10px;
    color: var(--text-secondary);
}

.progress-section {
    margin-top: 15px;
}

.progress-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 12px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-header span:first-child {
    font-size: 11px;
    color: var(--text-primary);
    font-weight: 600;
}

.badge {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.bottom-nav {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 8px 4px;
    display: flex;
    justify-content: space-around;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    min-width: 40px;
    flex: 1;
}

.nav-item.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.nav-item:hover:not(.active) {
    background: rgba(255, 215, 0, 0.08);
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.nav-item i {
    font-size: 14px;
    transition: var(--transition);
}

.nav-item.active i {
    transform: scale(1.1);
}

.nav-item span {
    font-size: 9px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item.active span {
    font-weight: 600;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 14px;
    padding: 0.8rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-gold);
    z-index: 1;
    animation: float 4s ease-in-out infinite;
    transition: var(--transition);
    width: 140px;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25);
}

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

.card-1 { top: 8%; left: -8%; animation-delay: 0s; }
.card-2 { top: 15%; right: -12%; animation-delay: 0.5s; }
.card-3 { top: 45%; left: -15%; animation-delay: 1s; }
.card-4 { top: 55%; right: -8%; animation-delay: 1.5s; }
.card-5 { top: 75%; left: -12%; animation-delay: 2s; }
.card-6 { top: 85%; right: -15%; animation-delay: 2.5s; }

.card-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    color: var(--dark-bg);
    font-size: 1rem;
}

.card-content h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--darker-bg);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-slider {
    display: flex;
    animation: slideFeatures 20s linear infinite;
    gap: 2rem;
    width: max-content;
}

.features-slider:hover {
    animation-play-state: paused;
}

@keyframes slideFeatures {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.features-grid {
    display: flex;
    gap: 2rem;
    min-width: 100%;
}

.feature-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 215, 0, 0.18);
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(255,215,0,0.07), 0 1.5px 8px 0 rgba(139,92,246,0.04);
    z-index: 1;
    min-width: 380px;
    flex-shrink: 0;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700 0%, #8B5CF6 100%);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 0;
    filter: blur(8px);
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 0.22;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-gold);
    box-shadow: 0 16px 48px 0 rgba(255,215,0,0.13), 0 3px 16px 0 rgba(139,92,246,0.08);
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2.6rem;
    border-radius: 20px;
    background: var(--gradient-gold);
    box-shadow: 0 4px 24px 0 rgba(255,215,0,0.13), 0 1.5px 8px 0 rgba(139,92,246,0.08);
    color: var(--dark-bg);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: featureIconPop 1.2s cubic-bezier(.4,2,.6,1) infinite alternate;
}

@keyframes featureIconPop {
    0% { transform: scale(1) rotate(-2deg); }
    100% { transform: scale(1.08) rotate(2deg); }
}

.feature-inventory, .feature-ordering, .feature-analytics, 
.feature-warehouse, .feature-delivery, .feature-mobile {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    font-size: 1.1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Salon Showcase Section */
.salon-showcase {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.salon-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.salon-type {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1.5px solid rgba(255, 215, 0, 0.18);
    box-shadow: 0 8px 32px 0 rgba(255,215,0,0.07);
}

.salon-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.salon-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4) contrast(1.2);
    display: block;
    min-height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.salon-image-container .fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    color: var(--text-primary);
    z-index: 3;
}

.image-overlay h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
}

.image-overlay p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.image-overlay ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.image-overlay li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.image-overlay li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--darker-bg);
    text-align: center;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
}

.cta-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-muted);
}

.made-with-love {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.made-with-love i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content { gap: 2rem; }
    .hero-title { font-size: 3rem; }
    .phone-mockup { width: 240px; height: 480px; }
    .floating-card { width: 120px; padding: 0.6rem; }
    .card-1, .card-3, .card-5 { left: -5%; }
    .card-2, .card-4, .card-6 { right: -5%; }
    .feature-card { min-width: 320px; height: 380px; padding: 2.5rem 2rem 2rem 2rem; }
    .feature-icon { width: 70px; height: 70px; font-size: 2.2rem; }
    .feature-card h3 { font-size: 1.4rem; }
    .feature-card p { font-size: 1rem; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero { min-height: 100vh; padding: 80px 0 30px; }
    .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; height: auto; max-height: none; justify-items: center; }
    .hero-text { padding-right: 0; order: 2; text-align: center; align-items: center; }
    .hero-mockup { order: 1; height: auto; justify-content: center; }
    .hero-title { font-size: 2.5rem; text-align: center; }
    .hero-description { font-size: 1.1rem; text-align: center; }
    .hero-buttons { justify-content: center; }
    .phone-mockup { width: 220px; height: 440px; }
    .floating-card { display: none; }
    .features-slider { animation-duration: 15s; }
    .feature-card { min-width: 300px; height: 360px; padding: 2rem 1.5rem 1.5rem 1.5rem; }
    .feature-icon { width: 65px; height: 65px; font-size: 2rem; margin-bottom: 1.5rem; }
    .feature-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
    .feature-card p { font-size: 0.95rem; }
    .salon-types { grid-template-columns: 1fr; gap: 2rem; }
    .salon-image-container { height: 400px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-container { padding: 0 1rem; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2rem; }
    .phone-mockup { width: 200px; height: 400px; padding: 15px; }
    .quick-stats { grid-template-columns: 1fr; }
    .image-overlay ul { grid-template-columns: 1fr; }
    .btn-primary, .btn-secondary { padding: 0.8rem 1.5rem; font-size: 1rem; }
    .bottom-nav { padding: 6px 2px; }
    .nav-item { padding: 6px 4px; min-width: 35px; }
    .nav-item i { font-size: 12px; }
    .nav-item span { font-size: 8px; }
    .feature-card { min-width: 280px; height: 340px; padding: 1.5rem 1rem 1rem 1rem; }
    .feature-icon { width: 60px; height: 60px; font-size: 1.8rem; margin-bottom: 1rem; }
    .feature-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
    .feature-card p { font-size: 0.9rem; }
    .salon-image-container { height: 350px; }
}
