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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
}

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

/* Header */
.site-header {
    padding: 20px 0;
    background: #000;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 10;
}

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

.logo {
    height: 32px;
    width: auto;
}

/* SECTION 1: Hero */
.hero {
    padding: 80px 20px;
    background: #000;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('head.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 0 0 50%;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.1;
}

.instagram-gradient {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkmarks {
    margin-bottom: 32px;
}

.checkmark-item {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    margin-top: 32px;
    padding: 18px 48px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #f0f0f0;
}

/* SECTION 2: Pricing */
.pricing {
    padding: 40px 20px 80px 20px;
    background: #000;
}

.pricing-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    margin-top: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #555;
    font-weight: 400;
    line-height: 1.2;
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    border: 2px solid #333;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    transition: border-color 0.2s;
    cursor: pointer;
}

.pricing-card:hover {
    border-color: #666;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.price-divider {
    width: 75%;
    height: 1px;
    background: #666;
    margin: 15px auto;
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.per-month {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    vertical-align: baseline;
}

.btn-select {
    width: 100%;
    padding: 14px 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select:hover {
    background: #333;
}

/* SECTION 3: Trust Row */
.trust-row {
    padding: 40px 20px;
    background: #000;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* SECTION 4: Testimonials */
.testimonials {
    padding: 40px 20px;
    background: #000;
}

.testimonial-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    font-size: 14px;
    color: #fff;
    font-style: italic;
}

/* SECTION 5: Footer */
.footer {
    padding: 48px 20px 24px;
    background: #000;
    border-top: 1px solid #333;
}

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

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

.footer-brand .footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand > p {
    font-size: 14px;
    color: #999;
    margin-top: 0.5rem;
}

.footer-business-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-business-info p {
    font-size: 13px;
    color: #999;
    margin-bottom: 0.35rem;
}

.footer-business-info a {
    color: #999;
    text-decoration: none;
}

.footer-business-info a:hover {
    color: #fff;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    font-size: 13px;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-manage {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.footer-manage p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.footer-manage a {
    color: #999;
    text-decoration: underline;
}

.footer-manage a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero::before {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.4) 85%, rgba(0, 0, 0, 0.2) 100%);
    }
    
    .pricing-stats {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 11px;
    }

    .hero-content {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .hero-text {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

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

    .checkmark-item {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        background: #fff;
    }

    .trust-items {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonial-strip {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

