:root {
    --primary-dark: #1e1b4b;
    /* Indigo 950 */
    --primary: #4c1d95;
    /* Violet 800 */
    --accent: #ef4444;
    /* Red 500 */
    --cta: #22c55e;
    /* Green 500 */
    --cta-hover: #16a34a;
    /* Green 600 */
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --card-bg: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Summer Theme Variables */
:root {
    --primary-dark: #1e1b4b;
    --primary: #4c1d95;
    --accent: #ef4444;
    --cta: #22c55e;
    --cta-hover: #16a34a;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --card-bg: rgba(255, 255, 255, 0.05);

    /* Summer Special Colors */
    --summer-blue: #0ea5e9;
    /* Sky 500 */
    --summer-cyan: #22d3ee;
    /* Cyan 400 */
    --sun-yellow: #facc15;
    /* Yellow 400 */
}

/* ... (Keep existing styles) ... */

/* Summer Hero */
.summer-hero {
    background: radial-gradient(circle at top right, var(--summer-blue) 0%, var(--primary) 60%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Summer Badge */
.summer-badge {
    background: var(--sun-yellow);
    color: #854d0e;
    font-weight: 900;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}

.btn-summer {
    background: var(--sun-yellow);
    color: #4c1d95;
}

.btn-summer:hover {
    background: #fde047;
    color: #2e1065;
    box-shadow: 0 6px 25px rgba(250, 204, 21, 0.6);
}

/* Social Proof Section */
.social-proof {
    background: white;
    color: #1f2937;
    padding: 80px 0;
    text-align: center;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.proof-card {
    background: #f3f4f6;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-card video,
.proof-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.proof-caption {
    padding: 15px;
    font-weight: 700;
    color: var(--primary);
}

.proof-banner {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

/* Updated Hero Styling */
/* ... (Existing styles) ... */

/* Product Explainer */
.product-explainer {
    background: #f9fafb;
    padding: 80px 0;
    color: #1f2937;
}

.explainer-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.explainer-video,
.explainer-content {
    flex: 1;
    min-width: 300px;
}

.explainer-video video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.explainer-content h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Logistics Section */
.logistics {
    background: linear-gradient(to bottom, #1e1b4b, #111827);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.logistics-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.logistics-video {
    flex: 1;
    min-width: 300px;
}

.logistics-video video {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--summer-cyan);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.logistics-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-icon {
    font-size: 2rem;
    background: var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* WhatsApp Grid */
.whatsapp-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.whatsapp-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    border: 4px solid #25D366;
    /* WhatsApp Green */
}

.whatsapp-card img {
    width: 100%;
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .explainer-grid,
    .logistics-content {
        flex-direction: column;
    }
}



a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--cta);
    color: white;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.btn:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--cta);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--cta);
    color: white;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Header */
.header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #d1d5db;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Benefits */
.benefits {
    background: rgba(0, 0, 0, 0.2);
    padding: 80px 0;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    text-align: center;
}

.subtitle {
    margin-bottom: 50px;
    color: var(--text-muted);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    color: #1f2937;
    padding: 40px 30px;
    border-radius: 20px;
    width: 320px;
    position: relative;
    border: 4px solid transparent;
}

.pricing-card.popular {
    border-color: var(--cta);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.best-value {
    border-color: var(--accent);
}

.feature-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
}

.pricing-card.best-value .feature-tag {
    background: var(--accent);
}

.treatment-time {
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    margin: 20px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #111827;
}

.savings {
    background: #dcfce7;
    color: #166534;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

/* Wholesale */
.wholesale-trigger {
    margin: 40px 0;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
}

.wholesale-grid {
    margin-top: 20px;
}

.hidden {
    display: none;
}

/* Guarantee */
.guarantee {
    background: white;
    color: #1f2937;
    padding: 80px 0;
}

.guarantee-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.guarantee-seal {
    width: 200px;
    animation: float 4s ease-in-out infinite;
}

.guarantee-text h2 {
    color: var(--primary);
}

/* Footer */
footer {
    background: #0f172a;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .guarantee-container {
        flex-direction: column;
        text-align: center;
    }
}