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

:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary-color: #f59e0b;
    --accent-color: #06b6d4;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-luxury: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo .logo-img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.lang-toggle:hover {
    background: rgba(139, 92, 246, 0.05);
}

.lang-option {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 18px;
}

.lang-option:hover {
    background: rgba(139, 92, 246, 0.1);
}

.lang-option.active {
    color: white;
    background: var(--primary-color);
}

.lang-divider {
    color: var(--border-color);
    font-size: 14px;
    padding: 0 4px;
    pointer-events: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-luxury);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(236, 72, 153, 0.8) 50%, rgba(245, 158, 11, 0.9) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 500px 500px, 400px 400px, 300px 300px;
    background-position: -250px 400px, 600px -200px, 200px 100px;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    min-height: 3.85rem;
    opacity: 0;
    transform: translateY(30px);
    animation: smoothTitleAppear 1.2s ease-out 0.3s forwards;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: smoothTextAppear 1s ease-out 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: smoothTextAppear 1s ease-out 1.2s forwards;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

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

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

.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Phone Mockup Carousel */
.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.phones-carousel {
    position: relative;
    width: 350px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: absolute;
    width: 300px;
    height: 600px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

/* Desktop: Show all phones stacked */
@media (min-width: 769px) {
    /* Instagram phone (active by default) */
    .phone-container#instagramPhone {
        top: 0;
        left: 0;
        z-index: 2;
        transform: translateX(0) translateY(0) scale(1);
    }

    /* Calendar phone (behind and offset) */
    .phone-container#calendarPhone {
        top: 0;
        left: 60px;
        z-index: 1;
        transform: translateX(0) translateY(0) scale(0.95);
        opacity: 0.8;
    }

    .phone-container#whatsappPhone {
        top: 0;
        left: 120px;
        z-index: 0;
        transform: translateX(0) translateY(0) scale(0.9);
        opacity: 0.6;
    }

    /* When calendar is active */
    .phone-container#calendarPhone.active {
        top: 0;
        left: 0;
        z-index: 2;
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }

    /* When Instagram goes to back */
    .phone-container#instagramPhone:not(.active) {
        top: 0;
        left: -60px;
        z-index: 1;
        transform: translateX(0) translateY(0) scale(0.95);
        opacity: 0.8;
    }

    .phone-container#calendarPhone:not(.active) {
        top: 0;
        left: 60px;
        z-index: 1;
        transform: translateX(0) translateY(0) scale(0.95);
        opacity: 0.8;
    }

    .phone-container#whatsappPhone.active {
        top: 0;
        left: 0;
        z-index: 2;
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }

    .phone-container#whatsappPhone:not(.active) {
        top: 0;
        left: 120px;
        z-index: 0;
        transform: translateX(0) translateY(0) scale(0.9);
        opacity: 0.6;
    }

    .phone-container:hover:not(.active) {
        opacity: 0.9;
        transform: translateX(0) translateY(-5px) scale(0.97);
    }
}

/* Tablet: 2-column layout for pricing */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile: Show only one phone at a time */
@media (max-width: 768px) {
    .phones-carousel {
        width: 280px;
        height: 560px;
    }

    .phone-container {
        width: 260px;
        height: 520px;
        top: 0 !important;
        left: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(0) translateY(0) scale(1) !important;
        z-index: 0 !important;
    }

    .phone-container.active {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2 !important;
        transform: translateX(0) translateY(0) scale(1) !important;
    }

    /* Override desktop hover effects on mobile */
    .phone-container:hover:not(.active) {
        opacity: 0 !important;
        transform: translateX(0) translateY(0) scale(1) !important;
    }
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #0d1117);
    border-radius: 40px;
    padding: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 0.5px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
    transition: transform 0.4s ease;
}

.phone-container.active .phone-mockup {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 15px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.instagram-chat {
    height: 100%;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #ffffff;
    padding: 45px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #262626;
    font-size: 14px;
    border-bottom: 1px solid #dbdbdb;
}

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

.header-left i {
    font-size: 18px;
    color: #262626;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    position: relative;
}

.profile-pic::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #ffffff;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.status {
    font-size: 12px;
    color: #8e8e8e;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right i {
    font-size: 18px;
    color: #262626;
    cursor: pointer;
}

.date-separator {
    text-align: center;
    margin: 15px 0;
}

.date-separator span {
    background: #e4e6ea;
    color: #65676b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.chat-messages {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    transition: all 0.3s ease;
}

.chat-messages::-webkit-scrollbar {
    display: none;
}

.message {
    margin-bottom: 8px;
    max-width: 75%;
    display: flex;
    align-items: flex-end;
    animation: messagePopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.message-content {
    position: relative;
}

.message-content p {
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    word-wrap: break-word;
    text-align: left;
}

.message-time {
    font-size: 11px;
    color: #8e8e8e;
    margin-top: 4px;
    display: block;
}

.message.received {
    margin-right: auto;
}

.message.received .message-content p {
    background: #e4e6ea;
    color: #050505;
    border-bottom-left-radius: 4px;
}

.message.sent {
    margin-left: auto;
    flex-direction: row-reverse;
}

.message.sent .message-content {
    text-align: right;
}

.message.sent .message-content p {
    background: #3897f0;
    color: white;
    border-bottom-right-radius: 4px;
    text-align: left;
}

.chat-input {
    padding: 10px 15px;
    border-top: 1px solid #dbdbdb;
    background: #ffffff;
}

.input-container {
    display: flex;
    align-items: center;
    background: #f0f2f5;
    border-radius: 22px;
    padding: 8px 15px;
    gap: 10px;
    border: 1px solid #dbdbdb;
}

.input-container input {
    flex: 1;
    background: none;
    border: none;
    color: #050505;
    font-size: 14px;
    outline: none;
}

.input-container input::placeholder {
    color: #65676b;
}

.input-container i {
    color: #65676b;
    font-size: 16px;
    cursor: pointer;
}

.input-container i:hover {
    color: #1877f2;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

/* Section Dividers */
.section-divider {
    height: 80px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.1;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.section-divider::after {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

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


/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, transparent 0%, rgba(236, 72, 153, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 50px;
}

.billing-option {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.billing-option.active {
    color: var(--primary-color);
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

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

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    border-radius: 30px;
    transition: 0.4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-luxury);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-luxury);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.25rem;
    vertical-align: top;
    color: var(--text-secondary);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    margin-top: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--background-light);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

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

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

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-luxury);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(236, 72, 153, 0.8) 50%, rgba(245, 158, 11, 0.9) 100%);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

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

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

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

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

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

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        gap: 15px;
    }

    .lang-toggle {
        padding: 5px 12px;
    }

    .lang-option {
        font-size: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        min-height: 2.75rem;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-image {
        margin-bottom: 0px;
    }

    .phones-carousel {
        width: 290px;
        height: 520px;
        margin: 0 auto;
    }
    
    .phone-container {
        width: 260px;
        height: 520px;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
        transform: none;
    }
    
    .phone-container.active .phone-mockup {
        transform: none;
    }
    
    
    .carousel-labels {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .carousel-label {
        font-size: 12px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .billing-toggle {
        margin: 30px 0 40px;
    }

    .discount-badge {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
        min-height: 2.2rem;
    }

    .hero-image {
        margin-bottom: 20px;
    }

    .phones-carousel {
        width: 250px;
        height: 450px;
    }
    
    .phone-container {
        width: 220px;
        height: 450px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 450px;
    }

    /* Mobile: Show only one phone at a time */
    .phone-container {
        top: 0 !important;
        left: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(0) translateY(0) scale(1) !important;
        z-index: 0 !important;
    }

    .phone-container.active {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2 !important;
        transform: translateX(0) translateY(0) scale(1) !important;
    }


    .carousel-labels {
        gap: 15px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .carousel-label {
        font-size: 11px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes smoothTitleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(3px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(5px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes smoothTextAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(2px);
    }
    60% {
        opacity: 0.7;
        transform: translateY(3px);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


.feature-card,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Chat message animations */
@keyframes messagePopIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    70% {
        opacity: 1;
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

/* Typing indicator */
.typing-indicator {
    animation: messagePopIn 0.3s ease-out;
}

.typing-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px !important;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #65676b;
    animation: typingDots 1.5s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Google Calendar Styles */
.calendar-app {
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.calendar-header {
    background: #ffffff;
    padding: 15px;
}

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

.time {
    font-weight: 600;
    font-size: 17px;
    color: #000;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #000;
}

.battery {
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.calendar-nav h2 {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    flex: 1;
}

.calendar-nav i {
    color: #5f6368;
    font-size: 18px;
    cursor: pointer;
}

.calendar-date {
    background: #1a73e8;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
}

.profile-circle {
    background: #34a853;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
}

.calendar-content {
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
}

.date-header {
    padding: 15px 20px 10px;
    border-bottom: 1px solid #e8eaed;
    background: #f8f9fa;
}

.day-name {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
    display: block;
}

.day-number {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    display: block;
    margin-top: 5px;
}

.time-slots {
    padding: 0 20px;
}

.time-slot {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
}

.time-label {
    font-size: 14px;
    color: #5f6368;
    width: 60px;
    flex-shrink: 0;
    text-align: left;
}

.appointment-block {
    background: #1a73e8;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-left: 20px;
    flex: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.appointment-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.appointment-location {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.3;
}

.calendar-add-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.add-icon {
    color: #1a73e8;
    font-size: 24px;
    font-weight: 300;
}

/* Carousel Navigation */

.carousel-labels {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 15px;
}

.carousel-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-label.active {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

/* WhatsApp Chat Styles */
.whatsapp-chat {
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.whatsapp-header {
    background: #f0f0f0;
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.whatsapp-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-top: 10px;
}

.whatsapp-header .time {
    font-weight: 600;
    font-size: 17px;
    color: #000000;
}

.whatsapp-header .status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #000000;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header-info i {
    color: #666666;
    font-size: 18px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5c6bc0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
}

.contact-name {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.whatsapp-messages {
    flex: 1;
    padding: 10px 15px;
    background: #ffffff;
    overflow-y: auto;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23f0f0f0"/></svg>');
    background-repeat: repeat;
    background-size: 20px 20px;
}

.whatsapp-messages .date-separator {
    text-align: center;
    margin: 15px 0;
}

.whatsapp-messages .date-separator span {
    background: #e1f5fe;
    color: #666666;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 12px;
}

.whatsapp-message {
    margin-bottom: 10px;
    display: flex;
    max-width: 85%;
}

.whatsapp-message.received {
    justify-content: flex-start;
}

.whatsapp-message.sent {
    justify-content: flex-end;
    margin-left: auto;
}

.whatsapp-message .message-content {
    background: #f0f0f0;
    color: #000000;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    max-width: 100%;
}

.whatsapp-message.received .message-content {
    background: #f0f0f0;
    border-bottom-left-radius: 3px;
}

.whatsapp-message.sent .message-content {
    background: #dcf8c6;
    border-bottom-right-radius: 3px;
    color: #000000;
}

.message-image {
    max-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    padding: 4px;
    margin-bottom: 8px;
}

.message-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.ai-analysis {
    max-width: 250px;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-icon {
    font-size: 16px;
}

.ai-label {
    font-weight: 600;
    font-size: 14px;
    color: #007bb5;
}

.analysis-points {
    font-size: 13px;
    line-height: 1.4;
}

.analysis-points p {
    margin: 6px 0;
    color: #000000;
}

.analysis-points strong {
    color: #007bb5;
}

.whatsapp-message .message-time {
    font-size: 11px;
    color: #999999;
    display: block;
    text-align: right;
    margin-top: 5px;
}

.whatsapp-input {
    padding: 10px 15px;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-input .input-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 22px;
    padding: 8px 15px;
    gap: 10px;
    border: 1px solid #e0e0e0;
}

.whatsapp-input input {
    flex: 1;
    background: none;
    border: none;
    color: #000000;
    font-size: 14px;
    outline: none;
}

.whatsapp-input input::placeholder {
    color: #999999;
}

.whatsapp-input i {
    color: #666666;
    font-size: 16px;
    cursor: pointer;
}

.whatsapp-input i:hover {
    color: #007bb5;
}

/* Message response buttons */
.message-response-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.response-button {
    background: #ffffff;
    border: 1px solid #007bb5;
    color: #007bb5;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.response-button:hover {
    background: #007bb5;
    color: #ffffff;
}

.response-button i {
    font-size: 10px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.close {
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: #666;
    background-color: #f5f5f5;
}

.trial-form {
    padding: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 255, 0.1);
}

.form-group input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.plan-toggle {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.toggle-option {
    position: relative;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(139, 69, 255, 0.02);
}

.toggle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.toggle-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.toggle-option input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.toggle-option label {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    margin: 0;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plan-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 14px;
    opacity: 0.8;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.form-actions .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-note {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.3);
}

.message-icon {
    font-size: 24px;
    margin-top: 2px;
}

.message-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 20px 12px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .trial-form {
        padding: 20px;
    }
    
    .plan-toggle {
        gap: 8px;
    }
    
    .toggle-option label {
        padding: 12px 16px;
    }
}


/* Mobile App Showcase Section */
.mobile-app-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.app-features-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

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

.app-feature.reverse {
    direction: rtl;
}

.app-feature.reverse > * {
    direction: ltr;
}

.app-screenshot {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.3);
}

.app-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.app-feature-content {
    padding: 20px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-badge i {
    font-size: 16px;
}

.app-feature-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.app-feature-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

/* Phone Screenshot Styling for Hero */
.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Responsive Design for Mobile App Showcase */
@media (max-width: 968px) {
    .app-features-grid {
        gap: 80px;
    }

    .app-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .app-feature.reverse {
        direction: ltr;
    }

    .app-feature-content {
        padding: 0;
    }

    .app-feature-content h3 {
        font-size: 28px;
    }

    .app-feature-content p {
        font-size: 16px;
    }

    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .app-screenshot {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .mobile-app-showcase {
        padding: 60px 0;
    }

    .app-features-grid {
        gap: 60px;
        margin-top: 40px;
    }

    .app-feature-content h3 {
        font-size: 24px;
    }

    .feature-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===== Mobile Mockup Styles (Matching luma-mobile) ===== */
.app-mockup-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.mobile-mockup {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Mobile Header */
.mobile-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    padding: 12px 24px 24px;
    color: white;
}

.mobile-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.mobile-status-icons {
    display: flex;
    gap: 6px;
    font-size: 12px;
}

.mobile-header-content {
    text-align: center;
}

.mobile-header-content h4 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.mobile-header-content p {
    margin: 4px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Body */
.mobile-body {
    padding: 20px;
    background: #f9fafb;
    min-height: 500px;
}

/* Date Navigator (Calendar Screen) */
.date-navigator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.date-info {
    flex: 1;
}

.date-title {
    font-size: 14px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 6px;
}

.today-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #7c3aed;
    background: #ede9fe;
    padding: 2px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.date-subtitle {
    font-size: 11px;
    color: #6b7280;
}

.add-booking-btn {
    background: #7c3aed;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    cursor: pointer;
}

/* Booking Items */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-item {
    display: flex;
    background: white;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
}

.booking-time-badge {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #7c3aed;
    min-width: 60px;
    text-align: center;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-info {
    flex: 1;
}

.booking-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.booking-service-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.booking-price-text {
    font-size: 13px;
    font-weight: bold;
    color: #10b981;
}

.booking-client-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.booking-client-name {
    font-size: 12px;
    color: #6b7280;
}

.booking-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
}

.status-confirmed-badge {
    background: #dcfce7;
    color: #16a34a;
}

/* Notification Items */
.notification-item {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
}

.notification-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.notification-icon-wrapper i {
    color: #7c3aed;
    font-size: 18px;
}

.notification-content-wrapper {
    flex: 1;
}

.notification-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.notification-title-text {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.notification-time-text {
    font-size: 11px;
    color: #9ca3af;
}

.notification-message-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 8px;
}

.notification-unread-dot {
    position: absolute;
    top: 18px;
    right: 14px;
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
}

.image-preview-badge {
    display: inline-flex;
    align-items: center;
    background: #ede9fe;
    color: #7c3aed;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
}

/* Analytics Components */
.analytics-cards-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    opacity: 0;
}

.analytics-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.analytics-value {
    font-size: 22px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 4px;
}

.analytics-label {
    font-size: 11px;
    color: #6b7280;
}

.analytics-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
}

.analytics-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.analytics-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.service-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-bar-name {
    font-size: 12px;
    color: #4b5563;
    min-width: 110px;
}

.service-bar-progress {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.service-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.service-bar-count {
    font-size: 12px;
    font-weight: 600;
    color: #7c3aed;
    min-width: 25px;
    text-align: right;
}

/* Animations */
@keyframes slideInBooking {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInNotification {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInMetric {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Initial hidden state for mobile app mockups */
.booking-item:not(.visible),
.notification-item:not(.visible),
.analytics-cards-row:not(.visible),
.analytics-section:not(.visible),
.instagram-connect-card:not(.visible),
.connect-button-wrapper:not(.visible) {
    opacity: 0;
}

/* Visible state with animations */
.booking-item.visible {
    animation: slideInBooking 0.5s ease forwards;
}

.notification-item.visible {
    animation: slideInNotification 0.5s ease forwards;
}

.analytics-cards-row.visible,
.analytics-section.visible {
    animation: fadeInMetric 0.6s ease forwards;
}

.instagram-connect-card.visible,
.connect-button-wrapper.visible {
    animation: fadeInMetric 0.6s ease forwards;
}

/* Legacy classes for backward compatibility */
.animate-booking {
    animation: slideInBooking 0.5s ease forwards;
}

.animate-notification {
    animation: slideInNotification 0.5s ease forwards;
}

.animate-metric {
    animation: fadeInMetric 0.6s ease forwards;
}

/* Weekly Chart */
.weekly-chart {
    padding: 20px 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    gap: 8px;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(180deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: height 1s ease;
}

.chart-day {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

/* Instagram Connect Screen Styles */
.instagram-connect-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    opacity: 0;
}

.instagram-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.instagram-icon-wrapper i {
    font-size: 32px;
    color: #7c3aed;
}

.connect-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.connect-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.connect-features {
    margin-bottom: 16px;
}

.connect-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 12px;
    color: #374151;
}

.connect-feature-item i {
    color: #10b981;
    font-size: 16px;
}

.warning-box-connect {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fef3c7;
    border-radius: 10px;
    padding: 12px;
}

.warning-box-connect i {
    color: #f59e0b;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-text-connect {
    font-size: 11px;
    color: #92400e;
    line-height: 1.5;
    text-align: left;
}

.connect-button-wrapper {
    padding: 0;
    opacity: 0;
}

.instagram-connect-button {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.instagram-connect-button:hover {
    transform: scale(1.02);
}

.instagram-connect-button i {
    font-size: 20px;
}

/* Salon Management Card Styles */
.salon-management-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    margin: 0 auto;
}

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

.management-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.management-icon-wrapper i {
    font-size: 32px;
    color: #7c3aed;
}

.management-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.management-header p {
    font-size: 14px;
    color: #6b7280;
}

.management-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.management-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.management-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.management-item-icon i {
    font-size: 20px;
}

.management-item-content {
    flex: 1;
}

.management-item-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.management-item-content p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.management-footer {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.management-footer i {
    font-size: 24px;
    color: #7c3aed;
    flex-shrink: 0;
}

.management-footer p {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .analytics-summary {
        flex-direction: column;
    }

    .service-name {
        min-width: 100px;
        font-size: 12px;
    }

    .salon-management-card {
        padding: 24px;
    }

    .management-header h3 {
        font-size: 20px;
    }

    .management-item {
        padding: 12px;
    }

    .management-item-icon {
        width: 40px;
        height: 40px;
    }

    .management-item-icon i {
        font-size: 18px;
    }
}
