/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.5;
    background-color: #f9f9f9;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Background Animation */
.global-bg-animation {
    position: fixed; /* Fixed to cover entire viewport while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Behind everything */
    pointer-events: none;
    background-color: #fff; /* Base white background */
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    background-color: transparent; /* Transparent to show global bg */
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

/* Hero Dotted Overlay */
.hero-dotted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind hero content but above global bg */
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px); /* Grey dots */
    background-size: 20px 20px; /* Spacing of dots */
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%); /* Fade out at bottom */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatShape 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #e0f2fe; /* Very light blue */
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #fef3c7; /* Very light yellow */
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #d1fae5; /* Very light green */
    top: 40%;
    left: 20%;
    animation-delay: -10s;
    opacity: 0.4;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 80px) scale(0.9);
    }
    100% {
        transform: translate(20px, -40px) scale(1.05);
    }
}

/* Hero Container (Centered Layout) */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2; /* Ensure content is above background avatars */
}

/* Removed Hero Background Avatars CSS */

.bg-avatar {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    opacity: 0.15; /* Transparency as requested */
    animation: float-bg 6s ease-in-out infinite;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Stagger animations for randomness */
.bg-avatar:nth-child(3n) { animation-duration: 7s; animation-delay: 0.5s; }
.bg-avatar:nth-child(3n+1) { animation-duration: 5s; animation-delay: 1.2s; }
.bg-avatar:nth-child(3n+2) { animation-duration: 6s; animation-delay: 2s; }

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

/* Hero Badge */
.hero-badge {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4B5563;
    margin-bottom: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.hero-badge .stat-item strong {
    color: #111827;
    font-weight: 700;
}

/* Hero Headline */
.hero-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    text-transform: uppercase;
    margin-bottom: 40px;
    max-width: 900px;
}

.hero-headline .highlight {
    font-size: 0.85em; /* Smaller font size for yellow background text */
    padding: 2px 12px;
    vertical-align: middle;
}

/* Highlight Effect (Yellow Background) */
.highlight {
    position: relative;
    display: inline-block;
    padding: 0 8px;
    z-index: 1;
}

.highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F7E018; /* Yellow similar to attachment */
    z-index: -1;
    border-radius: 4px; /* Optional slight rounding */
}

/* Hero Benefits (Below CTA) */
.hero-benefits {
    display: flex;
    flex-direction: row; /* Side by side */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    margin-top: 16px; /* Space from CTA */
}

.benefit-tag {
    font-size: 0.9rem;
    color: #000; /* Dark text for contrast */
    background-color: #ecfdf5; /* Light mint green background */
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: none;
    box-shadow: none; /* Flat style to match reference */
}

.benefit-tag svg {
    color: #10b981; /* Bright green icon */
    width: 18px; /* Slightly larger for visibility */
    height: 18px;
}

/* Hero Chart Full Width (Absolute Bottom) */
.hero-chart-container-full {
    width: 100%;
    height: 180px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden; /* Ensure it stays within bounds if needed, or visible for avatars */
    overflow-y: visible;
    overflow-x: hidden;
    z-index: 1; /* Above background, below interactive elements if any */
    pointer-events: none;
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
    margin-bottom: 60px;
    position: relative; /* Ensure absolute positioning works inside */
}

/* Sync button pulse with fake cursor animation */
.hero-cta-wrapper .btn-download {
    animation: btnPulseSync 4s ease-in-out infinite;
    animation-delay: 1s; /* Match cursor delay */
}

@keyframes btnPulseSync {
    0%, 45% { transform: scale(1); box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); }
    50% { transform: scale(0.95); box-shadow: 0 2px 5px rgba(0, 123, 255, 0.5); } /* Click impact */
    55%, 100% { transform: scale(1); box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); }
}

/* Mouse Cursor Animation */
.mouse-cursor-animation {
    position: absolute;
    top: 50%;
    left: 50%; /* Center relative to wrapper (button center) */
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    animation: mouseMoveToBtn 4s ease-in-out infinite;
    animation-delay: 1s; /* Start after fade-up */
}

/* Hide fake cursor on hover */
.hero-cta-wrapper:hover .mouse-cursor-animation {
    opacity: 0 !important;
    animation: none;
    display: none;
}

@keyframes mouseMoveToBtn {
    0% {
        opacity: 0;
        transform: translate(200px, 100px); /* Start further right and down */
    }
    20% {
        opacity: 1;
        transform: translate(100px, 50px); /* Move towards button */
    }
    40% {
        transform: translate(0, 0) scale(1); /* Hit the exact center */
    }
    50% {
        transform: translate(0, 0) scale(0.9); /* Click effect */
    }
    60% {
        transform: translate(0, 0) scale(1); /* Release click */
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(0, 0);
    }
}

/* Global Button Styles */
.btn-download {
    background-color: #007bff; /* Vibrant Blue */
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    font-size: 1rem;
    cursor: pointer;
}

.btn-download:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.btn-download svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-download:hover svg {
    transform: translateY(2px); /* Animate icon down */
}

/* Specific overrides for Section 9 (Blue background) */
.closing-cta-content .btn-download {
    background-color: #fff;
    color: #4f46e5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.closing-cta-content .btn-download:hover {
    background-color: #f8f9fa;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.closing-cta-content .btn-download svg {
    color: #4f46e5;
}

/* Hero Image 3D Effect */
.hero-image-container {
    width: 100%;
    max-width: 900px;
    perspective: 1200px;
    padding-bottom: 40px; /* Reduced from 120px */
}

.hero-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    /* Removed box-shadow */
    transform: rotateX(20deg) scale(0.9);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; /* Faster transition for scroll sync */
    background: transparent; /* Removed white background to match no-shadow style */
    will-change: transform;
}

.hero-image-3d {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Removed Hover effect */

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .hero-headline {
        font-size: 2rem; /* Reduced font size */
        margin-bottom: 24px; /* Reduced spacing */
    }

    .hero-badge {
        flex-direction: row; /* Force row layout */
        flex-wrap: nowrap; /* Prevent wrapping */
        gap: 8px; /* Slightly reduced gap */
        text-align: center;
        border-radius: 50px; /* Restore pill shape */
        margin-bottom: 24px;
        font-size: 0.65rem; /* Reduced font size significantly */
        padding: 6px 12px; /* Reduce padding */
        width: auto; /* Allow auto width */
        max-width: 100%; /* Ensure it fits screen */
        white-space: nowrap; /* Keep on one line */
    }
    .hero-badge .separator {
        display: inline-block; /* Show separator */
        margin: 0 2px; /* Tighten separator spacing */
    }

    /* Button Spacing Reduced */
    .hero-cta-wrapper {
        margin-bottom: 24px; 
    }
    
    .btn-download {
        padding: 12px 24px; /* Compact button */
    }

    /* Benefits Spacing */
    .hero-benefits {
        margin-bottom: 24px;
        margin-top: 10px;
    }

    /* Image above the fold */
    .hero-image-container {
        padding-bottom: 40px;
        margin-top: -10px;
    }

    /* Maintain 3D Effect */
    .hero-image-wrapper {
        transform: rotateX(20deg) scale(0.9);
    }
}
    transition: transform 0.2s ease;
    background-color: #E8F5E9;
    border: 1px solid #C8E6C9;
}

.benefits-list li:hover {
    transform: translateY(-2px);
}

/* Colorful Variations for Tags */
/* unify all tags colors to the same green */

.check {
    margin-right: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: transparent; /* Transparent background */
    padding: 0; /* Remove padding if not needed */
}

/* Specific check colors to match tags */
.benefits-list .check { color: #2E7D32; }

/* Mouse Scroll Indicator */
.mouse-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #333;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #333;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}

/* Hero Content Styling */
.headline {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
}

/* Highlight Effect (Yellow Background) */
.highlight {
    background-color: #F7E018; /* Yellow similar to attachment */
    padding: 0 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline; /* Ensures background wraps tightly */
}

.headline .highlight {
    display: inline-block;
    margin: 6px 0;
}

/* Hero Actions Container */
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 20px;
    margin-bottom: 32px;
}

/* Stats Tag Updates */
.stats-tag {
    background-color: #f0f0f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #555;
    border: 1px solid #e0e0e0;
    margin-bottom: 0; /* Reset margin */
    white-space: nowrap; /* Try to keep on one line if possible */
}

.stat-item strong {
    color: #000;
    font-weight: 700;
}

.separator {
    margin: 0 8px;
    color: #aaa;
}

/* CTA Button Updates */
.cta-button {
    background-color: #000; /* Strong contrast */
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 0; /* Reset margin */
    display: inline-flex;
    align-items: center;
    gap: 12px; /* Space between text and icon */
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Mobile Adjustments for Actions */
@media (max-width: 992px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-tag {
        white-space: normal; /* Allow wrapping on mobile */
        width: 100%;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Scroll Timeline Line REMOVED */

/* Button Pulse Click Animation */
.btn-download:active {
    animation: pulseClick 0.3s ease-out;
}

@keyframes pulseClick {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0.7); }
    50% { transform: scale(0.95); box-shadow: 0 0 0 10px rgba(0,0,0,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* Discovery Section Animation */
.discovery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.discovery-item.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.minimal-icon.icon-animate svg {
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
}

.discovery-item.animate-visible .minimal-icon.icon-animate svg {
    transform: scale(1);
}

/* Stagger Delays for Discovery Items */
.discovery-item:nth-child(1) { transition-delay: 0.1s; }
.discovery-item:nth-child(2) { transition-delay: 0.2s; }
.discovery-item:nth-child(3) { transition-delay: 0.3s; }
.discovery-item:nth-child(4) { transition-delay: 0.4s; }
.discovery-item:nth-child(5) { transition-delay: 0.5s; }
.discovery-item:nth-child(6) { transition-delay: 0.6s; }

/* Discovery Item Specific Delays for Icons (slightly after card) */
.discovery-item:nth-child(1) .minimal-icon.icon-animate svg { transition-delay: 0.3s; }
.discovery-item:nth-child(2) .minimal-icon.icon-animate svg { transition-delay: 0.4s; }
.discovery-item:nth-child(3) .minimal-icon.icon-animate svg { transition-delay: 0.5s; }
.discovery-item:nth-child(4) .minimal-icon.icon-animate svg { transition-delay: 0.6s; }
.discovery-item:nth-child(5) .minimal-icon.icon-animate svg { transition-delay: 0.7s; }
.discovery-item:nth-child(6) .minimal-icon.icon-animate svg { transition-delay: 0.8s; }

/* Metrics Section */
.metrics-section {
    padding: 40px 0 80px 0; /* Reduced top padding from 80px */
    background-color: transparent; /* Transparent to show global bg */
    text-align: center;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; /* For background avatars */
    overflow: hidden; /* Contain avatars */
}

/* Ensure content is above bubbles */
.metrics-section > .container {
    position: relative;
    z-index: 2;
}

/* Background Bubble Effect */
.metrics-bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Behind content */
    pointer-events: none;
}

.metrics-bubble {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    filter: grayscale(100%); /* Black and white */
    z-index: 0; /* Ensure it stays behind */
}

/* Bubble Animations */
@keyframes bubblePopIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); opacity: 0.4; } /* Max opacity reduced to 0.4 */
    100% { transform: scale(1); opacity: 0.3; } /* Stable opacity low */
}

@keyframes bubbleExplode {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Card Hover Check Icon */
.card-check-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background-color: #28a745; /* Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

.card-check-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 3px;
}

/* Trigger hover on all card types */
.metric-card:hover .card-check-icon,
.discovery-item:hover .card-check-icon,
.ranking-item:hover .card-check-icon,
.urgency-card:hover .card-check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Ensure cards have relative positioning */
.metric-card, .discovery-item, .ranking-item, .urgency-card {
    position: relative;
}

/* Background Floating Avatars (Updated) */
.metrics-bg-avatars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Behind content */
    pointer-events: none;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 48px;
    line-height: 1.2;
    position: relative; /* Ensure z-index works */
    z-index: 1; /* Bring to front as requested */
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.metric-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 32px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Required for z-index */
    z-index: 1; /* As requested */
    opacity: 0; /* Start hidden for animation */
    transform: translateY(30px); /* Start lower */
}

.metric-card.animate-visible {
    animation: fadeInUpCard 0.6s ease-out forwards;
}

/* Stagger delays for cards */
.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.metric-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem; /* Reduced from 2.5rem */
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1;
    white-space: nowrap; /* Ensure it stays on one line */
}

.metric-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    font-weight: 500;
}

.metrics-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem; /* Reduced from 1.1rem */
    color: #333;
    line-height: 1.6;
}/* Sliding Image Section 2 REMOVED */
.section-title-custom .title-highlight-wrapper {
    display: inline-block;
    transform: rotate(-2deg); /* Tilted highlight like reference */
    margin-top: 4px;
}

.section-title-custom .yellow-highlight {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 4px 16px;
    border-radius: 8px;
    font-size: 2.2rem;
    display: inline-block;
}

.section-title-custom .yellow-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFC107;
    z-index: -1;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.section-title-custom .title-top::before,
.section-title-custom .title-top::after {
    content: none; /* Remove previous lines if any */
}

/* Background Floating Avatars (Updated) */
.metrics-bg-avatars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Behind content */
    pointer-events: none;
}

.bg-avatar {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    opacity: 0.1; /* More transparency */
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    /* Scroll effect logic will be handled by JS or simple float */
    transition: transform 0.1s linear;
    will-change: transform;
}    position: relative;
    margin-bottom: 24px;
}

/* Lines removed as per user request */
.metrics-section .section-title .title-top::before,
.metrics-section .section-title .title-top::after {
    content: none;
}

.metrics-section .section-title .title-bottom {
    display: block;
}

/* Discovery Section */
.discovery-section {
    padding: 100px 0;
    background-color: transparent; /* Transparent to show global bg */
    text-align: center;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto; /* Two rows implicitly handled by auto, but explicit here for clarity */
    gap: 32px;
    text-align: center;
}

.discovery-item {
    background-color: #fff; /* White card */
    padding: 0; /* Padding handled by content areas */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Clip image corners */
    text-align: left; /* Align text left inside card as typically seen */
    border: 1px solid #f0f0f0; /* Very light border */
}

/* Discovery Footer Content (Subtitle + Button) */
.discovery-footer-content {
    margin-top: 60px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 32px; /* Centered, space below for button */
    line-height: 1.6;
}

.discovery-cta-wrapper {
    margin-top: 0; /* Reset margin as spacing is handled by subtitle */
}

/* Minimal Icon Styles */
.minimal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;  /* Fixed size for circle */
    height: 90px; /* Fixed size for circle */
    background-color: #fff; /* White background */
    border-radius: 50%; /* Circle shape */
    border: 2px dashed #ced4da; /* Serrated/Dashed border effect */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Subtle shadow */
    flex-shrink: 0; /* Prevent shrinking */
}

.minimal-icon svg {
    color: #6c757d; /* Grey color as requested */
    width: 48px; /* Standardized icon size inside circle */
    height: 48px;
    stroke-width: 1.5px;
}

/* Updated Card Image Placeholder to host icon */
.card-image-placeholder {
    width: 100%;
    height: 140px; /* Reduced from 180px */
    background-color: #f8f9fa; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    padding: 0;
}

/* Center text with padding in Discovery cards */
.discovery-content {
    padding: 24px 16px; /* Reduced padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; /* Fill remaining space */
}

.discovery-content h3 {
    font-size: 1.1rem; /* Smaller font size */
    margin-bottom: 8px;
}

.discovery-content p {
    font-size: 0.9rem; /* Smaller text */
    color: #666;
}

.minimal-icon {
    width: 70px;  /* Reduced from 90px */
    height: 70px; /* Reduced from 90px */
}

.minimal-icon svg {
    width: 36px; /* Reduced from 48px */
    height: 36px;
}

.discovery-btn {
    background-color: #007bff; /* Blue button */
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    transition: background-color 0.2s ease;
    display: inline-block;
    font-size: 1rem;
}

.discovery-btn:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 992px) {
    .discovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .discovery-grid {
        grid-template-columns: 1fr;
    }
}

/* Ranking Section */
.ranking-section {
    padding: 80px 0;
    background-color: transparent; /* Transparent to show global bg */
    text-align: center;
}

.ranking-wrapper {
    position: relative;
    max-width: 1000px; /* Increased from 800px */
    margin: 0 auto;
    overflow: hidden; /* contain blur edges */
    height: 500px; /* Increased height for scroll window */
}

/* Section 4 Ranking Cards Standardization */
.ranking-item {
    background-color: #f9f9f9; /* Match metrics card bg */
    border: 1px solid #eee; /* Match metrics card border */
    padding: 36px 28px; /* Increased padding */
    border-radius: 8px; /* Match metrics card radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* Increased spacing */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ranking-item:hover {
    transform: translateY(-5px); /* Hover effect like metrics */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.ranking-list {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 0; /* Gap handled by margin-bottom on items */
}

/* Keyframes for seamless scroll */
@keyframes scrollInfinite {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

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

.rank-left {
    display: flex;
    align-items: center;
    gap: 24px; /* Increased gap */
}

.rank-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem; /* Increased size */
    font-weight: 700;
    color: #999;
    min-width: 30px;
}

.rank-img {
    width: 72px; /* Increased from 60px */
    height: 72px; /* Increased from 60px */
    border-radius: 50%;
    object-fit: cover;
}

.rank-details {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensure details align left */
}

.rank-details h4 {
    font-size: 1.25rem; /* Increased from 1.1rem */
    margin-bottom: 6px;
    font-weight: 700;
    color: #000;
}

.rank-category {
    font-size: 0.95rem; /* Increased from 0.85rem */
    color: #666;
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.rank-metrics {
    display: flex;
    gap: 40px; /* Increased gap */
    font-family: 'Oswald', sans-serif;
    color: #555;
    font-size: 1.2rem; /* Increased size */
}

/* Overlay */
.ranking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.2); /* Very transparent to show blurred content */
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
}

.ranking-wrapper:hover .ranking-overlay {
    opacity: 1;
}

.lock-icon {
    background: #000;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.ranking-wrapper:hover .lock-icon {
    transform: scale(1);
}

.lock-text {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background-color: transparent; /* Transparent to show global bg */
    text-align: center;
}

.urgency-title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 48px;
    display: inline-block; /* Allow box-decoration-break to work better */
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center; /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center flex items */
    gap: 40px;
}

.alert-box {
    background-color: #fffbeb; /* Very light yellow match */
    border: 1px solid #fcd34d; /* Golden yellow border */
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.alert-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #78350f; /* Dark brown title */
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.alert-desc {
    font-size: 0.95rem;
    color: #92400e; /* Brown-orange description */
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.urgency-card {
    background-color: #f9f9f9; /* Match metrics card bg */
    border: 1px solid #eee; /* Match metrics card border */
    padding: 32px 20px; /* Match metrics card padding */
    border-radius: 8px; /* Match metrics card radius */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urgency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.urgency-card p {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

/* Reusing minimal-icon style from Section 3, ensuring it works here too */
.urgency-card .minimal-icon svg {
    width: 48px; /* Slightly smaller for these cards if needed, or keep 64px */
    height: 48px;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .metrics-section {
        min-height: 100vh; /* Force full screen */
        padding: 40px 0; /* Reduced padding */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .metrics-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 24px; /* Reduced spacing */
        white-space: pre-wrap; /* Allow custom formatting */
        line-height: 1.1; /* Reduced line height to remove gap */
    }

    .metrics-section .section-title .title-top {
        display: block;
        margin-bottom: 0; /* Remove margin between lines */
    }

    .metrics-section .section-title .title-highlight-wrapper {
        display: block;
    }

    .metrics-grid {
        grid-template-columns: 1fr; /* Stack cards */
        gap: 16px;
        margin-bottom: 24px; /* Reduced spacing */
    }

    .metric-card {
        padding: 20px 16px; /* Compact padding */
    }

    .discovery-section {
        padding: 60px 0;
    }

    .discovery-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }

    /* Format Discovery Headline on Mobile */
    .discovery-section .section-title br {
        display: block; /* Ensure break happens */
    }
    
    .discovery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards side by side */
        gap: 12px; /* Smaller gap for mobile */
    }

    /* Adjust discovery card content for smaller space */
    .discovery-content {
        padding: 16px 8px;
    }

    .discovery-content h3 {
        font-size: 0.95rem; /* Smaller font */
        line-height: 1.3;
    }

    .discovery-content p {
        font-size: 0.8rem;
        display: none; /* Hide description on mobile to save space if needed, or keep minimal */
    }

    /* Smaller icons for mobile grid */
    .discovery-item .card-image-placeholder {
        height: 80px; /* Reduced further from 100px */
    }

    /* Update ALL icons in mobile with padding and reduced size */
    .minimal-icon, 
    .cred-icon, 
    .transform-icon {
        width: 40px !important; 
        height: 40px !important;
        padding: 8px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box; /* Ensure padding doesn't increase size */
    }

    /* Ensure specific overrides don't conflict, force standardization */
    .discovery-item .minimal-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .minimal-icon svg, 
    .cred-icon svg, 
    .transform-icon svg {
        width: 20px !important; 
        height: 20px !important;
    }
    
    /* Override font-size for font-based icons if any */
    .cred-icon, .transform-icon {
        font-size: 20px !important; 
    }

    /* Section 5 (Urgency) Mobile Adjustments */
    .urgency-section .urgency-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .urgency-section .urgency-title br {
        display: block; /* Ensure title breaks */
    }

    .urgency-grid {
        grid-template-columns: 1fr !important; /* Force 1 card per row */
        gap: 16px;
    }

    /* Disable shuffle animation on mobile to ensure correct stacking */
    .urgency-card.card-shuffle {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Shuffle Animation for Urgency Cards */
.urgency-card.card-shuffle {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}

/* Initial state: Stacked in center */
.urgency-card.card-shuffle:nth-child(1) { transform: translate(100%, 0) rotate(5deg) scale(0.9); z-index: 1; }
.urgency-card.card-shuffle:nth-child(2) { transform: translate(0, 0) rotate(-5deg) scale(0.9); z-index: 2; }
.urgency-card.card-shuffle:nth-child(3) { transform: translate(-100%, 0) rotate(2deg) scale(0.9); z-index: 3; }

/* Final state: Unshuffled to grid positions */
.urgency-card.card-shuffle.animate-visible {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
}

/* Stagger delay for smoother effect */
.urgency-card.card-shuffle.animate-visible:nth-child(1) { transition-delay: 0s; }
.urgency-card.card-shuffle.animate-visible:nth-child(2) { transition-delay: 0.1s; }
.urgency-card.card-shuffle.animate-visible:nth-child(3) { transition-delay: 0.2s; }

/* Authority Section */
.authority-section {
    padding: 80px 0;
    background-color: transparent; /* Transparent to show global bg */
    text-align: center;
}

.authority-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.authority-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
}

.credibility-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

.cred-card {
    background-color: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

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

.cred-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.cred-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .credibility-cards {
        grid-template-columns: 1fr;
    }
}

/* Transform Section */
.transform-section {
    padding: 80px 0;
    background-color: transparent; /* Transparent to show global bg */
    text-align: center;
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.transform-item {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.transform-item:hover {
    transform: translateY(-5px);
    border-color: #F7E018; /* Yellow accent on hover */
}

.transform-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.transform-item p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .transform-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background-color: transparent; /* Revert to transparent */
    color: #333; /* Revert text color */
    text-align: center;
    position: relative; /* Context for absolute arrows */
    overflow: hidden; /* Contain arrows */
}

/* Arrows Container */
.cta-arrows-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-arrows-left, .cta-arrows-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}

.cta-arrows-left {
    left: 0;
}

.cta-arrows-right {
    right: 0;
}

.floating-arrow {
    position: absolute;
    color: rgba(0, 0, 0, 0.2); /* Darker arrows for light bg */
    opacity: 0; /* Start hidden */
}

/* Animations for arrows */
@keyframes arrowSlideRight {
    0% { transform: translateX(-100px) scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(50px) scale(1); opacity: 0; }
}

@keyframes arrowSlideLeft {
    0% { transform: translateX(100px) scale(0.5) rotate(180deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-50px) scale(1) rotate(180deg); opacity: 0; }
}

.final-title-custom {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.final-title-custom .yellow-highlight {
    color: #FFC107;
    font-weight: 700;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: transparent; /* Removed background */
    padding: 32px;
    border-radius: 12px;
    color: #333; 
    position: relative;
    z-index: 10;
    box-shadow: none;
    border: none; /* Removed border */
}

.security-text {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    flex-direction: column; /* Vertical layout 1 per line */
    gap: 12px; /* Spacing between badges */
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.security-text p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    background-color: #E6F4EA; /* Exact match light green */
    padding: 8px 16px; /* Padding back to original comfy size */
    border-radius: 4px; /* Slightly squarer radius like typical badges */
    color: #137333; /* Darker green text */
    font-weight: 500;
    font-size: 0.9rem; /* Restore readable size */
    border: none;
    width: auto; /* Let content define width, or max-content */
}

.security-text .icon {
    display: flex;
    align-items: center;
    color: #137333;
}

.security-text .icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

/* Transform Section Animation */
.transform-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.transform-animate.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.transform-animate.animate-visible .minimal-icon.icon-animate svg {
    transform: scale(1); /* Ensure icons pop in if they reuse icon-animate class */
}

/* Stagger Delays for Transform Cards */
.transform-animate:nth-child(1) { transition-delay: 0.1s; }
.transform-animate:nth-child(2) { transition-delay: 0.2s; }
.transform-animate:nth-child(3) { transition-delay: 0.3s; }
.transform-animate:nth-child(4) { transition-delay: 0.4s; }

/* Icon specific delays inside transform cards */
.transform-animate:nth-child(1) .minimal-icon.icon-animate svg { transition-delay: 0.3s; }
.transform-animate:nth-child(2) .minimal-icon.icon-animate svg { transition-delay: 0.4s; }
.transform-animate:nth-child(3) .minimal-icon.icon-animate svg { transition-delay: 0.5s; }
.transform-animate:nth-child(4) .minimal-icon.icon-animate svg { transition-delay: 0.6s; }

/* Closing CTA Section */
.closing-cta-section {
    padding: 80px 0;
    background-color: transparent; /* Transparent to show global bg */
    text-align: center;
}

.closing-cta-content {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%); /* Vibrant blue gradient */
    padding: 60px 40px;
    border-radius: 20px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.closing-cta-content::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.closing-cta-content::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.closing-cta-content .section-title {
    color: #fff;
    margin-bottom: 0;
    font-size: 1.5rem; /* Reduced from 2.5rem */
    line-height: 1.2;
}

.closing-cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem; /* Reduced from 1.1rem */
    max-width: 700px;
    margin-bottom: 8px;
    font-weight: 500;
}

.closing-cta-content .cta-button,
.closing-cta-content .btn-download {
    background-color: #fff;
    color: #4f46e5; /* Blue text */
    border-radius: 50px;
    padding: 12px 24px; /* Reduced padding */
    font-weight: 700;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 0.9rem; /* Reduced font size */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.closing-cta-content .cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.closing-cta-support {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Footer (copied structure fidelity; styled to match site tone) */
.footer {
    background-color: #000;
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 40px 0;
    text-align: center; /* Center alignment */
}

.footer-logo {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 16px; /* Center logo */
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center; /* Center flex items */
    gap: 8px;
}

.footer-social {
    display: flex;
    justify-content: center; /* Center social icons */
    gap: 8px;
    margin-top: 16px;
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-social a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-right: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    display: inline-block;
    padding: 6px 0;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 16px 0;
}

.footer-bottom p {
    color: #bbb;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    z-index: 1000;
    pointer-events: none;
}

.back-to-top:hover {
    background-color: #333;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Final CTA: Title styled as requested (Black text, yellow highlight) */
.final-cta-section .section-title.final-title-custom {
    display: inline-block;
    background: transparent;
    color: #000;
    padding: 0;
    border-radius: 0;
    transform: none;
    box-shadow: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: normal;
    margin-bottom: 0; /* Removed margin-bottom to clear spacing to form */
    line-height: 1.2;
    background-image: none;
    font-size: 2.5rem;
}

.final-cta-section .section-title.final-title-custom .yellow-highlight {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 4px 16px;
    border-radius: 8px;
    transform: rotate(-2deg);
    display: inline-block;
    margin: 4px 0;
}

.final-cta-section .section-title.final-title-custom .yellow-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFC107; /* Yellow */
    z-index: -1;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.final-cta-section .security-text {
    background: transparent;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-top: 16px;
    background-image: none;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

/* Mobile: Grid Layout (2 per row) */
@media (max-width: 576px) {
    .final-cta-section .security-text {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

.final-cta-section .security-text::after {
    content: none;
}

.final-cta-section .security-text p {
    background: #E6F4EA;
    border: 0;
    border-radius: 4px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; /* Restored size for desktop */
    color: #137333;
    display: inline-flex;
    flex-direction: row; /* Horizontal for desktop */
    gap: 10px;
    align-items: center;
    text-align: left;
    width: auto; /* Allow content width */
    margin: 0;
    justify-content: center;
    height: auto;
    line-height: 1.5;
}

/* Mobile: Stacked Layout inside Badge */
@media (max-width: 576px) {
    .final-cta-section .security-text p {
        font-size: 0.75rem !important;
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: 100%;
        line-height: 1.2;
        padding: 8px;
    }
}

.final-cta-section .security-text .icon {
    margin-bottom: 2px;
}

.final-cta-section .security-text .icon svg {
    width: 14px; /* Smaller icon */
    height: 14px;
}

/* Hero Chart Animation */
.hero-chart-container {
    width: 100%;
    height: 180px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: visible;
    z-index: 1;
    pointer-events: none; /* Allow clicks through */
}

.chart-line-svg {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
}

.chart-avatar {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: translate(-50%, -50%);
    background: #fff;
    animation: float-avatar 4s ease-in-out infinite;
}

.chart-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chart-avatar:nth-child(2) { animation-delay: 0.5s; }
.chart-avatar:nth-child(3) { animation-delay: 1.2s; }
.chart-avatar:nth-child(4) { animation-delay: 2.5s; }
.chart-avatar:nth-child(5) { animation-delay: 0.8s; }
.chart-avatar:nth-child(6) { animation-delay: 1.8s; }

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

/* Scroll Down Button in Metrics Section */
.scroll-down-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #000; /* Black */
    color: #fff;
    border-radius: 50%;
    margin-top: 40px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    transform: translateY(2px);
    background-color: #333; /* Darker Black/Grey */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
