:root {
    --primary: #4B87C5;
    --primary-hover: #1E2A78;
    --secondary: #4B5563;
    --secondary-hover: #374151;
    --background: #F8FAFC;
    --accent: #3B82F6;
    --text-primary: #111827;
    --text-muted: #6B7280;
    --text-white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Section Container - ADJUSTED TO 1300px */
.section-container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Fix Sticky CTA Bar Positioning */
.sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 0;
    z-index: 1000; /* Increased z-index to be above header */
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(75, 135, 197, 0.3);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

/* Adjust body padding to account for fixed elements */
body {
    padding-top: 0;
}

/* Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999; /* Lower than sticky CTA's 1000 */
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(75, 135, 197, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    max-width: 1300px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.35rem;
    margin-right: 14px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary);
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-success, .btn-outline-primary, .btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-width: auto;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(75, 135, 197, 0.3);
}

.btn-primary:hover {
    background: var(--text-white);
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 135, 197, 0.4);
    border-color: var(--primary-hover);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(75, 85, 99, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 85, 99, 0.4);
}

.btn-success {
    background: var(--success);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: #0da271;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    color: var(--text-white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    color:#1e2a78;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 135, 197, 0.3);
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 85, 99, 0.3);
}

/* Header Button */
.header-btn {
    padding: 12px 32px;
    font-size: 1.3rem;
    background-color: #3B82F6;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.header-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.header-btn:active {
    transform: translateY(0);
}

.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) {
    .header-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) {
    .header-btn {
        font-size: 0.8rem !important;
        padding: 8px 18px;
    }
    
    .guarantee-text {
        font-size: 9px !important;
        letter-spacing: 0.3px;
    }
    
    .phone-cta-wrapper {
        gap: 2px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .header-btn {
        font-size: 0.75rem;
        padding: 7px 14px;
    }
    
    .guarantee-text {
        font-size: 6px;
        letter-spacing: 0.2px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 50%, #E2E8F0 100%);
}
.etp{
    color:#3B82F6;
}
.hero-container {
    padding: 60px 0;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    margin-bottom: 16px;
}

/* REDUCED IMAGE SIZE */
.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(75, 135, 197, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(75, 135, 197, 0.3);
}

.stock-counter {
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: bold;
    display: inline-block;
    margin: 12px 0;
    animation: pulse 2s infinite;
    text-align: center;
    font-size: 0.9rem;
}

/* HERO BUTTONS - MADE LESS WIDE */
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-start;
}

.hero-main-btn, .hero-secondary-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    flex: 0 1 auto;
    min-width: 140px;
}

.hero-right {
    text-align: left;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    opacity: 0.8;
    font-style: italic;
}

/* Hero Special Offer - Compact Design */
.hero-special-offer-compact {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(75, 135, 197, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(75, 135, 197, 0.3);
    }
    50% {
        box-shadow: 0 0 24px rgba(75, 135, 197, 0.6);
    }
}

.offer-badge-compact {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--warning);
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.offer-content-compact {
    color: white;
    text-align: center;
}

.offer-title-compact {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.offer-pricing-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.original-price-compact {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.discounted-price-compact {
    font-size: 2.5rem;
    font-weight: bold;
}

.discount-percent-compact {
    background: var(--success);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.8rem;
}

.offer-btn-compact {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.offer-btn-compact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-cta-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-cta-btn, .hero-outline-btn {
    padding: 12px 20px;
    font-size: 1rem;
    position: relative;
    flex: 0 1 auto;
    min-width: 160px;
}

.urgency-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

.hero-bottom-cta {
    margin-top: 20px;
}

.hero-bottom-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* Modern Countdown Timer Design */
.countdown-container {
    background: transparent;
    color: var(--text-primary);
    padding: 0;
    border-radius: 0;
    text-align: center;
    margin: 25px 0;
    border: none;
    box-shadow: none;
}

.countdown-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.countdown-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.countdown-unit {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    min-width: 70px;
    backdrop-filter: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 135, 197, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    z-index: -1;
    border: 1px solid rgba(75, 135, 197, 0.15);
}

.countdown-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(75, 135, 197, 0.2);
    position: relative;
    display: inline-block;
    line-height: 1;
    padding: 10px 0 5px;
}

.countdown-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    opacity: 0.6;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Pulse animation for urgency */
@keyframes countdown-pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 2px 4px rgba(75, 135, 197, 0.2);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 4px 8px rgba(75, 135, 197, 0.4);
    }
}

.countdown-number.pulse {
    animation: countdown-pulse 2s infinite;
}

/* Floating animation for units */
@keyframes countdown-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.countdown-unit {
    animation: countdown-float 6s ease-in-out infinite;
}

.countdown-unit:nth-child(1) {
    animation-delay: 0s;
}

.countdown-unit:nth-child(2) {
    animation-delay: 1.5s;
}

.countdown-unit:nth-child(3) {
    animation-delay: 3s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(75, 135, 197, 0.08);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(75, 135, 197, 0.1);
}

.floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 45px;
    height: 45px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(75, 135, 197, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 12px rgba(75, 135, 197, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(75, 135, 197, 0);
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* CTA Animations */
.cta-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.cta-pulse {
    animation: pulse 2s infinite;
}

.cta-shake {
    animation: shake 5s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

.cta-float {
    animation: float-cta 6s ease-in-out infinite;
}

@keyframes float-cta {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Sticky CTA Bar - ENHANCED - KEEP ON TOP FOR MOBILE */
.sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 5px 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(75, 135, 197, 0.3);
    animation: pulse-glow 3s infinite;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    width: max-content;
    padding: 7px 20px;
    border-radius:20px;
}

.sticky-text {
    font-size: 1rem;
    flex: 1;
    text-align: left;
    font-weight: 600;
}

.sticky-bold {
    font-weight: bold;
}

.sticky-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.sticky-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Limited Offer Badge */
.limited-offer-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    animation: pulse 1.5s infinite;
}

/* Problem & Solution Section */
/* Problem & Solution Section - Mobile Layout Updates */
.problem-solution-section {
    padding: 60px 0;
    background: var(--background);
}

.problem-solution-grid, .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.problem-list, .solution-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.problem-item, .solution-item {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    opacity: 0.8;
    text-align: left;
}

.problem-icon, .solution-icon {
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1rem;
}

.problem-icon {
    color: var(--error);
}

.solution-icon {
    color: var(--success);
}

/* PROBLEM BUTTONS - MADE LESS WIDE */
.problem-buttons, .solution-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    text-align: left;
}

.problem-btn, .problem-outline-btn, .solution-btn, .solution-secondary-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    flex: 0 1 auto;
    min-width: 140px;
}

.solution-bottom-cta {
    margin-top: 16px;
}

.solution-bottom-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
}

.image-wrapper {
    position: relative;
}

/* REDUCED IMAGE SIZE */
.content-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-image:hover {
    transform: scale(1.02);
}

/* Mobile View Updates */
@media (max-width: 768px) {
    .problem-solution-grid, 
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* First Row: Problem Section - Image on top, then text */
    .problem-solution-grid {
        display: flex;
        flex-direction: column;
    }
    
    .problem-image {
        order: 1; /* Image comes first */
    }
    
    .problem-content {
        order: 2; /* Text comes after image */
        text-align: left;
    }
    
    .problem-list, .problem-item {
        text-align: left;
    }
    
    .problem-buttons {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .problem-btn, .problem-outline-btn {
        width: 100%;
        max-width: 280px;
        margin: 5px 0;
    }
    
    /* Second Row: Solution Section - Image on top, then text, then buttons */
    .solution-grid {
        display: flex;
        flex-direction: column;
    }
    
    .solution-image {
        order: 1; /* Image comes first */
    }
    
    .solution-content {
        order: 2; /* Text comes after image */
        text-align: left;
    }
    
    .solution-list, .solution-item {
        text-align: left;
    }
    
    .solution-buttons, .solution-bottom-cta {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    .solution-btn, 
    .solution-secondary-btn,
    .solution-bottom-btn {
        width: 100%;
        max-width: 280px;
        margin: 5px 0;
    }
    
    /* Adjust section titles for mobile */
    .section-title {
        font-size: 1.75rem;
        text-align: left;
        margin-bottom: 15px;
    }
    
    /* Adjust image sizes for mobile */
    .content-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    /* Adjust spacing for mobile */
    .problem-list, .solution-list {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .problem-item, .solution-item {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .problem-solution-grid, 
    .solution-grid {
        gap: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .problem-item, .solution-item {
        font-size: 0.9rem;
    }
    
    .problem-buttons, .solution-buttons {
        gap: 8px;
    }
    
    .problem-btn, .problem-outline-btn, 
    .solution-btn, .solution-secondary-btn,
    .solution-bottom-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: auto;
    }
    
    /* Stack buttons vertically on very small screens */
    .problem-buttons, .solution-buttons {
        flex-direction: column;
    }
    
    .content-image {
        border-radius: 10px;
    }
    .problem-solution-section{
        padding-bottom: 0!important;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .problem-solution-section {
        padding: 0px 0px 40px 0px;

    }
    
    .problem-solution-grid, 
    .solution-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .problem-item, .solution-item {
        font-size: 0.85rem;
    }
    
    .problem-icon, .solution-icon {
        margin-right: 8px;
        font-size: 0.9rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.how-it-works-card {
    background: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(75, 135, 197, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(75, 135, 197, 0.1);
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(75, 135, 197, 0.15);
    border-color: var(--primary);
}

.how-it-works-image-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 16px; */
}

.how-it-works-image {
    width: 100%;
    height: 100%;
    /* max-width: 180px;
    max-height: 180px; */
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works-card:hover .how-it-works-image {
    transform: scale(1.04);
}

.how-it-works-content {
    padding: 24px;
    color: white;
}

.how-it-works-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: white;
}

.how-it-works-description {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.5;
    color: white;
}

.how-it-works-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.how-it-works-btn, .how-it-works-secondary-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

.how-it-works-bottom-cta {
    text-align: center;
}

.how-it-works-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* Special Offer Section */
.special-offer-section {
    padding: 60px 0;
}

.special-offer-content {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 40px 28px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(75, 135, 197, 0.3);
    animation: pulse-glow 3s infinite;
    border: 1px solid rgba(75, 135, 197, 0.2);
    max-width: 1100px;
    margin: 0 auto;
}

.special-offer-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.special-offer-subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.special-offer-time {
    font-weight: bold;
}

.special-offer-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.special-offer-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.special-offer-btn, .special-offer-outline-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

/* Pricing Section - MOVED AFTER SOLUTION SECTION */
.pricing-section {
    padding-top:0;
    background: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-glow:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(75, 135, 197, 0.15);
    border-color: var(--primary);
}

.popular-card {
    border: 3px solid var(--primary);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--success);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.8rem;
}

.price-decimal {
    font-size: 1.25rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.feature-icon {
    color: var(--success);
    margin-right: 12px;
    font-size: 1rem;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.pricing-bottom-cta {
    text-align: center;
}

.pricing-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(75, 135, 197, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(75, 135, 197, 0.1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(75, 135, 197, 0.15);
    border-color: var(--primary);
}

.feature-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(75, 135, 197, 0.1);
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-container {
    background: var(--primary);
    color: white;
    transform: scale(1.08);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
}

.feature-description {
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    flex: 1;
}

.features-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.features-btn, .features-outline-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

/* From Dawn to Dusk Section */
.dawn-dusk-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
}

.dawn-dusk-header {
    text-align: center;
    margin-bottom: 60px;
}

.dawn-dusk-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

.dawn-dusk-subtitle {
    font-size: 1.25rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dawn-dusk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.dawn-dusk-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.dawn-dusk-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(75, 135, 197, 0.2);
    border: 3px solid var(--primary);
}

.dawn-dusk-card-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dawn-dusk-description {
    font-size: 1.125rem;
    color: white;
    line-height: 1.6;
    opacity: 0.95;
}

.dawn-dusk-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    margin-top:40px;
}

.dawn-dusk-btn, .dawn-dusk-outline-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

.dawn-dusk-bottom-cta {
    text-align: center;
}

.dawn-dusk-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

.circle-1 {
    top: 32px;
    left: 32px;
    width: 60px;
    height: 60px;
}

.circle-2 {
    bottom: 60px;
    right: 60px;
    width: 48px;
    height: 48px;
    animation-delay: 1s;
}

.circle-3 {
    top: 50%;
    left: 25%;
    width: 36px;
    height: 36px;
    animation-delay: 2s;
}

/* Steps Section */
.steps-section {
    padding: 60px 0;
    background: white;
}

.steps-container {
    position: relative;
    margin-bottom: 40px;
}

.timeline-line {
    position: relative;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin: 60px 0 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.timeline-line.animate::before {
    width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: -100px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 24px;
    position: relative;
    background: var(--primary);
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    margin-top: -15px;
}

.step-number {
    position: relative;
    z-index: 2;
}

.step-image-container {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-image-container:hover {
    transform: scale(1.04);
}

.step-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.step-description {
    opacity: 0.8;
    font-size: 1rem;
}

.steps-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.steps-btn, .steps-outline-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

.steps-bottom-cta {
    text-align: center;
}

.steps-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* Comparison Section - UPDATED FOR MOBILE ONLY */
.comparison-section {
    padding: 60px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(75, 135, 197, 0.1);
    position: relative;
    border: 1px solid rgba(75, 135, 197, 0.1);
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.comparison-table-inner {
    overflow-x: auto;
}

.comparison-table-content {
    width: 100%;
    border-collapse: collapse;
}

.features-header {
    padding: 24px;
    text-align: left;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-primary);
}

.our-brand-header {
    padding: 24px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.ordinary-header {
    padding: 24px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    background: #f8f9fa;
    color: var(--text-primary);
}

.comparison-row {
    border-top: 2px solid #f1f5f9;
}

.feature-name {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
}

.our-brand-cell, .ordinary-cell {
    padding: 20px 24px;
    text-align: center;
}

.our-brand-cell {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.ordinary-cell {
    background: #f8f9fa;
}

/* FIXED COMPARISON TABLE HOVER - REMOVED TRANSFORM THAT CAUSES SCROLL */
.comparison-check, .comparison-cross {
    font-size: 1.25rem;
}

.comparison-check {
    color: white;
}

.comparison-cross {
    color: var(--error);
}

.comparison-check-ordinary {
    color: var(--success);
}

.comparison-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.comparison-btn, .comparison-secondary-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

.comparison-bottom-cta {
    text-align: center;
}

.comparison-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    font-weight: bold;
    font-size: 1.125rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.faq-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-btn, .faq-outline-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

.faq-bottom-cta {
    text-align: center;
}

.faq-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* Conclusion Section */
.conclusion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E2A78, #0F1A5A);
    color: white;
    position: relative;
    overflow: hidden;
}

.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.text-white {
    color: white;
}

.conclusion-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.conclusion-main-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.conclusion-btn {
    padding: 16px 32px;
    font-size: 1.25rem;
    position: relative;
}

.guarantee-text {
    font-size: 1.125rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-icon {
    color: var(--success);
}

.conclusion-secondary-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.conclusion-secondary-btn, .conclusion-primary-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

.conclusion-bottom-cta {
    text-align: center;
}

.conclusion-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* Secure Section */
.secure-section {
    padding: 60px 0;
    background: white;
}

.secure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 50px;
}

.secure-arrow {
    position: absolute;
    top: 50%;
    color: var(--primary);
    font-size: 2.5rem;
    display: none;
}

.arrow-1 {
    left: 33.33%;
    transform: translate(-50%, -50%);
}

.arrow-2 {
    right: 33.33%;
    transform: translate(50%, -50%);
}

.secure-item {
    text-align: center;
}

.secure-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.secure-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-12deg);
}

.secure-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.secure-description {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.secure-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.secure-btn, .secure-secondary-btn {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 160px;
}

.secure-bottom-cta {
    text-align: center;
}

.secure-bottom-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
}


/* Reviews Section - Carousel Layout */
.reviews-section {
    padding: 60px 0;
    background: var(--background);
}

.reviews-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.review-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.review-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.review-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.review-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(75, 135, 197, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(75, 135, 197, 0.1);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(75, 135, 197, 0.15);
    border-color: var(--primary);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 6px 20px rgba(75, 135, 197, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(75, 135, 197, 0.3);
}

.review-user-info {
    flex: 1;
    min-width: 0;
}

.review-user-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.review-verified {
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 600;
}

.review-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
    flex: 1;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.star-rating {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Carousel Navigation */
.carousel-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(75, 135, 197, 0.3);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(75, 135, 197, 0.4);
}

.carousel-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary);
}

/* Remove old grid styles */
.reviews-grid {
    display: none;
}

/* Responsive adjustments for carousel */
@media (max-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .review-carousel-container {
        gap: 10px;
    }
    
    .review-slide {
        flex: 0 0 calc(100% - 10px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .review-card {
        padding: 24px 20px;
    }
    
    .review-header {
        gap: 15px;
    }
    
    .review-avatar {
        width: 60px;
        height: 60px;
    }
    
    .review-user-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .review-slide {
        flex: 0 0 100%;
    }
    
    .review-card {
        padding: 20px 16px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-user-info {
        text-align: center;
    }
    
    .carousel-btn {
        display: none; /* Hide buttons on very small screens */
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    animation: float-cta 4s ease-in-out infinite;
}

.floating-cta-btn {
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(75, 135, 197, 0.15);
    z-index: 1000;
    max-width: 380px;
    animation: slideInLeft 0.4s ease-out;
    display: none;
    border-left: 3px solid var(--primary);
    border: 1px solid rgba(75, 135, 197, 0.1);
}

.social-proof-popup.visible {
    display: block;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.social-proof-content {
    display: flex;
    align-items: center;
}

.social-proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.social-proof-text {
    font-size: 15px;
    color: var(--text-primary);
}

.social-proof-name {
    font-weight: bold;
    color: var(--primary);
}

.social-proof-location {
    font-size: 11px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 48px 0;
    background: linear-gradient(135deg, #1E2A78, #0F1A5A);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-content {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin-right: 12px;
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.6;
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

.desktop-only {
    display: block;
}

/* Header Three Pack Offer Styles - Horizontal Layout */
.header-offer {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53, #FF6B6B);
    background-size: 200% 200%;
    border-radius: 25px;
    padding: 8px 20px;
    margin: 0 20px;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
    min-width: 280px;
    height: 50px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.7);
    }
}

.offer-badge {
    position: absolute;
    top: -12px;
    right: 40%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    z-index: 2;
    animation: badgeBounce 2s ease infinite;
    white-space: nowrap;
}
.header-offer-badge{
    right: 35%!important;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    width: 100%;
    justify-content: space-between;
}

.offer-title {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.offer-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.regular-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    opacity: 0.9;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
}

.discount-percent {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hover effects */
.header-offer:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Responsive adjustments for the header offer */
@media (max-width: 1200px) {
    .header-offer {
        min-width: 250px;
        padding: 8px 16px;
        margin: 0 15px;
    }
    
    .offer-content {
        gap: 10px;
    }
    
    .offer-title {
        font-size: 0.85rem;
    }
    
    .sale-price {
        font-size: 1.1rem;
    }
    
    .regular-price {
        font-size: 0.8rem;
    }
    
    .discount-percent {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

@media (max-width: 1024px) {
    .header-offer {
        min-width: 230px;
        padding: 6px 14px;
        margin: 0 12px;
        height: 45px;
    }
    
    .offer-content {
        gap: 8px;
    }
    
    .offer-title {
        font-size: 0.8rem;
    }
    
    .sale-price {
        font-size: 1rem;
    }
    
    .regular-price {
        font-size: 0.75rem;
    }
    
    .discount-percent {
        font-size: 0.65rem;
    }
    
    .offer-badge {
        right: 10px;
        font-size: 0.65rem;
        padding: 2px 8px;
    }
}

@media (max-width: 900px) {
    .header-offer {
        min-width: 200px;
        padding: 5px 12px;
        margin: 0 10px;
        height: 42px;
    }
    
    .offer-content {
        gap: 6px;
    }
    
    .offer-title {
        font-size: 0.75rem;
    }
    
    .sale-price {
        font-size: 0.9rem;
    }
    
    .regular-price {
        font-size: 0.7rem;
    }
    
    .discount-percent {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    .offer-badge {
        right: 8px;
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

@media (max-width: 768px) {
    .header-offer.desktop-offer {
        display: none; /* Hide desktop offer on mobile */
    }
    
    .offer-display-mobile {
        display: flex !important;
    }
    
    .offer-badge{
        right: 30%;
        top: -9px;
    }
}

/* For very small screens where we might want to show a simplified version */
@media (max-width: 480px) {
    /* Optional: Show a simplified version on very small screens if needed */
    
    .header-offer {
        display: flex;
        min-width: auto;
        width: 100%;
        margin: 10px 0;
        border-radius: 12px;
        height: 40px;
    }
    
    .offer-content {
        justify-content: center;
        gap: 8px;
    }
    
    .offer-title {
        /* display: none; */
        font-size: 10px;
    }
    
    .offer-prices {
        gap: 5px;
    }
    
    .sale-price {
        font-size: 0.9rem;
    }
    
    .regular-price {
        font-size: 0.7rem;
    }
    
    .discount-percent {
        font-size: 0.65rem;
    }
    
    .offer-badge {
        right: 5px;
        top: -5px;
    }
    
}

/* Animation for when the offer becomes visible */
@keyframes slideInOffer {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-offer {
    animation: slideInOffer 0.5s ease-out, gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
}

.site-logo{
    filter: brightness(0) invert(1);
}

/* ==================== RESPONSIVE DESIGN - ALL FIXES ==================== */

/* Mobile Header Styles */
@media (max-width: 768px) {
    .fixed-header {
        padding: 0 16px;
        height: 70px;
    }

    .header-content {
        padding: 0.7rem 0;
        justify-content: space-between;
        gap: 10px;
    }

    .logo-container img {
        width: 120px !important;
    }

    .header-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: 80px;
    }
    .stock-counter{
        width: 90%;
        margin: 0 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Adjust hero section padding for mobile */
    .hero-section {
        padding-top: 140px; /* Increased to account for both header and sticky bar */
    }

    /* Hide desktop header offer on mobile */
    .header-offer.desktop-offer {
        display: none;
    }

    /* Show mobile offer in sticky bar */
    .offer-display-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .offer-display-mobile .header-offer {
        display: flex;
        min-width: auto;
        width: 100%;
        margin: 0;
        border-radius: 12px;
        height: 40px;
        padding: 6px 12px;
    }

    .offer-display-mobile .offer-content {
        justify-content: center;
        gap: 8px;
    }

    /* .offer-display-mobile .offer-title {
        display: none;
    } */

    .offer-display-mobile .offer-prices {
        gap: 5px;
    }

    .offer-display-mobile .sale-price {
        font-size: 0.9rem;
    }

    .offer-display-mobile .regular-price {
        font-size: 0.7rem;
    }

    .offer-display-mobile .discount-percent {
        font-size: 0.65rem;
    }

    .offer-display-mobile .offer-badge {
        right: 40%;
        top: -8px;
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .fixed-header {
        height: 65px;
        padding: 0 12px;
    }

    .logo-container img {
        width: 150px !important;
    }

    .header-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        min-width: 70px;
    }

    .hero-section {
        padding-top: 135px;
    }

    .sticky-cta-bar {
        padding: 6px 0;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo-container img {
        width: 90px !important;
    }
    
    .header-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
        min-width: 65px;
    }
    
    .hero-section {
        padding-top: 130px;
    }
}

/* Fix 2: Problem-Solution Section Mobile Layout */
@media (max-width: 768px) {
    .problem-solution-grid, 
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Keep text left-aligned for problem section */
    .problem-content {
        text-align: left;
    }
    
    .problem-list, .problem-item {
        text-align: left;
    }
    
    .problem-buttons {
        justify-content: flex-start;
        text-align: left;
    }
    
    /* Solution section mobile layout */
    .solution-grid {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .solution-content {
        order: 1;
        text-align: left; /* Keep text left-aligned */
    }
    
    .solution-image {
        order: 2;
    }
    
    .solution-list, .solution-item {
        text-align: left; /* Keep text left-aligned */
    }
    
    /* Center only the buttons in solution section on mobile */
    .solution-buttons, .solution-bottom-cta {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .solution-btn, 
    .solution-secondary-btn,
    .solution-bottom-btn {
        width: 100%;
        max-width: 280px;
        margin: 5px 0;
    }
}

/* Fix 3: Section Order - Pricing after Solution */
/* This is handled by HTML structure */

/* Fix 4: Comparison Section - Make smaller only on mobile */
@media (max-width: 768px) {
    .comparison-section .section-title-large {
        font-size: 1.8rem;
    }
    
    .comparison-table {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .comparison-table-content {
        font-size: 0.8rem;
    }
    
    .features-header,
    .our-brand-header,
    .ordinary-header {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .feature-name,
    .our-brand-cell,
    .ordinary-cell {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .comparison-table-inner {
        overflow-x: visible;
    }
}
.reviews-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:30px;
    margin-top: 50px;
}
.reviews-bottom-cta{
   display: flex;
   justify-content: center;
   margin-top: 20px;
}

/* General Responsive Design */
@media (max-width: 1200px) {
    .hero-grid,
    .problem-solution-grid,
    .solution-grid,
    .how-it-works-grid,
    .pricing-grid,
    .features-grid,
    .dawn-dusk-grid,
    .steps-grid,
    .secure-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .review-slide {
        flex: 0 0 50%;
    }

    .hero-main-image {
        max-width: 500px;
    }

    .how-it-works-image-container {
        height: 250px;
    }

    .secure-arrow {
        display: none;
    }

    .steps-grid {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .section-container {
        width: 95%;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta-buttons,
    .hero-buttons,
    .problem-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-btn,
    .hero-outline-btn,
    .hero-main-btn,
    .hero-secondary-btn,
    .problem-btn,
    .problem-outline-btn {
        max-width: 250px;
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-title-large {
        font-size: 1.75rem;
    }

    .dawn-dusk-title {
        font-size: 2rem;
    }

    .conclusion-title {
        font-size: 2rem;
    }

    .hero-main-image {
        max-width: 400px;
    }

    .how-it-works-image-container {
        height: 200px;
    }

    .pricing-card.popular-card {
        transform: scale(1);
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
        text-align: center;
    }

    .floating-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .sticky-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .desktop-only {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: -60px;
    }

    .timeline-line {
        margin: 40px 0 100px;
    }

    .step-circle {
        margin-top: -30px;
    }
    
    /* Pricing section mobile improvements */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    /* Reviews section mobile adjustments */
    .review-slide {
        flex: 0 0 100%;
    }
    
    .review-slider {
        width: calc(100% * 14); /* Keep doubled width for mobile */
        animation: autoScrollMobile 40s linear infinite;
    }
    
    @keyframes autoScrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 2));
        }
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title-large {
        font-size: 1.5rem;
    }

    .dawn-dusk-title {
        font-size: 1.75rem;
    }

    .conclusion-title {
        font-size: 1.75rem;
    }

    .hero-main-image {
        max-width: 320px;
    }

    .how-it-works-image-container {
        height: 280px;
    }

    .review-avatar {
        width: 60px;
        height: 60px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .btn-primary, .btn-secondary, .btn-success, .btn-outline-primary, .btn-outline-secondary {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    .floating-cta{
        display: none;
    }
    .site-logo{
        width: 200px;
    }

    .special-offer-buttons,
    .how-it-works-buttons,
    .features-buttons,
    .dawn-dusk-buttons,
    .steps-buttons,
    .comparison-buttons,
    .faq-buttons,
    .reviews-buttons,
    .secure-buttons {
        flex-direction: column;
        align-items: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: -40px;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-top: -25px;
    }

    .timeline-line {
        margin: 20px 0 80px;
    }
    
    /* Additional mobile fixes */
    .countdown-display {
        gap: 8px;
    }
    
    .countdown-unit {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .hero-special-offer-compact {
        padding: 15px;
    }
    
    .discounted-price-compact {
        font-size: 2rem;
    }
}


/* active user counter  */

/* 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;
  }

  .active-users-dot {
    width: 7px;
    height: 7px;
  }

  .active-users-count {
    font-size: 0.9rem;
  }
}