/* style.css */
/* Global Variables */
:root {
    --primary-color: #4a00e0;
    --secondary-color: #8e2de2;
    --accent-color: #00c9ff;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --text-light: #666;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, #92fe9d 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 0px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-xl {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.btn-xxl {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Exit Intent Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-popup:hover {
    color: var(--danger-color);
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.popup-description {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.popup-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.original-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.discounted-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--danger-color);
}

.popup-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

#countdown {
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text span:first-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.brand-text span:last-child {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    margin-right: 30px;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* Navbar Logo Styles */
.logo-container {
    height: 50px; /* Increased height */
    width: 180px; /* Increased width */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar-logo {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

/* Remove the filter that makes it white - keep original colors */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}


/* Update brand text styles */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text span {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: none; /* Hide text on desktop since we have logo */
}

.brand-text small {
    font-size: 0.7rem;
    opacity: 0.8;
    color: var(--text-light);
    display: none; /* Hide tagline on desktop */
}

/* Show text on mobile when logo might not display properly */
@media (max-width: 768px) {
    
    .brand-text span {
        display: block;
        font-size: 1.2rem;
    }
    
    .brand-text small {
        display: block;
    }
    
    .navbar-logo {
        filter: none; /* Remove invert filter on mobile for better visibility */
    }
    .navbar {
        min-height: 70px;
        padding: 10px 0;
    }
    
    .logo-container {
        height: 40px;
        width: 140px;
    }
    
    .navbar-collapse {
        top: 70px;
    }
}

@media (max-width: 576px) {
    .logo-container {
        height: 35px;
        width: 120px;
    }

    .navbar {
        min-height: 65px;
    }
    
    .navbar-collapse {
        top: 65px;
    }
    
    .brand-text span {
        font-size: 1rem;
    }
    
    .brand-text small {
        font-size: 0.6rem;
    }
}

/* Ensure navbar height accommodates logo */
.navbar {
    min-height: 70px;
    display: flex;
    align-items: center;
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
    .navbar-collapse {
        top: 70px; /* Adjust for logo height */
    }
}

@media (max-width: 992px) {
    .logo-container {
        height: 45px;
        width: 160px;
    }
}

/* Hero Section - Updated 2 Row Layout */
.hero-section {
    padding-top: 80px; /* Adjusted for fixed navbar */
}

.hero-heading-row {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.hero-heading-row .hero-title {
    font-size: 2.8rem;
    margin-bottom: 0;
    color: white;
}

.hero-heading-row .hero-title .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.hero-content-row {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image {
    flex: 1;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .hero-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.3rem;
}

.feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--success-color);
}

.guarantee-badge i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-heading-row .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-image, .hero-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-heading-row .hero-title {
        font-size: 2rem;
    }
    
    .hero-heading-row {
        padding: 30px 0;
    }
    
    .hero-content-row {
        padding: 40px 0;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-heading-row .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* What Is Section - 2 Row Layout */
.what-is-heading-row {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.what-is-heading-row .section-title {
    color: white;
    margin-bottom: 20px;
}

.what-is-heading-row .section-title::after {
    background: var(--gradient-secondary);
}

.what-is-heading-row .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.what-is-content-row {
    background-color: white;
    padding: 80px 0;
}

.what-is-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Column 1: Content with CTA */
.what-is-text {
    flex: 1;
}

.what-is-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
}

.what-is-text strong {
    color: var(--primary-color);
}

.key-points {
    margin: 2.5rem 0;
}

.key-point {
    display: flex;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.key-point i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.key-point h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.key-point p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

.cta-container {
    margin-top: 2.5rem;
}

/* Column 2: Product Image */
.what-is-image {
    flex: 1;
}

.brainwave-visualization {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.brainwave-visualization:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.brainwave-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.brainwave-graph {
    height: 200px;
    position: relative;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.wave {
    position: absolute;
    width: calc(100% - 40px);
    height: 30px;
    background: transparent;
    border-radius: 15px;
}

.gamma-wave {
    top: 40px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 5px,
        var(--primary-color) 5px,
        var(--primary-color) 10px
    );
    animation: wave-move 3s infinite linear;
    box-shadow: 0 2px 10px rgba(74, 0, 224, 0.3);
}

.beta-wave {
    top: 90px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        var(--secondary-color) 8px,
        var(--secondary-color) 16px
    );
    animation: wave-move 4s infinite linear;
    box-shadow: 0 2px 10px rgba(142, 45, 226, 0.3);
}

.alpha-wave {
    top: 140px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 12px,
        var(--accent-color) 12px,
        var(--accent-color) 24px
    );
    animation: wave-move 5s infinite linear;
    box-shadow: 0 2px 10px rgba(0, 201, 255, 0.3);
}

@keyframes wave-move {
    0% { background-position: 0 0; }
    100% { background-position: 100px 0; }
}

.brainwave-labels {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.label:nth-child(1) {
    border-left: 4px solid var(--primary-color);
}

.label:nth-child(2) {
    border-left: 4px solid var(--secondary-color);
}

.label:nth-child(3) {
    border-left: 4px solid var(--accent-color);
}

/* Responsive adjustments for What Is Section */
@media (max-width: 992px) {
    .what-is-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .what-is-heading-row .section-title {
        font-size: 2.2rem;
    }
    
    .what-is-heading-row {
        padding: 50px 0;
    }
    
    .what-is-content-row {
        padding: 60px 0;
    }
    
    .what-is-text, .what-is-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .what-is-heading-row .section-title {
        font-size: 1.9rem;
    }
    
    .what-is-heading-row .section-subtitle {
        font-size: 1.1rem;
    }
    
    .brainwave-labels {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .label {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .what-is-heading-row .section-title {
        font-size: 1.7rem;
    }
    
    .key-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .key-point i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .brainwave-graph {
        height: 180px;
    }
}

/* Science Section - 2 Row Layout */
.science-heading-row {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.science-heading-row .section-title {
    color: white;
    margin-bottom: 20px;
}

.science-heading-row .section-title::after {
    background: var(--gradient-secondary);
}

.science-heading-row .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.science-content-row {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.science-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Column 1: Product Image */
.science-image {
    flex: 1;
}

.science-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
}

.science-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 25px;
    text-align: center;
}

.card-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-header i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.card-content {
    padding: 30px;
}

.stat {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.stat:hover {
    transform: scale(1.05);
}

.stat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

/* Column 2: Content with CTA */
.science-text {
    flex: 1;
}

.science-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
}

.science-text strong {
    color: var(--primary-color);
}

.science-highlight {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.science-highlight h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.science-highlight h3 i {
    margin-right: 12px;
    font-size: 1.6rem;
    color: var(--accent-color);
}

.science-highlight ul {
    padding-left: 20px;
}

.science-highlight li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.science-highlight li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 2rem;
    line-height: 1;
    top: -2px;
}

.science-highlight strong {
    color: var(--primary-color);
}

.science-cta {
    margin-top: 2.5rem;
    text-align: left;
}

.science-cta .btn {
    width: 100%;
    max-width: 400px;
}

/* Responsive adjustments for Science Section */
@media (max-width: 992px) {
    .science-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .science-heading-row .section-title {
        font-size: 2.2rem;
    }
    
    .science-heading-row {
        padding: 50px 0;
    }
    
    .science-content-row {
        padding: 60px 0;
    }
    
    .science-image, .science-text {
        width: 100%;
    }
    
    .science-cta {
        text-align: center;
    }
    
    .science-cta .btn {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .science-heading-row .section-title {
        font-size: 1.9rem;
    }
    
    .science-heading-row .section-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .science-highlight li {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .science-heading-row .section-title {
        font-size: 1.7rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Benefits Section - 2 Row Layout */
.benefits-heading-row {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.benefits-heading-row .section-title {
    color: white;
    margin-bottom: 20px;
}

.benefits-heading-row .section-title::after {
    background: var(--gradient-secondary);
}

.benefits-heading-row .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.benefits-content-row {
    background-color: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 5px solid var(--accent-color);
}

.benefit-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.benefits-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.benefits-cta .btn {
    padding: 18px 45px;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.benefits-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
}

.benefits-cta-note i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Color variations for benefit cards */
.benefit-card:nth-child(1) .benefit-icon {
    color: #4a00e0;
}

.benefit-card:nth-child(2) .benefit-icon {
    color: #8e2de2;
}

.benefit-card:nth-child(3) .benefit-icon {
    color: #00c9ff;
}

.benefit-card:nth-child(4) .benefit-icon {
    color: #22c55e;
}

.benefit-card:nth-child(5) .benefit-icon {
    color: #f59e0b;
}

.benefit-card:nth-child(6) .benefit-icon {
    color: #ef4444;
}

/* Responsive adjustments for Benefits Section */
@media (max-width: 992px) {
    .benefits-heading-row .section-title {
        font-size: 2.2rem;
    }
    
    .benefits-heading-row {
        padding: 50px 0;
    }
    
    .benefits-content-row {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .benefits-heading-row .section-title {
        font-size: 1.9rem;
    }
    
    .benefits-heading-row .section-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .benefit-card h3 {
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .benefits-cta .btn {
        font-size: 1.2rem;
        padding: 16px 35px;
    }
}

@media (max-width: 576px) {
    .benefits-heading-row .section-title {
        font-size: 1.7rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
    }
    
    .benefits-cta .btn {
        width: 100%;
    }
}

/* How It Works Section - 2 Row Layout */
.how-it-works-heading-row {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.how-it-works-heading-row .section-title {
    color: white;
    margin-bottom: 20px;
}

.how-it-works-heading-row .section-title::after {
    background: var(--gradient-secondary);
}

.how-it-works-heading-row .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.how-it-works-content-row {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: white;
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-left: 5px solid transparent;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.step:nth-child(1) {
    border-left-color: #4a00e0;
}

.step:nth-child(2) {
    border-left-color: #8e2de2;
}

.step:nth-child(3) {
    border-left-color: #00c9ff;
}

.step:nth-child(4) {
    border-left-color: #22c55e;
}

.step:nth-child(5) {
    border-left-color: #f59e0b;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-right: 25px;
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
    transition: var(--transition);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(74, 0, 224, 0.4);
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.how-it-works-cta {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid var(--accent-color);
}

.how-it-works-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.how-it-works-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-cta .btn {
    padding: 18px 45px;
    font-size: 1.3rem;
}

/* Connector lines between steps */
.step::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 30px;
    width: 2px;
    height: 25px;
    background: var(--primary-color);
    opacity: 0.3;
}

.step:first-child::before {
    display: none;
}

/* Responsive adjustments for How It Works Section */
@media (max-width: 992px) {
    .how-it-works-heading-row .section-title {
        font-size: 2.2rem;
    }
    
    .how-it-works-heading-row {
        padding: 50px 0;
    }
    
    .how-it-works-content-row {
        padding: 60px 0;
    }
    
    .steps-container {
        max-width: 700px;
        margin-bottom: 50px;
    }
    
    .step {
        padding: 22px 25px;
    }
}

@media (max-width: 768px) {
    .how-it-works-heading-row .section-title {
        font-size: 1.9rem;
    }
    
    .how-it-works-heading-row .section-subtitle {
        font-size: 1.1rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .step::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .how-it-works-cta {
        padding: 30px 25px;
    }
    
    .how-it-works-cta h3 {
        font-size: 1.6rem;
    }
    
    .how-it-works-cta .btn {
        font-size: 1.2rem;
        padding: 16px 35px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .how-it-works-heading-row .section-title {
        font-size: 1.7rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .how-it-works-cta h3 {
        font-size: 1.4rem;
    }
    
    .how-it-works-cta p {
        font-size: 1rem;
    }
}

/* Testimonials Section - 2 Row Layout */
.testimonials-heading-row {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.testimonials-heading-row .section-title {
    color: white;
    margin-bottom: 20px;
}

.testimonials-heading-row .section-title::after {
    background: var(--gradient-secondary);
}

.testimonials-heading-row .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Overall Rating - Large & Bold */
.overall-rating-large {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.rating-number {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rating-out-of {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 5px;
}

.rating-stars-large {
    font-size: 2.2rem;
    color: #ffc107;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.rating-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-content-row {
    background-color: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.user-photo {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.user-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-card:hover .user-img {
    transform: scale(1.1);
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.user-role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.individual-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.individual-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-left: 5px;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 25px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    padding-left: 25px;
}

.testimonial-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.review-date {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-date i {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Full Width Testimonial Card */
.testimonial-card-full {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--accent-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card-full .testimonial-header {
    margin-bottom: 30px;
}

.testimonial-card-full .user-photo {
    width: 80px;
    height: 80px;
}

.testimonial-card-full .user-name {
    font-size: 1.3rem;
}

.testimonial-card-full .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* View All Reviews Button */
.view-all-reviews {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline i {
    margin-right: 8px;
}

/* Responsive adjustments for Testimonials Section */
@media (max-width: 992px) {
    .testimonials-heading-row .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-heading-row {
        padding: 50px 0;
    }
    
    .testimonials-content-row {
        padding: 60px 0;
    }
    
    .rating-number {
        font-size: 4rem;
    }
    
    .rating-stars-large {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .testimonial-card-full {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-heading-row .section-title {
        font-size: 1.9rem;
    }
    
    .testimonials-heading-row .section-subtitle {
        font-size: 1.1rem;
    }
    
    .rating-number {
        font-size: 3.5rem;
    }
    
    .rating-out-of {
        font-size: 1.8rem;
    }
    
    .rating-stars-large {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-card-full {
        padding: 25px;
    }
    
    .user-photo {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-card-full .user-photo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .testimonials-heading-row .section-title {
        font-size: 1.7rem;
    }
    
    .overall-rating-large {
        padding: 25px 20px;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-count {
        font-size: 1rem;
    }
    
    .user-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .btn-outline {
        width: 100%;
    }
}

/* FAQ Section - 2 Row Layout */
.faq-heading-row {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.faq-heading-row .section-title {
    color: white;
    margin-bottom: 20px;
}

.faq-heading-row .section-title::after {
    background: var(--gradient-secondary);
}

.faq-heading-row .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* FAQ Stats */
.faq-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.faq-content-row {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.faq-question {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--dark-color);
    line-height: 1.5;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: white;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* FAQ CTA */
.faq-cta {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid var(--accent-color);
}

.faq-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Responsive adjustments for FAQ Section */
@media (max-width: 992px) {
    .faq-heading-row .section-title {
        font-size: 2.2rem;
    }
    
    .faq-heading-row {
        padding: 50px 0;
    }
    
    .faq-content-row {
        padding: 60px 0;
    }
    
    .faq-stats {
        gap: 30px;
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .faq-container {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .faq-heading-row .section-title {
        font-size: 1.9rem;
    }
    
    .faq-heading-row .section-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-stats {
        flex-direction: column;
        gap: 25px;
        max-width: 300px;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer p {
        padding-bottom: 20px;
        font-size: 1rem;
    }
    
    .faq-cta {
        padding: 30px 25px;
    }
    
    .faq-cta-content h3 {
        font-size: 1.6rem;
    }
    
    .faq-cta-content p {
        font-size: 1rem;
    }
    
    .faq-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-heading-row .section-title {
        font-size: 1.7rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
        padding-right: 15px;
    }
    
    .faq-question i {
        font-size: 1.1rem;
    }
}

/* Pricing Section Styling */
.pricing-section {
    padding: 0;
}

/* Row 1: Blue Background Header */
.pricing-header-row {
    background: linear-gradient(135deg, #4a6bff 0%, #3a5bec 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.pricing-header-row .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-header-row .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timer Section Styles - Add to existing style.css */
.timer-row {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.timer-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.timer-container {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timer-header {
    margin-bottom: 30px;
}

.timer-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-header h3 i {
    font-size: 1.5rem;
    animation: pulse 1.5s infinite;
}

.timer-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.time-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.time-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.time-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.timer-progress {
    margin: 30px auto;
    max-width: 600px;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #ffcc00 100%);
    width: 100%;
    border-radius: 6px;
    transition: width 1s linear;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}

.progress-text span:last-child {
    color: #ffcc00;
}

.timer-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timer-notice i {
    color: #ffcc00;
    font-size: 1.3rem;
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% { transform: translateX(-2px); }
    100% { transform: translateX(2px); }
}

/* Responsive Timer Styles */
@media (max-width: 768px) {
    .timer-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 15px 10px;
    }
    
    .time-number {
        font-size: 2.8rem;
    }
    
    .time-label {
        font-size: 0.8rem;
    }
    
    .time-separator {
        font-size: 2rem;
    }
    
    .timer-notice {
        font-size: 1rem;
        padding: 12px;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .time-number {
        font-size: 2.2rem;
    }
    
    .timer-header h3 {
        font-size: 1.3rem;
    }
    
    .timer-subtitle {
        font-size: 1rem;
    }
}

/* Row 2: Pricing Content */
.pricing-content-row {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 50px;
    width: 100%;
    max-width: 900px;
    border: 3px solid #4a6bff;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #4a6bff 0%, #3a5bec 100%);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-card-header h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.original-price {
    font-size: 1.8rem;
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    font-size: 4.5rem;
    font-weight: bold;
    color: #4a6bff;
    line-height: 1;
    text-shadow: 0 3px 6px rgba(74, 107, 255, 0.2);
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

/* Product Image Styling - UPDATED */
.product-image-container {
    text-align: center;
    margin: 40px 0;
    padding: 0;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: block;
}

/* Two Column Features Layout */
.pricing-features-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #4a6bff;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #e9ecef;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #4a6bff;
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #2c3e50;
}

/* CTA Styling */
.pricing-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.btn-primary {
    background: linear-gradient(135deg, #4a6bff 0%, #3a5bec 100%);
    color: white;
    border: none;
    padding: 22px 50px;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 600px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 107, 255, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 107, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(74, 107, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 107, 255, 0); }
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.guarantee i {
    font-size: 1.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-methods img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 5px;
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.payment-methods img:hover {
    filter: grayscale(0%);
    transform: translateY(-3px);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6c757d;
    font-size: 1rem;
    margin-top: 25px;
}

.secure-checkout i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Bonuses Section */
.bonuses-section {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    border: 2px solid #f0f0f0;
}

.bonuses-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
}

.bonuses-title i {
    color: #ff4757;
    margin-right: 15px;
    font-size: 1.8rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.bonus-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 18px;
    transition: all 0.3s ease;
    border-left: 6px solid #4a6bff;
    align-items: flex-start;
}

.bonus-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

.bonus-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a6bff 0%, #3a5bec 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 16px rgba(74, 107, 255, 0.3);
}

.bonus-content h4 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.bonus-content p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-card {
        max-width: 800px;
        padding: 40px;
    }
    
    .pricing-features-two-col {
        gap: 30px;
    }
    
    .current-price {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .pricing-header-row {
        padding: 60px 0;
    }
    
    .pricing-header-row .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-header-row .section-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-content-row {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 30px;
        max-width: 95%;
    }
    
    .pricing-card-header h3 {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 3.5rem;
    }
    
    .pricing-features-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonuses-section {
        padding: 35px;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-item {
        padding: 25px;
    }
    
    /* Responsive Image Container */
    .product-image-container {
        height: 250px;
        margin: 30px 0;
    }
}

@media (max-width: 576px) {
    .pricing-header-row .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-header-row .section-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price-display {
        flex-direction: column;
        gap: 15px;
    }
    
    .original-price {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .discount-badge {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    
    .bonus-content h4 {
        text-align: center;
    }
    
    /* Mobile Image Container */
    .product-image-container {
        height: 200px;
        margin: 25px 0;
        border-radius: 12px;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.final-cta-buttons {
    margin-bottom: 2.5rem;
}

/* Secure Payment Image Styles */
.secure-payment-image {
    max-width: 800px;
    margin: 30px auto 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.secure-payment-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.secure-payment-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-note i {
    color: #00c9ff;
    font-size: 1.3rem;
    animation: lock-pulse 2s infinite;
}

@keyframes lock-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive adjustments for secure payment image */
@media (max-width: 768px) {
    .secure-payment-image {
        padding: 20px;
        margin: 25px auto 35px;
    }
    
    .payment-note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 0.95rem;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .secure-payment-image {
        padding: 15px;
        margin: 20px auto 30px;
    }
    
    .secure-payment-image img {
        border-radius: 8px;
    }
    
    .payment-note {
        font-size: 0.9rem;
    }
    
    .payment-note i {
        font-size: 1.1rem;
    }
}

/* White Button Styles */
.btn-white {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.3rem;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-white i {
    margin-right: 10px;
    color: var(--primary-color);
}

.cta-note {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 20px;
}

.final-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.final-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.final-feature i {
    font-size: 2rem;
    color: var(--accent-color);
}

.final-feature span {
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive adjustments for Final CTA Section */
@media (max-width: 992px) {
    .final-cta-content h2 {
        font-size: 2.3rem;
    }
    
    .final-cta-content p {
        font-size: 1.1rem;
    }
    
    .final-features {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .btn-white {
        padding: 18px 35px;
        font-size: 1.2rem;
        width: 100%;
        max-width: 400px;
    }
    
    .final-features {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .final-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .final-cta-content p {
        font-size: 1rem;
    }
    
    .btn-white {
        font-size: 1.1rem;
        padding: 16px 25px;
    }
    
    .cta-note {
        font-size: 1rem;
    }
    
    .final-feature span {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--accent-color);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-text span {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-brand-text small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-description {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.disclaimer {
    margin: 15px auto;
    max-width: 800px;
    line-height: 1.6;
}

.copyright {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content,
    .what-is-content,
    .science-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .works-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 0 0 20px;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 10px 0;
        display: block;
    }
    
    .nav-cta {
        width: 100%;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .final-features {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .popup-content {
        padding: 30px 20px;
    }
    
    .popup-content h2 {
        font-size: 1.7rem;
    }
}

/* Legal Pages Styling */
.legal-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.legal-header h1 i {
    font-size: 2.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h2 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.policy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.point {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.point i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.point h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.warning-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-box i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-top: 3px;
}

.email-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
}

.option:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.option i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.disclosure-list {
    list-style: none;
    padding-left: 0;
}

.disclosure-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.disclosure-list li:last-child {
    border-bottom: none;
}

.disclosure-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.location-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-section {
    text-align: center;
    padding: 40px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    margin-top: 50px;
}

.contact-section h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-section .btn {
    margin-top: 20px;
    background: white;
    color: var(--primary-color);
}

.contact-section .btn:hover {
    background: #f8f9fa;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .policy-points {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .location-tags {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
    }
}

/* Affiliate Disclaimer Specific Styles */
.disclaimer-alert {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-icon i {
    font-size: 3rem;
    color: #ffc107;
}

.alert-content h3 {
    font-size: 1.5rem;
    color: #856404;
    margin-bottom: 10px;
}

.affiliate-points {
    margin-top: 30px;
}

.affiliate-point {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.point-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.point-content h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.compensation-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    border: 2px solid #e9ecef;
}

.compensation-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.compensation-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.compensation-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
}

.compensation-details {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.detail i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.due-diligence {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.diligence-step {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
}

.diligence-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.diligence-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.testimonial-disclosure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.testimonial-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.testimonial-point i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-point h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Responsive Affiliate Styles */
@media (max-width: 768px) {
    .disclaimer-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .affiliate-point {
        flex-direction: column;
        text-align: center;
    }
    
    .point-number {
        margin: 0 auto;
    }
    
    .compensation-header {
        flex-direction: column;
        text-align: center;
    }
    
    .due-diligence {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Specific Styles */
.terms-notice {
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin-bottom: 40px;
}

.notice-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.notice-content h3 i {
    font-size: 1.8rem;
}

.entertainment-disclaimer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.disclaimer-point {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.disclaimer-point i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.disclaimer-point h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.sale-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sale-term {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
}

.sale-term:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.term-icon {
    flex-shrink: 0;
}

.term-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.term-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.restrictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.restriction {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--danger-color);
}

.restriction i {
    color: var(--danger-color);
    font-size: 1.3rem;
}

.restriction span {
    font-weight: 500;
}

.eligibility-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.eligibility-point {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.eligibility-point i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.eligibility-point h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.refusal-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 20px;
    border-left: 5px solid var(--warning-color);
}

.refusal-notice i {
    font-size: 2.5rem;
    color: var(--warning-color);
}

.jurisdiction-box {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    margin-top: 30px;
    border-left: 8px solid var(--primary-color);
}

.jurisdiction-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.jurisdiction-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.jurisdiction-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.jurisdiction-note i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-term {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.testimonial-term h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-term h4 i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Responsive Terms */
@media (max-width: 768px) {
    .sale-terms {
        grid-template-columns: 1fr;
    }
    
    .restrictions-grid {
        grid-template-columns: 1fr;
    }
    
    .jurisdiction-box {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-terms {
        grid-template-columns: 1fr;
    }
    
    .testimonial-term h4 {
        justify-content: center;
    }
}

/* Updated Contact Page Styles (Without Form) */
.contact-section-main {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-header h1 i {
    font-size: 2.8rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-methods-full {
    margin-bottom: 60px;
}

/* Primary Contact Card */
.primary-contact {
    margin-bottom: 50px;
}

.primary-contact-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
    display: flex;
    gap: 40px;
    align-items: center;
}

.primary-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-icon i {
    font-size: 3.5rem;
    color: white;
}

.primary-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.primary-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.email-address {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.email-address i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.email-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.response-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

/* ClickBank Support Section */
.clickbank-support-section {
    margin-bottom: 50px;
}

.clickbank-support-section h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.clickbank-support-section h3 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
}

.clickbank-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.clickbank-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.clickbank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.cb-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cb-icon i {
    font-size: 2rem;
    color: white;
}

.cb-content h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.support-hours {
    margin-top: 15px;
}

.support-hours p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.phone-numbers {
    margin: 15px 0;
}

.phone-numbers p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-numbers i {
    color: var(--primary-color);
}

.phone-numbers a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.phone-numbers a:hover {
    text-decoration: underline;
}

.cb-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cb-note i {
    color: var(--accent-color);
}

/* Additional Contact Info */
.additional-contact {
    margin-bottom: 50px;
}

.additional-contact h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.additional-contact h3 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-link {
    display: inline-block;
    padding: 10px 20px;
    background: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* FAQ Section */
.contact-faq {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-faq h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-faq h2 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Emergency Notice */
.emergency-notice {
    display: flex;
    gap: 25px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.notice-icon i {
    font-size: 2.5rem;
    color: #ffc107;
}

.notice-content h3 {
    font-size: 1.4rem;
    color: #856404;
    margin-bottom: 15px;
}

.notice-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.notice-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.notice-content a:hover {
    text-decoration: underline;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .primary-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .response-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .clickbank-cards {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .primary-contact-card {
        padding: 30px 20px;
    }
    
    .primary-icon {
        width: 100px;
        height: 100px;
    }
    
    .primary-icon i {
        font-size: 2.8rem;
    }
    
    .primary-content h2 {
        font-size: 1.8rem;
    }
    
    .email-link {
        font-size: 1.2rem;
    }
}

/* Return Policy Specific Styles */
.refund-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-icon i {
    font-size: 4rem;
    opacity: 0.8;
}

.refund-period {
    margin-top: 30px;
}

.period-card {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    border-left: 8px solid var(--success-color);
}

.period-icon {
    flex-shrink: 0;
}

.period-icon i {
    font-size: 3.5rem;
    color: var(--success-color);
}

.period-content h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.period-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.period-note i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.deadlines {
    margin-top: 30px;
}

.deadline-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid var(--warning-color);
}

.deadline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.deadline-header i {
    font-size: 1.8rem;
    color: var(--warning-color);
}

.deadline-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 0;
}

.shipping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.shipping-point {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
}

.shipping-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.shipping-icon {
    flex-shrink: 0;
}

.shipping-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.shipping-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.refund-steps {
    margin-top: 30px;
}

.refund-steps .step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.refund-steps .step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.refund-steps .step-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.important-notes {
    margin-top: 30px;
}

.note {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
}

.note i {
    font-size: 2rem;
    color: var(--danger-color);
    margin-top: 5px;
}

.note h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.contact-options .btn {
    padding: 15px 30px;
}

/* Responsive Return Policy */
@media (max-width: 768px) {
    .refund-hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .period-card {
        flex-direction: column;
        text-align: center;
    }
    
    .shipping-info {
        grid-template-columns: 1fr;
    }
    
    .refund-steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .refund-steps .step-number {
        margin: 0 auto;
    }
    
    .note {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-options .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}