:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --secondary: #10B981;
    --accent: #F59E0B;
    --text: #1F2937;
    --text-light: #6B7280;
    --background: #F9FAFB;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
}

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

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Add mobile menu show state */
.nav-links.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 5rem 2rem 2rem;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

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

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

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    margin: 4px 0;
    transition: 0.3s;
}

/* Add mobile menu button animation */
.mobile-menu.active {
    background-color: var(--white);
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-2px, 6px);
}

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

.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-2px, -6px);
}

/* Hero Section - Reset */
.hero,
.hero-content,
.hero-image,
.hero-cta {
    all: unset;
    box-sizing: border-box;
}

/* Hero Section - New Styles */
section.hero {
    display: block;
    width: 100%;
    padding: 2.5rem 1rem;
    margin-top: 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: unset !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
}

.hero-content {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 0;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 0.5rem 1rem;
    position: relative;
}

.hero p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
    opacity: 0.5;
}

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

.app-store-button {
    display: inline-block;
}

.app-store-button img {
    height: 36px;
    width: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
}

/* Features */
.features {
    padding: 6rem 2rem;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-100);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-600);
}

/* Gallery */
.gallery {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.style-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.style-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

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

.style-image-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.style-card:hover img {
    transform: scale(1.05);
}

.style-card h4 {
    font-size: 1.25rem;
    padding: 1rem;
    margin: 0;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

@media (max-width: 1200px) {
    .style-showcase {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .style-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Contact */
.contact {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.contact p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gray-400);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-400);
}

/* Lead Magnet Section */
.lead-magnet-section {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.lead-magnet-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.lead-magnet-section p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

.lead-magnet-cta {
    background: #7f56d9;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.lead-magnet-cta:hover {
    background: #6d28d9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 80px 2rem 2rem;
        z-index: 1000;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        opacity: 1;
        overflow-y: auto;
    }

    .nav-links.show li {
        opacity: 0;
        animation: fadeInUp 0.4s ease forwards;
        width: 100%;
        text-align: center;
    }

    .nav-links.show a {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--gray-800);
        padding: 1rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links.show a:hover {
        background-color: var(--gray-50);
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--white);
        z-index: 1001;
    }

    .mobile-menu {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1002;
        width: 48px;
        height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--white);
        border-radius: 50%;
        box-shadow: var(--shadow-sm);
    }

    .mobile-menu span {
        width: 24px;
        height: 2px;
        background: var(--gray-800);
        margin: 2px 0;
        border-radius: 2px;
        transition: transform 0.3s ease,
            opacity 0.3s ease;
    }

    .mobile-menu.active {
        background-color: var(--white);
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-2px, 6px);
    }

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

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-2px, -6px);
    }

    .hero-image {
        width: 200px;
    }

    .app-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .app-step:nth-child(even) {
        direction: ltr;
    }

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

@media (max-width: 480px) {
    .step-image {
        max-width: 240px;
    }

    .step-image img {
        max-height: 520px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-content,
.hero-image,
.feature-card,
.style-card {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Error Page */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-content h1 {
    font-size: 3rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.error-content .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.error-content .cta-button:hover {
    background: var(--primary-dark);
}

/* App Showcase */
.app-showcase {
    padding: 6rem 2rem;
    background: var(--white);
}

.app-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.app-flow {
    max-width: 1200px;
    margin: 0 auto;
}

.app-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.app-step:nth-child(even) {
    direction: rtl;
}

.app-step:nth-child(even) .step-content {
    direction: ltr;
}

.step-content {
    max-width: 500px;
}

.step-content h3 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-image {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

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

@media (max-width: 1024px) {
    .app-step {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .app-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0;
    }

    .app-step:nth-child(even) {
        direction: ltr;
    }

    .step-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .step-image {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .step-image {
        max-width: 260px;
    }
}

/* Mobile Slide Menu */
.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-slide-menu.open {
    right: 0;
}

body.menu-open {
    overflow: hidden;
}

.slide-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-menu {
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.slide-menu-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.slide-menu-content a {
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

.slide-menu-content a:last-child {
    border-bottom: none;
}

.phone-button {
    margin-top: 20px;
    background-color: #ff4d26;
    color: white !important;
    padding: 15px !important;
    text-align: center;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
}

.phone-button:hover {
    background-color: #e63e1c;
}

/* Make mobile menu button more visible */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}