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

:root {
    --graphite: #2A2D3A;
    --indigo: #3D4466;
    --lime: #C4FF61;
    --light-gray: #F5F5F7;
    --white: #FFFFFF;
    --dark-gray: #4A5568;
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
}

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

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

.header {
    background: var(--graphite);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    flex-shrink: 0;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 45, 58, 0.85) 0%, rgba(61, 68, 102, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--lime);
    color: var(--graphite);
}

.cta-button.primary:hover {
    background: #B3E855;
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.hero-feature-icon {
    font-size: 24px;
}

.features {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    margin-bottom: 24px;
}

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

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

.about-preview {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-image img,
.booking-preview img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.integrations {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.integrations h2,
.services h2,
.booking h2,
.products h2,
.creators h2,
.contacts h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.integration-card {
    text-align: center;
}

.integration-icon {
    margin-bottom: 16px;
}

.integration-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.services {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
}

.service-card svg {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.booking {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.booking-preview {
    max-width: 900px;
    margin: 0 auto;
}

.products {
    padding: 100px 0;
    background: var(--graphite);
    text-align: center;
}

.products h2 {
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: var(--indigo);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    border: 2px solid transparent;
}

.product-card.featured {
    border-color: var(--lime);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--graphite);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-button {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-button.primary-btn {
    background: var(--lime);
    color: var(--graphite);
}

.product-button.primary-btn:hover {
    background: #B3E855;
}

.product-button.secondary-btn {
    background: transparent;
    color: var(--white);
    border-color: var(--lime);
}

.product-button.secondary-btn:hover {
    background: var(--lime);
    color: var(--graphite);
}

.creators {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.creator-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
}

.creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--dark-gray);
    margin: 0 auto 20px;
}

.creator-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.creator-card p {
    color: var(--text-secondary);
}

.contacts {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-item {
    text-align: center;
}

.contact-item svg {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-item a {
    color: var(--indigo);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--graphite);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.footer {
    background: var(--graphite);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand .logo-wrapper {
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 350px;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-grid a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
}

.footer-links-grid a:hover,
.footer-contact a:hover {
    color: var(--lime);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        gap: 24px;
        font-size: 14px;
    }

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

    .about-text h2,
    .integrations h2,
    .services h2,
    .booking h2,
    .products h2,
    .creators h2,
    .contacts h2 {
        font-size: 32px;
    }

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

    .features-grid,
    .services-grid,
    .products-grid,
    .creators-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}
