* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============ HEADER ============ */
header {
    background: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    gap: 15px;
}

.logo {
    /* font-size: 24px; */
    /* font-weight: 800; */
    /* color: #4169E1; */
    /* text-transform: uppercase; */
    /* letter-spacing: 2px; */
    /* min-width: fit-content; */
    /* flex-shrink: 0; */
}

/* Header logo styling - responsive for all screens */
.header-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: cover;
}

.offer-banner {
    text-align: center;
    background: linear-gradient(90deg, #4169E1, #1C1F26, #4169E1);
    background-size: 200% 100%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    animation: gradientMove 3s ease infinite;
    min-width: 200px;
    margin: 0 10px;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.order-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    min-width: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
}
.phone-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.guarantee-text {
    font-size: 15px !important;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
}

/* Tablet */
@media (max-width: 768px) {
    .order-btn {
        font-size: 1.1rem !important;
        padding: 10px 24px;
    }
    
    .guarantee-text {
        font-size: 12px !important;
        font-weight: 800;
    }
    
    .phone-cta-wrapper {
        gap: 3px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .order-btn {
        font-size: 0.8rem !important;
        padding: 8px 18px;
    }
    
    .guarantee-text {
        font-size: 9px !important;
        letter-spacing: 0.3px;
    }
    
    .phone-cta-wrapper {
        gap: 2px;
    }
}
.order-btn:hover {
    background: #4169E1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(65, 105, 225, 0.35);
}

/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(135deg, #f0f3ff 0%, #fff5f0 100%);
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 800;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-left p {
    font-size: 17px;
    color: #404040;
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 500;
}

.price-tag {
    background: linear-gradient(135deg, #000000, #1C1F26);
    color: white;
    padding: 18px 25px;
    border-radius: 14px;
    margin-bottom: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    width: max-content;
    position: relative;
}

.price-tag h3 {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-original {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.9;
}

.price-sale {
    font-size: 28px;
}

.discount-badge {
    background: #4169E1;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    min-width: 65px;
}

.countdown-timer {
    display: flex;
    gap: 10px;
    margin-left: 10px;
    align-items: center;
}

.timer-box {
    background: #4169E1;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

.timer-number {
    font-size: 20px;
    font-weight: 800;
    display: block;
}

.timer-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    background: #f0f3ff;
    border: 2px solid #4169E1;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    color: #4169E1;
}

.cta-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
    display: inline-block;
}

.cta-btn:hover {
    background: #4169E1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.4);
}

.cta-subtext {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(135deg, #f0f3ff 0%, #fff5f0 100%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ============ PACKAGES SECTION ============ */
.packages {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7ff 0%, #fff8f5 100%);
}

.packages h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 800;
}

.packages-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 70px;
    font-weight: 600;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.2);
}

.package-card.best-seller::before {
    content: "⭐ BEST SELLER ⭐";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4169E1, #1C1F26);
    color: white;
    padding: 8px 24px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: 0 0 12px 12px;
}

.package-card.best-seller {
    border: 3px solid #4169E1;
    transform: scale(1.05);
}

.package-card.best-seller:hover {
    transform: scale(1.05) translateY(-15px);
}

.package-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0f3ff 0%, #fff5f0 100%);
}

.package-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-name {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.package-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.package-pricing {
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.package-price {
    font-size: 32px;
    font-weight: 800;
    color: #4169E1;
}

.package-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.package-discount {
    background: #e8eeff;
    color: #4169E1;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 11px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-features li {
    padding: 9px 0;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    color: #4169E1;
    font-weight: 800;
    font-size: 14px;
}

.package-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #4169E1;
    transform: translateY(-2px);
}

.package-card.best-seller .package-btn {
    background: #4169E1;
}

.package-card.best-seller .package-btn:hover {
    background: #000000;
}

/* ============ PROBLEM SECTION ============ */
.problem {
    padding: 100px 40px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #1a1a2e;
    font-weight: 800;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.problem-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border-left: 6px solid #4169E1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.problem-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #f0f3ff;
}

.problem-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 800;
}

.problem-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(65, 105, 225, 0.15);
}

.problem-closing {
    text-align: center;
    font-size: 17px;
    color: #1a1a2e;
    font-style: italic;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

/* ============ SOLUTION SECTION ============ */
.solution {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.solution h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a1a2e;
    font-weight: 800;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.solution-content {
    max-width: 1400px;
    margin: 0 auto;
}

.solution-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.solution-text {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
    font-weight: 500;
}

.solution-text p {
    margin-bottom: 20px;
}

.solution-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f0f3ff;
}

.comparison-title {
    text-align: center;
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 35px;
    font-weight: 800;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    border-top: 5px solid #4169E1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(65, 105, 225, 0.15);
}

.benefit-card p {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: 100px 40px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #1a1a2e;
    font-weight: 800;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
}

.step-number-circle {
    width: 70px;
    height: 70px;
    background: #4169E1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
}

.step-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #f0f3ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-content h4 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 800;
}

.step-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.how-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid #ecf0f1;
    color: #666;
    font-size: 15px;
    font-weight: 600;
}

/* ============ FEATURES SECTION ============ */
.features {
    padding: 100px 40px;
    background: linear-gradient(135deg, #000000 0%, #1C1F26 100%);
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    line-height: 1.3;
}

.features-subtitle {
    text-align: center;
    font-size: 18px;
    color: #C0C0C0;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: 16px;
    border-left: 5px solid #4169E1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #f0f3ff;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: white;
    font-weight: 800;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.7;
}

/* ============ USE CASES ============ */
.use-cases {
    padding: 100px 40px;
    background: #f8f9fa;
}

.use-cases h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 800;
    line-height: 1.3;
}

.use-cases-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border-top: 6px solid #4169E1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(65, 105, 225, 0.15);
}

.use-case-image {
    width: 100%;
    height: 260px;
    object-fit: fill;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #f0f3ff;
}

.use-case-card h4 {
    color: #4169E1;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 800;
}

.use-case-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 100px 40px;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #1a1a2e;
    font-weight: 800;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 70px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #4169E1;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.15);
}

.reviewer-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 3px solid #4169E1;
    background: #f0f3ff;
}

.stars {
    color: #4169E1;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    color: #4169E1;
    font-weight: 800;
    font-size: 13px;
}

.stats-section {
    background: white;
    padding: 45px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-item p {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
}

/* ============ FINAL CTA ============ */
.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #000000 0%, #1C1F26 100%);
    color: white;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 35px;
    font-weight: 800;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.3;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-end;
    max-width: 1300px;
    margin: 0 auto 40px;
}

.final-cta-text {
    text-align: left;
}

.final-cta-copy {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
    margin-bottom: 25px;
}

.final-cta-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: #f0f3ff;
}

.comparison-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-box h4 {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 800;
}

.comparison-list {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.offer-box {
    background: rgba(65, 105, 225, 0.2);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 35px;
    border: 2px solid rgba(65, 105, 225, 0.4);
}

.offer-box h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 800;
}

.offer-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    text-align: center;
}

.offer-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.risk-free {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    margin: 35px auto;
    max-width: 800px;
    border-left: 5px solid #4169E1;
}

.risk-free h4 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 800;
}

.risk-free p {
    font-size: 15px;
    line-height: 1.8;
}

.final-cta .cta-btn {
    background: white;
    color: #000000;
    font-weight: 800;
    padding: 18px 50px;
    font-size: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 14px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-btn:hover {
    background: #4169E1;
    color: white;
    transform: translateY(-3px);
}

.under-button {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 14px;
    text-align: center;
}

.urgency-line {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}

/* ============ FAQ SECTION ============ */
.faq {
    padding: 100px 40px;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #1a1a2e;
    font-weight: 800;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 5px solid #4169E1;
}

.accordion-header:hover {
    background: #ecf0f1;
}

.accordion-header h4 {
    color: #1a1a2e;
    font-size: 15px;
    margin: 0;
    font-weight: 700;
}

.accordion-toggle {
    font-size: 18px;
    color: #4169E1;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.accordion-header.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-text {
    padding: 22px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    background: white;
}

/* ============ SOCIAL PROOF POPUP ============ */
.social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 350px;
    z-index: 9999;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    border-left: 4px solid #4169E1;
}

.social-proof.show {
    transform: translateX(0);
}

.social-proof-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f3ff;
}

.social-proof-content {
    flex: 1;
}

.social-proof-text {
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.social-proof-name {
    color: #4169E1;
    font-weight: 700;
}

.social-proof-time {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

/* ============ FOOTER ============ */
footer {
    background: #1a1a2e;
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    color: #4169E1;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* margin-bottom: 20px; */
}

/* Footer logo styling - white filter */
.footer-logo-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.footer-phone {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-phone a {
    color: #4169E1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.footer-phone a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
    font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
        gap: 8px;
    }

    .logo {
        font-size: 18px;
    }

    /* Header logo responsive styling */
    .header-logo {
        max-width: 200px;
    }

    .offer-banner {
        font-size: 11px;
        padding: 6px 12px;
        margin: 0 5px;
        min-width: 150px;
    }

    .order-btn {
        font-size: 11px;
        padding: 8px 16px;
    }

    /* MODIFIED: Mobile hero layout - image first, then centered text */
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 30px;
    }

    .hero-right {
        order: -1; /* Move image to top */
    }

    .hero-left {
        text-align: center; /* Center all text content */
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 15px;
    }

    /* MODIFIED: Optimize pricing and countdown for mobile - horizontal layout */
    .price-tag {
        padding: 12px 16px;
        gap: 10px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .price-tag h3 {
        font-size: 16px;
        flex-direction: row;
        gap: 8px;
        align-items: baseline;
    }

    .price-sale {
        font-size: 20px;
    }

    .price-original {
        font-size: 12px;
    }

    .discount-badge {
        font-size: 10px;
        padding: 6px 10px;
        min-width: 55px;
    }

    .countdown-timer {
        margin-left: 0;
        gap: 6px;
        flex-shrink: 0;
    }

    .timer-box {
        padding: 6px 8px;
        min-width: 42px;
    }

    .timer-number {
        font-size: 16px;
    }

    .timer-label {
        font-size: 7px;
    }

    .trust-badges {
        justify-content: center;
    }

    .badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .cta-btn {
        padding: 14px 35px;
        font-size: 14px;
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
    }

    .packages-container,
    .problem-grid,
    .features-grid,
    .use-cases-grid,
    .how-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card.best-seller {
        transform: scale(1);
    }

    .package-card.best-seller:hover {
        transform: scale(1) translateY(-15px);
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .solution-two-col,
    .final-cta-content,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-image,
    .final-cta-image {
        height: 250px;
    }

    .step-image {
        max-width: 180px;
        height: 180px;
    }

    .packages h2,
    .how-it-works h2,
    .solution h2,
    .features h2,
    .use-cases h2,
    .testimonials h2,
    .faq h2,
    .final-cta h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features h2,
    .use-cases h2 {
        line-height: 1.3;
    }

    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .comparison-box,
    .offer-box {
        padding: 20px;
    }

    .comparison-list,
    .offer-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comparison-item,
    .offer-item {
        font-size: 13px;
        padding: 12px;
    }

    .stats-section {
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .accordion {
        gap: 10px;
    }

    .accordion-header {
        padding: 16px;
    }

    .accordion-header h4 {
        font-size: 14px;
    }

    .accordion-text {
        padding: 16px;
        font-size: 13px;
    }

    .social-proof {
        max-width: 280px;
        padding: 12px;
        bottom: 15px;
        left: 15px;
    }

    .social-proof-image {
        width: 50px;
        height: 50px;
    }

    .social-proof-text {
        font-size: 12px;
    }

    footer {
        padding: 40px 20px;
    }

    .footer-logo {
        font-size: 22px;
    }

    /* Footer logo responsive styling */
    .footer-logo-img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    /* Header logo extra small screen styling */
    .header-logo {
        max-width: 150px;
    }

    .offer-banner {
        font-size: 7px;
        padding: 5px 10px;
    }

    .order-btn {
        font-size: 10px;
        padding: 7px 14px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-left h1 {
        font-size: 26px;
    }

    .packages,
    .problem,
    .solution,
    .how-it-works,
    .features,
    .use-cases,
    .testimonials,
    .final-cta,
    .faq {
        padding: 50px 15px;
    }

    .social-proof {
        max-width: 260px;
    }

    /* Footer logo extra small screen styling */
    .footer-logo-img {
        max-width: 150px;
    }
}

/* Active user css*/
/* Active Users Counter Styles */
.active-users-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: white;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.active-users-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.active-users-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  }
}

.active-users-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.active-users-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.active-users-count {
  font-size: 1.3rem;
  font-weight: 900;
  color: #1A72EA;
  line-height: 1;
}

/* Hover Effect */
.active-users-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .active-users-container {
    bottom: 80px;
    right: 15px;
    padding: 10px 16px;
  }

  .active-users-count {
    font-size: 1.1rem;
  }

  .active-users-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .active-users-container {
    bottom: 20px;
    right: 15px;
    padding: 8px 14px;
  }

  .active-users-dot {
    width: 8px;
    height: 8px;
  }

  .active-users-count {
    font-size: 1rem;
  }

  .active-users-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 400px) {
  .active-users-container {
    bottom: 15px;
    right: 10px;
    padding: 6px 12px;
    z-index: 11111;
  }

  .active-users-dot {
    width: 7px;
    height: 7px;
  }

  .active-users-count {
    font-size: 0.9rem;
  }
}