* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e293b;
    --secondary-color: #2563eb;
    --accent-color: #ef4444;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-color: #334155;
    --text-light: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --dark-bg: #0f172a;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.announcement-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.5s ease-out;
}

.announcement-text i {
    animation: pulse 2s infinite;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Enhanced Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cart {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: bounceIn 0.3s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* In Navigation Section */
.cta-button-nav {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.cta-button-nav:hover {
    background: linear-gradient(135deg, #4338ca 0%, #312e81 100%);
    color: white;
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* =========== ENHANCED HERO SECTION =========== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 100px;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg,
            #667eea 0%,
            #764ba2 25%,
            #f093fb 50%,
            #f5576c 75%,
            #b794f4 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600" opacity="0.03"><path fill="white" d="M200,150 Q250,100 300,150 T400,150 T500,150 T600,150 Q650,200 600,250 T500,250 T400,250 T300,250 Q250,300 300,350 T400,350 T500,350 T600,350 Q650,400 600,450 L200,450 Q150,400 200,350 L200,150 Z M300,200 L350,200 L350,250 L300,250 Z M450,200 L500,200 L500,250 L450,250 Z M300,300 L350,300 L350,350 L300,350 Z M450,300 L500,300 L500,350 L450,350 Z"/></svg>'),
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-size: 
        300% 300%,
        400px 300px,
        auto;
    background-position: 
        0% 50%,
        calc(100% - 50px) calc(100% - 50px),
        center;
    background-repeat: no-repeat;
    animation: gradientFlow 20s ease infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image: 
        linear-gradient(45deg, transparent 65%, rgba(255, 255, 255, 0.1) 75%, transparent 85%),
        linear-gradient(-45deg, transparent 65%, rgba(255, 255, 255, 0.1) 75%, transparent 85%);
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 
            0% 50%,
            calc(100% - 50px) calc(100% - 50px),
            center;
    }
    50% {
        background-position: 
            100% 50%,
            calc(100% - 100px) calc(100% - 100px),
            center;
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(67, 56, 202, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.6s ease-out 0.4s both;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    color: #f0e9ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.hero-description .highlight-keyword {
    font-weight: 700;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    padding: 2px 6px;
    border-radius: 4px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-description .highlight-secondary {
    font-weight: 600;
    color: #93c5fd;
    border-bottom: 1px solid rgba(147, 197, 253, 0.3);
}

/* Strategic Keywords Section */
.hero-keywords {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0 40px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.keyword-tag.indigo-bg {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    border: 1px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.keyword-tag.indigo-bg:hover {
    background: linear-gradient(135deg, #4338ca 0%, #312e81 100%);
    border-color: rgba(129, 140, 248, 0.7);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px);
}

.keyword-tag.indigo-bg i {
    color: #c7d2fe;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: white;
    margin-top: 8px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* =========== UPDATED BUTTONS =========== */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    animation: fadeInUp 0.6s ease-out 1.2s both;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary,
.cta-button.secondary {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
    border: 2px solid #6366f1;
}

.cta-button.primary:hover,
.cta-button.secondary:hover {
    background: linear-gradient(135deg, #4338ca 0%, #312e81 100%);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.6);
    transform: translateY(-3px) scale(1.02);
    border-color: #818cf8;
}

.cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

.cta-button.primary i,
.cta-button.secondary i {
    color: #c7d2fe;
}

.hero-trust {
    margin-top: 60px;
    animation: fadeInUp 0.6s ease-out 1.4s both;
}

.hero-trust p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #e0e7ff;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logos span {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(67, 56, 202, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.trust-logos span:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(67, 56, 202, 0.1));
    border-color: rgba(129, 140, 248, 0.5);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* C-suite Badge */
.csuite-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(67, 56, 202, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.csuite-badge i {
    font-size: 1.8rem;
    color: #818cf8;
}

.csuite-badge-text {
    text-align: left;
}

.csuite-badge-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.csuite-badge-text p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
    color: #e0e7ff;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Solutions Section - ORIGINAL BACKGROUND WITH BLUE CARDS */
.solutions {
    padding: 80px 0;
    background: var(--light-bg); /* Keep original background */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color); /* Original color */
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light); /* Original color */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* New Styles for Solutions Section - INDIGO GREEN BACKGROUND WITH WHITE TEXT */
.solution-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.solution-tag {
    background: #2E7D32; /* Indigo Green color */
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.solution-tag:hover {
    background: #1B5E20; /* Darker green on hover */
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Updated Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* BLUE CARDS - NEW STYLE */
.solution-card.blue-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); /* Blue gradient */
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.solution-card.blue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
    border-color: white;
}

.solution-card.blue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card.blue-card:hover::before {
    transform: scaleX(1);
}

.solution-card.blue-card .solution-icon {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.solution-card.blue-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.solution-card.blue-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    font-size: 0.85rem;
}

.solution-card.blue-card strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.solution-card.blue-card .solution-features {
    list-style: none;
    text-align: left;
    margin: 10px 0;
    padding: 0;
}

.solution-card.blue-card .solution-features li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.solution-card.blue-card .solution-features li:last-child {
    border-bottom: none;
}

.solution-card.blue-card .solution-features i {
    color: #4ade80;
    font-size: 0.8rem;
}

/* Make solution icons animated */
.solution-card.blue-card .solution-icon i {
    transition: transform 0.3s ease;
}

.solution-card.blue-card:hover .solution-icon i {
    transform: scale(1.1);
}

/* Solution stats styling */
.solution-card.blue-card .solution-stats {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-card.blue-card .solution-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.solution-card.blue-card .solution-stats i {
    color: white;
    font-size: 0.7rem;
}

/* Original solution cards (for other uses) */
.solution-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--secondary-color);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card .solution-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.solution-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    font-size: 0.85rem;
}

.solution-card strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.solution-card .solution-features {
    list-style: none;
    text-align: left;
    margin: 10px 0;
    padding: 0;
}

.solution-card .solution-features li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.solution-card .solution-features li:last-child {
    border-bottom: none;
}

.solution-card .solution-features i {
    color: var(--success-color);
    font-size: 0.8rem;
}

.solution-card .solution-stats {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.solution-card .solution-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
}

.solution-card .solution-stats i {
    color: var(--secondary-color);
    font-size: 0.7rem;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card,
    .solution-card.blue-card {
        height: auto;
        min-height: 250px;
    }
    
    .solution-cta {
        padding: 20px;
    }
}

/* Enhanced Playbooks Section */
.playbooks {
    padding: 100px 0;
    background: var(--white);
}

.playbooks h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.playbooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.playbook-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.playbook-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.playbook-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.playbook-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.playbook-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.playbook-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.playbook-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.playbook-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.playbook-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.playbook-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.playbook-features i {
    color: var(--success-color);
    font-size: 1rem;
}

.playbook-pricing {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.buy-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
    color: white;
    margin: 20px 0;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #1d4ed8, var(--secondary-color));
}

.buy-btn.added {
    background: var(--success-color);
}

.playbook-includes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.playbook-includes span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--light-bg);
    border-radius: 6px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 60s linear infinite;
    width: calc(320px * 23);
}

.testimonial-card {
    flex: 0 0 320px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 10));
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question.active {
    background: var(--secondary-color);
    color: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
    flex: 1;
}

.faq-question.active h3 {
    color: white;
}

.faq-question i {
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin-left: 15px;
}

.faq-question.active i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.faq-answer.active {
    padding: 30px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.faq-answer li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-answer em {
    color: var(--text-light);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="1000,1000 0,1000 0,0"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.cta-feature i {
    color: #4ade80;
    font-size: 1.2rem;
}

.cta-button.large {
    background: white;
    color: var(--secondary-color);
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.large:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.cart-modal {
    max-width: 600px;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

.selected-playbook {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.selected-playbook h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.pay-btn {
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #1d4ed8, var(--secondary-color));
}

.download-btn {
    background: var(--success-color);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.download-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.success-icon {
    text-align: center;
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-icon i {
    animation: bounceIn 0.6s ease;
}

.secure-notice {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-notice i {
    color: var(--success-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer Section */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-company h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul,
.footer-company ul {
    list-style: none;
}

.footer-links li,
.footer-company li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-company a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-company a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Payment Gateway Footer Styles - Bright & Attractive */
.footer-payment {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px 30px;
    border-radius: 24px;
    margin: 25px 0 15px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-payment h4 {
    color: #0f172a;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.footer-payment h4 i {
    color: #10b981;
    background: #d1fae5;
    padding: 10px;
    border-radius: 12px;
    font-size: 1.3rem;
}

.payment-gateways {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.payment-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.razorpay-logo {
    height: 40px;
    width: auto;
    filter: brightness(0.2);
    transition: all 0.3s ease;
}

.razorpay-logo:hover {
    transform: scale(1.05);
    filter: brightness(0.3);
}

.razorpay-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.razorpay-text i {
    color: #2563eb;
    font-size: 2rem;
}

.payment-badge {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.secure-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 10px 0 15px;
}

.secure-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.secure-badge:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1);
}

.secure-badge i {
    font-size: 1.2rem;
    color: #2563eb;
}

.secure-badge:nth-child(1) i { color: #2563eb; }
.secure-badge:nth-child(2) i { color: #8b5cf6; }
.secure-badge:nth-child(3) i { color: #f59e0b; }
.secure-badge:nth-child(4) i { color: #10b981; }

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 0;
    border-top: 2px dashed #e2e8f0;
    border-bottom: 2px dashed #e2e8f0;
    margin: 10px 0;
}

.payment-method {
    background: #ffffff;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.payment-method:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.payment-method:hover i {
    color: white !important;
}

.payment-method i {
    font-size: 1.4rem;
}

.payment-method:nth-child(1) i { color: #1a1f71; }
.payment-method:nth-child(2) i { color: #eb001b; }
.payment-method:nth-child(3) i { color: #006fcf; }
.payment-method:nth-child(4) i { color: #1a1f71; }
.payment-method:nth-child(5) i { color: #097a4d; }
.payment-method:nth-child(6) i { color: #f37021; }

.trust-stamp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px;
    background: linear-gradient(135deg, #dbeafe, #dcfce7);
    border-radius: 50px;
    border: 1px solid #2563eb20;
    margin-top: 15px;
}

.trust-stamp i {
    font-size: 1.4rem;
    color: #10b981;
    animation: pulse 2s infinite;
}

.trust-stamp span {
    background: linear-gradient(135deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .solutions-grid,
    .playbooks-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .testimonials-track {
        width: calc(300px * 23);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cart {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-logos {
        gap: 20px;
    }
    
    .trust-logos span {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .solutions-grid,
    .playbooks-grid {
        grid-template-columns: 1fr;
    }
    
    .playbook-card.featured {
        transform: none;
    }
    
    .playbook-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonials-track {
        animation: scrollTestimonialsMobile 40s linear infinite;
    }

    /* Payment Gateway Footer Responsive */
    .footer-payment {
        padding: 25px 20px;
    }
    
    .secure-badges {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-main {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-stamp {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .solution-card,
    .playbook-card {
        padding: 30px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

    /* Payment Gateway Footer Mobile */
    .footer-payment {
        padding: 20px 15px;
    }
    
    .secure-badges {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .razorpay-text {
        font-size: 1.4rem;
    }
}

@keyframes scrollTestimonialsMobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 10));
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Selection Styling */
::selection {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
}

/* Focus Outline */
:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}

/* Print Styles */
@media print {
    .navbar,
    .announcement-bar,
    .footer,
    .cta-section,
    .hero-actions,
    .buy-btn,
    .footer-payment {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .hero,
    .solutions,
    .playbooks,
    .testimonials,
    .faq {
        padding: 20px 0;
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .section-header h2,
    .playbook-card h3,
    .solution-card h3 {
        color: black !important;
    }
    
    .playbook-card,
    .solution-card,
    .testimonial-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
}
