/* =================================== */
/* Reset and Base Styles               */
/* =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563EB;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* =================================== */
/* Unified Section Header Styles        */
/* =================================== */
.features h2,
.pricing h2,
.blog-preview h2,
.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features .section-subtitle,
.pricing .section-subtitle,
.blog-preview .section-subtitle,
.testimonials .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* =================================== */
/* Blog Preview Section Styles          */
/* =================================== */
.blog-preview {
    padding: 80px 0;
    background: var(--bg-light); 
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-card .date {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.blog-card .excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .blog-preview {
        padding: 60px 0;
    }
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-download {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.btn-download:hover {
    background: #1D4ED8 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-color), #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #F97316;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.trust-indicators i {
    color: var(--secondary-color);
}

/* Excel Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.excel-mockup {
    background: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

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

.excel-header {
    background: #217346;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.excel-content {
    display: flex;
    height: 300px;
}

.excel-sidebar {
    background: #F3F2F1;
    padding: 1rem;
    width: 180px;
    border-right: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.feature-item:hover, .feature-item.active {
    background: #E8F0FE;
    color: var(--primary-color);
}

.excel-sheet {
    flex: 1;
    padding: 1rem;
    position: relative;
}

.sheet-header {
    display: flex;
    background: #F3F2F1;
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.sheet-header .cell {
    padding: 0.5rem;
    border-right: 1px solid var(--border-color);
    font-weight: 600;
    min-width: 120px;
}

.sheet-row {
    display: flex;
    border: 1px solid var(--border-color);
    border-top: none;
}

.sheet-row .cell {
    padding: 0.5rem;
    border-right: 1px solid var(--border-color);
    min-width: 120px;
}

.highlight-effect {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #8B5CF6);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.feature-card li::before {
    content: '✓';
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Bank Reconciliation Section */
.bank-recon {
    padding: 80px 0;
    background: var(--bg-white);
}

.bank-recon .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.recon-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.recon-features {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.recon-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.recon-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.recon-feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.recon-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
}

.demo-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.demo-container h4 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.before, .after {
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.before {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
}

.after {
    background: #D1FAE5;
    border: 1px solid #6EE7B7;
}

.before h5, .after h5 {
    margin-bottom: 1rem;
}

.before ul, .after ul {
    list-style: none;
    font-size: 0.875rem;
}

.before li::before {
    content: '✗';
    color: #EF4444;
    margin-right: 0.5rem;
}

.after li::before {
    content: '✓';
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.stars {
    color: #FCD34D;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.period {
    color: var(--text-light);
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list .fa-check {
    color: var(--secondary-color);
}

.features-list .fa-times {
    color: #EF4444;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.payment-methods {
    text-align: center;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-method i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #8B5CF6);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-actions {
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.cta-note {
    display: block;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Standalone Module Styles */
.standalone-module {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.standalone-module h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.module-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.module-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon i {
    font-size: 2.5rem;
    color: white;
}

.module-content {
    flex: 1;
}

.module-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.module-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.module-features i {
    color: var(--secondary-color);
}

.module-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1rem 0;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Pro Plus specific styles */
.pricing-card .price-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive for module */
@media (max-width: 768px) {
    .module-card {
        flex-direction: column;
        text-align: center;
    }
    
    .module-features {
        justify-content: center;
    }
}

/* Cookie Policy Styles */
.policy-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.policy-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.policy-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.policy-content {
    padding: 60px 0;
    background: var(--bg-light);
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.policy-nav {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.policy-nav h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-nav ul {
    list-style: none;
}

.policy-nav li {
    margin-bottom: 0.5rem;
}

.policy-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.policy-nav a:hover {
    color: var(--primary-color);
}

.policy-main {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.policy-section h4 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-dark);
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Cookie Types Grid */
.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.cookie-type-card:hover {
    transform: translateY(-2px);
}

.cookie-type-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cookie-type-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.cookie-type-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Usage List */
.usage-list {
    margin: 2rem 0;
}

.usage-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.usage-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.usage-item h4 {
    margin-bottom: 0.5rem;
}

/* Cookie Categories */
.cookie-categories {
    margin: 2rem 0;
}

.cookie-category {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-badge.required {
    background: #FEE2E2;
    color: #DC2626;
}

.cookie-badge.optional {
    background: #FEF3C7;
    color: #D97706;
}

.cookie-examples {
    margin-top: 1.5rem;
}

.cookie-examples h4 {
    margin-bottom: 0.5rem;
}

.cookie-examples ul {
    list-style: none;
    margin-left: 0;
}

.cookie-examples li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

.cookie-examples strong {
    color: var(--text-dark);
}

/* Cookie Table */
.cookie-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 0.875rem;
}

.cookie-type {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-type.required {
    background: #FEE2E2;
    color: #DC2626;
}

.cookie-type.performance {
    background: #DBEAFE;
    color: #1E40AF;
}

.cookie-type.functional {
    background: #D1FAE5;
    color: #065F46;
}

.cookie-type.advertising {
    background: #FED7AA;
    color: #9A3412;
}

/* Cookie Management */
.cookie-management {
    margin: 2rem 0;
}

.management-option {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.management-option h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.browser-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.browser-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.browser-link:hover {
    background: var(--primary-color);
    color: white;
}

.consent-demo {
    margin-top: 1rem;
}

.opt-out-links {
    list-style: none;
    margin-top: 1rem;
}

.opt-out-links li {
    margin-bottom: 0.5rem;
}

.opt-out-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.opt-out-links a:hover {
    text-decoration: underline;
}

/* Third Party Services */
.third-party-services {
    margin: 2rem 0;
}

.service-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.service-item h4 {
    margin-bottom: 0.5rem;
}

.service-item p {
    margin-bottom: 1rem;
}

/* Policy Updates */
.policy-updates {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.policy-updates h4 {
    margin-bottom: 1rem;
}

.policy-updates ul {
    list-style: none;
}

.policy-updates li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

/* Contact Methods */
.contact-methods {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-option {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.toggle-label input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    transition: 0.3s;
    flex-shrink: 0;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-label input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle-label input:checked + .toggle-slider:before {
    transform: translateX(25px);
}

.option-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.option-info small {
    color: var(--text-light);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Cookie Success Message */
.cookie-success {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-nav {
        position: static;
        order: 2;
    }
    
    .policy-main {
        order: 1;
        padding: 2rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .module-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-table {
        font-size: 0.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .policy-main {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .browser-links {
        flex-direction: column;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

.local-video-wrapper video {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-color: #000;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-content {
    padding: 60px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.team-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.commitment-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.commitment-item h3 {
    margin-bottom: 1rem;
}

/* Active navigation state */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer links color change */
.footer-links a,
.footer-bottom a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* If you want to target specifically the privacy policy links */
.footer-section ul li a[href*="privacy-policy.html"],
.footer-section ul li a[href*="terms-of-service.html"],
.footer-section ul li a[href*="cookie-policy.html"] {
    color: #ffffff !important;
}

/* Alternative: Target all footer section links */
.footer-section a {
    color: #ffffff !important;
}

.footer-section a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Bank Recon Advertisement Styles */
.bank-recon .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.recon-ad {
    position: sticky;
    top: 100px;
}

.ad-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.ad-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ad-container:hover .ad-image {
    transform: scale(1.05);
}

.ad-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ad-overlay i {
    font-size: 1.5rem;
}

.ad-container:hover .ad-overlay {
    background: rgba(37, 99, 235, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive design */
@media (max-width: 968px) {
    .bank-recon .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recon-ad {
        position: static;
        margin-top: 2rem;
    }
    
    .ad-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .ad-overlay {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .ad-overlay i {
        font-size: 1.2rem;
    }
}

/* ===================================
   ANIMATION ENHANCEMENTS
   =================================== */

/* 1. HERO SECTION ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Apply animations to hero elements */
.hero-content h1 {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-stats {
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-actions {
  animation: fadeInUp 0.8s ease-out 0.6s;
  animation-fill-mode: both;
}

/* Count up animation for download counter */
.stat-number {
  animation: countUp 1s ease-out 0.8s;
  animation-fill-mode: both;
}

/* 2. ENHANCED HOVER ANIMATIONS */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Pulse animation for download button */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn-primary {
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  animation: none;
  transform: translateY(-2px) scale(1.05);
}

/* 3. STAGGERED FEATURE ANIMATIONS */
.features-grid .feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.features-grid .feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.features-grid .feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.features-grid .feature-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.features-grid .feature-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.features-grid .feature-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* 4. NAVIGATION ANIMATIONS */
.nav-menu a {
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* 5. PRICING CARD ENHANCEMENTS */
@keyframes cardFlip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(0deg); }
}

.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  perspective: 1000px;
}

.pricing-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* 6. TESTIMONIAL SLIDE ANIMATIONS */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonials-grid .testimonial-card:nth-child(odd) {
  animation: slideInFromLeft 0.8s ease-out;
  animation-fill-mode: both;
}

.testimonials-grid .testimonial-card:nth-child(even) {
  animation: slideInFromRight 0.8s ease-out;
  animation-fill-mode: both;
}

/* 7. ICON ROTATIONS AND TRANSITIONS */
.feature-icon {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

/* 8. ENHANCED FLOAT ANIMATION */
@keyframes enhancedFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-10px) rotate(2deg); 
  }
  75% { 
    transform: translateY(-5px) rotate(-2deg); 
  }
}

.excel-mockup {
  animation: enhancedFloat 6s ease-in-out infinite;
}

/* 9. LOADING ANIMATIONS */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* 10. SCROLL ANIMATIONS */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scroll-animate {
  animation: fadeInScale 0.6s ease-out;
  animation-fill-mode: both;
}

/* 11. ACCESSIBILITY - REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn-primary {
    animation: none;
  }
}

/* 12. ENHANCED STICKY NAVIGATION */
.navbar {
  transition: all 0.3s ease;
}

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

/* 13. INTERSECTION OBSERVER ANIMATIONS */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 14. BUTTON RIPPLE EFFECT */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* 15. ENHANCED FORM FOCUS ANIMATIONS */
input:focus, textarea:focus, select:focus {
  animation: focusPulse 0.3s ease;
  outline: none;
}

@keyframes focusPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
}

/* =================================== */
/* NEW BLOG PREVIEW SECTION STYLES     */
/* =================================== */
.blog-preview {
    /* Uses the same padding and light background as the 'Features' and 'Testimonials' sections */
    padding: 80px 0;
    background: var(--bg-light); 
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-preview .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}



/* Style for the grid layout of the blog cards */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Reusing and consolidating styles for the individual blog cards */
.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-card .date {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.blog-card .excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card .read-more {
    /* Customizes the 'btn-outline' for a smaller 'read more' link */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .blog-preview {
        padding: 60px 0;
    }
}

.blog-content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.block-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.block-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.block-card h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.block-card p, .block-card ul {
    color: var(--text-light);
}

