/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

ul {
    list-style: none;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2rem;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-icon {
    background-color: #000;
    color: #fff;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-btn, .login-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-btn:hover, .login-btn:hover {
    background-color: #f5f5f5;
}

.cta-btn {
    background-color: #000;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #333;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #f0e6ff 0%, #fff 100%);
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background-color: #5b21b6;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.hero-cta:hover {
    background-color: #4c1d95;
}

.hero-visuals {
    position: relative;
    display: grid;
    grid-template-areas: 
        "phone earrings"
        "phone laptop";
    gap: 2rem;
    height: 500px;
}

.visual-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    grid-area: phone;
}

.earrings {
    grid-area: earrings;
}

.laptop {
    grid-area: laptop;
}

.phone-mockup {
    background: #000;
    border-radius: 40px;
    padding: 1rem;
    width: 280px;
    height: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: #fff;
    border-radius: 30px;
    height: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phone-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.phone-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
}

.image-frame {
    background: #fff;
    border: 3px solid #5b21b6;
    border-radius: 20px;
    padding: 2rem;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.2);
    transform: rotate(5deg);
}

.earring-display {
    font-size: 4rem;
}

.laptop-mockup {
    background: #000;
    border-radius: 10px 10px 0 0;
    padding: 0.5rem;
    width: 250px;
    height: 150px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(600px) rotateY(-15deg);
}

.laptop-screen {
    background: #f5f5f5;
    height: 100%;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: #f8f8f8;
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.pro-icon, .max-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge {
    background-color: #5b21b6;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
}

.enterprise-icon {
    background-color: #000;
    color: #fff;
    padding: 0.5rem;
    border-radius: 10px;
    width: fit-content;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 120px;
}

.card-btn {
    display: block;
    background-color: #5b21b6;
    color: #fff;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: #4c1d95;
}

.dark-btn {
    background-color: #000;
}

.dark-btn:hover {
    background-color: #333;
}

.pricing-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Studio Section */
.studio-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.studio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

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

.studio-image {
    background: linear-gradient(135deg, #e0f2fe 0%, #fff 100%);
    border-radius: 30px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
}

.product-showcase {
    display: flex;
    justify-content: center;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 300px;
    text-align: center;
}

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.new-badge::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    border-left: 40px solid transparent;
    border-top: 20px solid #ff4500;
}

.product-img {
    font-size: 8rem;
    margin: 2rem 0;
}

.discount {
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

.studio-text {
    padding: 2rem 0;
}

.studio-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.studio-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.studio-cta {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.studio-cta:hover {
    background-color: #333;
}

/* Enterprise Section */
.enterprise-section {
    padding: 5rem 2rem;
    background-color: #f5f5f0;
}

.enterprise-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.enterprise-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enterprise-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.enterprise-features {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.enterprise-features li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.enterprise-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.enterprise-btn:hover {
    background-color: #333;
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.grid-item {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.discount-tag {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #ff6b6b;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-image {
    font-size: 4rem;
    margin: 1rem 0;
}

.product-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 700;
    color: #000;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

.trusted-section {
    max-width: 1400px;
    margin: 4rem auto 0;
    text-align: center;
}

.trusted-text {
    font-size: 1.1rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #5b21b6;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.social-icon {
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.new-tag {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-visuals {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }

    .phone-mockup {
        width: 220px;
        height: 450px;
    }

    .image-frame {
        width: 150px;
        height: 150px;
    }

    .laptop-mockup {
        width: 200px;
        height: 120px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .studio-content {
        grid-template-columns: 1fr;
    }

    .enterprise-container {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-visuals {
        height: 350px;
    }

    .phone-mockup {
        width: 180px;
        height: 380px;
    }

    .image-frame {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .earring-display {
        font-size: 3rem;
    }

    .laptop-mockup {
        width: 160px;
        height: 100px;
    }

    .laptop-screen {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-section {
        padding: 3rem 1rem;
    }

    .studio-section {
        padding: 3rem 1rem;
    }

    .studio-title {
        font-size: 1.8rem;
    }

    .studio-description {
        font-size: 1rem;
    }

    .enterprise-section {
        padding: 3rem 1rem;
    }

    .enterprise-title {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .card-description {
        min-height: auto;
    }

    .studio-title {
        font-size: 1.5rem;
    }

    .enterprise-title {
        font-size: 1.8rem;
    }

    .enterprise-features li {
        font-size: 1rem;
    }
}
