:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --accent-color: #ec4899;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: -1;
    animation: pulse-glow 10s infinite alternate;
}

/* Ambient Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-blob 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-color), transparent);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #4f46e5, transparent);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #ec4899, transparent);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
}

.btn-nav {
    text-decoration: none;
    color: white;
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 5% 50px;
    text-align: center;
    perspective: 1000px; /* Enable 3D space */
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin-bottom: 20px;
}

.hero-visual {
    position: relative;
    width: 340px; /* Match card width */
    height: 215px; /* Match card height */
    z-index: 2;
    transform-style: preserve-3d; /* Allow children to be 3D */
    transition: transform 0.1s ease-out; /* Smooth follow */
    margin: 20px auto 0; /* Center horizontally */
}

.card-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #000);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    padding: 25px;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(10deg); /* Initial tilt */
    transition: transform 0.5s ease-out, box-shadow 0.5s ease;
}

/* When JS is active, remove default transition for smoother mouse follow */
.hero-visual.active-tilt .card-visual {
    transition: transform 0.1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.5);
}

.offer-highlight {
    color: #ffffff; /* Green for positive offer */
    font-weight: 700;
    display: inline-block;
    margin-top: 8px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.offer-text {
    color: #ffffff;
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Card Visual */
.hero-visual {
    margin-top: 20px;
    perspective: 1000px;
}

.card-visual {
    width: 340px;
    height: 215px;
    /* Smarter look: Glassmorphism with depth */
    background: radial-gradient(circle at 0% 0%, rgba(40, 40, 45, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    position: relative;
    padding: 25px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 30px rgba(99, 102, 241, 0.1); /* Subtle glow */
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-10deg);
    transition: transform 0.5s ease;
    overflow: hidden;
}

/* Shine effect */
.card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.05), 
        rgba(255,255,255,0.2), 
        rgba(255,255,255,0.05), 
        transparent
    );
    transform: skewX(-20deg);
    animation: card-shine 6s infinite;
    pointer-events: none;
}

@keyframes card-shine {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.card-visual:hover {
    transform: rotateX(0) rotateY(0) scale(1.05);
}

.card-chip {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37, #f9e076);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    z-index: 5;
}

/* Chip details */
.card-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 48%, rgba(0,0,0,0.15) 50%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(0,0,0,0.15) 50%, transparent 52%);
    background-size: 33% 100%, 100% 33%;
    border-radius: 6px;
}

.card-contactless {
    position: absolute;
    top: 30px;
    left: 90px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    transform: rotate(90deg);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.card-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    font-weight: 900;
    font-size: 1.8rem;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-number {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    font-size: 1.35rem;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    color: #e0e0e0;
    white-space: nowrap;
    z-index: 5;
}

.card-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Comparison Section */
.comparison {
    padding: 100px 5%;
    background: radial-gradient(circle at 50% 40%, rgba(99, 102, 241, 0.06), transparent 60%),
                linear-gradient(to bottom, var(--bg-color), #080808);
    position: relative;
}

.comparison .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-container {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Force equal height */
    gap: 0; /* Gap handled by margins or padding */
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 380px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto; /* Allow flex to control height */
}

/* Competitor Card Styling */
.comparison-card.competitor {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,0,0,0.2));
    opacity: 0.8;
}

.comparison-card.competitor .icon-box {
    background: rgba(255,255,255,0.1);
    color: #aaa;
}

/* Freedomia Styling */
.comparison-card.us {
    border-color: var(--primary-color);
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.1), rgba(0,0,0,0.3));
    /* Removed scale to match size */
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(99, 102, 241, 0.1);
}

.comparison-card.us .icon-box {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.plan-type {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature List */
.feature-list {
    list-style: none;
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.feature-list li:hover {
    background: rgba(255,255,255,0.03);
}

.feature-list li.critical {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.feature-list li.critical i {
    color: #ff4444;
}

.status-banner {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 38, 38, 0.9); /* Solid background for badge style */
    color: white;
    text-align: center;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 68, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: pulse-red 2s infinite;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Removed pseudo-element icon since we added it to HTML */

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

.btn-disabled {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.03);
    color: #555;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    margin-top: auto;
    cursor: not-allowed;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    user-select: none;
}

.feature-list li i {
    margin-top: 4px;
    font-size: 1.1rem;
}

.feature-list li div {
    display: flex;
    flex-direction: column;
}

.feature-list li strong {
    font-size: 1rem;
    color: #eee;
    margin-bottom: 2px;
}

.feature-list li span {
    font-size: 0.85rem;
    color: #888;
}

/* Status Colors */
.negative i { color: #ef4444; }
.neutral i { color: #fbbf24; }
.positive i { color: #10b981; }

/* VS Divider */
.vs-divider {
    z-index: 3;
    margin: 0 -25px; /* Overlap cards */
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-divider span {
    background: #000;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* Badge */
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
    .comparison-container {
        flex-direction: column;
        gap: 30px;
    }

    .comparison-card {
        width: 100%;
        max-width: 400px;
        border-radius: 24px !important; /* Reset border radius */
        border: 1px solid var(--glass-border) !important;
    }

    .comparison-card.us {
        transform: scale(1);
        order: -1; /* Show US first on mobile */
    }

    .vs-divider {
        margin: 0;
        transform: rotate(90deg); /* Vertical VS */
        display: none; /* Or hide it to save space */
    }
}

.btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 14px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* Scenario Analysis - Receipt Style */
.scenario-analysis {
    margin-top: 80px;
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.scenario-header {
    margin-bottom: 50px;
}

.scenario-analysis h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.scenario-desc {
    color: #aaa;
    font-size: 1.1rem;
}

.scenario-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Receipt Card */
.receipt-card {
    background: #f5f5f5;
    color: #333;
    width: 320px;
    padding: 25px 25px 40px; /* Extra bottom padding for jagged edge */
    position: relative;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.receipt-card.competitor {
    transform: rotate(-2deg);
    opacity: 0.9;
}

.receipt-card.us {
    transform: rotate(2deg) scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
}

.receipt-card.us:hover {
    transform: rotate(0deg) scale(1.1);
}

/* Jagged Edge (Sawtooth) */
.jagged-edge {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: #f5f5f5;
    background-image: linear-gradient(135deg, #f5f5f5 50%, transparent 50%), linear-gradient(45deg, #f5f5f5 50%, transparent 50%);
    background-position: bottom left;
    background-repeat: repeat-x;
    background-size: 20px 20px;
}

/* Receipt Content */
.receipt-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed #aaa;
    padding-bottom: 15px;
}

.receipt-header .vendor {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.receipt-header .date {
    font-size: 0.8rem;
    color: #666;
}

.receipt-body {
    margin-bottom: 20px;
}

.line-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.line-item.fee {
    color: #ef4444;
}

.receipt-card.us .line-item.fee {
    color: #10b981;
}

.receipt-divider {
    border-top: 1px dashed #aaa;
    margin: 15px 0;
}

.line-item.total {
    font-weight: 900;
    font-size: 1.2rem;
}

.receipt-footer {
    text-align: center;
    position: relative;
}

.fee-badge {
    display: inline-block;
    padding: 5px 10px;
    border: 2px solid;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    transform: rotate(-5deg);
}

.fee-badge.bad {
    color: #ef4444;
    border-color: #ef4444;
}

.fee-badge.good {
    color: #10b981;
    border-color: #10b981;
}

/* Stamp Effect */
.stamp-paid {
    position: absolute;
    top: -40px;
    right: 0;
    color: #10b981;
    border: 3px solid #10b981;
    padding: 5px 15px;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-15deg);
    opacity: 0.8;
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.5"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.5"/></svg>');
}

.scenario-vs {
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px var(--primary-color);
    z-index: 3;
}

.scenario-note {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 5% 100px;
    flex-wrap: wrap;
    text-align: center;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 10px;
}

.feature-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 5%;
    background: radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.08), transparent 50%),
                linear-gradient(to top, var(--bg-color), #0a0a0a);
    position: relative;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
    z-index: 2;
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    color: rgba(99, 102, 241, 0.1);
    transform: translateX(-50%) scale(1.1);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

/* Connecting Lines */
.step-line {
    display: none; /* Hide old lines */
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 65px; /* Center with icons */
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%
    );
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 768px) {
    .steps-container { flex-direction: column; gap: 40px; }
    .steps-container::before {
        width: 2px;
        height: 80%;
        left: 50%;
        top: 10%;
        background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    }
    .step-number { font-size: 5rem; }
}

.step-card h3 { 
    margin-bottom: 15px; 
    font-size: 1.4rem;
    color: white;
}
.step-card p { 
    color: #aaa; 
    font-size: 1rem; 
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05), transparent 60%),
                linear-gradient(to bottom, #0a0a0a, var(--bg-color));
}

.testimonials .section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    width: 350px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.5;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
}

/* FAQ */
.faq {
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #aaa;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Approximate max height */
    padding-bottom: 20px;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.fa-chevron-down {
    transition: transform 0.3s ease;
}

footer {
    background: #050505;
    padding: 80px 5% 30px;
    border-top: 1px solid var(--glass-border);
    color: #666;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #666;
    max-width: 300px;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.link-column a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.link-column a:hover {
    color: var(--primary-color);
}

.footer-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Changed from center */
    gap: 25px;
}

.accepted-networks {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Changed from center */
    gap: 15px;
}

.accepted-networks span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
}

.network-icons {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    color: #444;
}

.network-icons i {
    transition: color 0.3s ease;
}

.network-icons i:hover {
    color: var(--primary-color);
}

.system-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-green 2s infinite;
}

.system-status span {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes pulse-green {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #444;
    font-size: 0.9rem;
}
@keyframes pulse-glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes float {
    0% { transform: translateY(0px) rotateX(10deg) rotateY(-10deg); }
    50% { transform: translateY(-20px) rotateX(10deg) rotateY(-10deg); }
    100% { transform: translateY(0px) rotateX(10deg) rotateY(-10deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.badge-pill {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.sub-cta {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

/* Card Visual Updates */
.card-holder, .card-expiry {
    position: absolute;
    bottom: 25px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    color: #e0e0e0;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
    z-index: 5;
}

.card-holder { left: 25px; }
.card-expiry { right: 25px; text-align: right; }

.card-visual .label {
    display: block;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

.card-visual .value {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 60%);
    border-radius: 20px;
    animation: shine 6s infinite;
}

@keyframes shine {
    0%, 100% { background-position: -200% -200%; }
    50% { background-position: 200% 200%; }
}

/* Networks Section - Tech Stack Style */
.networks-section {
    padding: 60px 5%;
    text-align: center;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.section-header {
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #888;
    font-size: 1rem;
    line-height: 1.5;
}

.networks-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.network-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #888;
    padding: 8px 18px;
    background: rgba(255,255,255,0.03);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.network-item:hover {
    border-color: var(--primary-color);
    color: white;
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Value Prop / Bridge Section */
.value-prop-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    border-bottom: 1px solid var(--glass-border);
}

.prop-content {
    text-align: center;
    max-width: 700px;
}

.prop-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prop-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.prop-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

@media (max-width: 768px) {
    .prop-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .stat-divider {
        width: 50px;
        height: 1px;
    }
}

/* Usage Brands - Infinite Marquee */
.usage-brands {
    padding: 80px 0; /* Full width, no side padding for marquee */
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
    overflow: hidden;
}

.usage-brands .section-header {
    margin-bottom: 50px;
    padding: 0 5%;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move half the width (since we duplicate content) */
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 12px;
}

.brand-item i {
    font-size: 1.8rem;
}

.brand-item:hover {
    color: white;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Specific Brand Colors on Hover */
.brand-item:hover .fa-amazon { color: #ff9900; }
.brand-item:hover .fa-uber { color: #ffffff; }
.brand-item:hover .fa-spotify { color: #1db954; }
.brand-item:hover .fa-paypal { color: #003087; }
.brand-item:hover .fa-steam { color: #171a21; text-shadow: 0 0 10px #66c0f4; }
.brand-item:hover .fa-airbnb { color: #ff5a5f; }
}

.brand-item:hover i {
    animation: icon-shake 0.5s ease-in-out;
    color: var(--primary-color);
}

@keyframes icon-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes float-brand {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Feature Highlight Row (3DS) */
.feature-highlight-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 5%;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-text p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.feature-visual {
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 550px;
    background: #111;
    border-radius: 40px;
    border: 8px solid #333;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.phone-mockup .screen {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1614680376593-902f74cf0d41?q=80&w=1000&auto=format&fit=crop') center/cover;
    position: relative;
}

.phone-mockup .screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Lighter overlay */
    backdrop-filter: blur(2px);
}

.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.status-icons {
    display: flex;
    gap: 5px;
}

.notification-stack {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glass-notif {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    opacity: 0;
    animation: notif-slide-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.glass-notif.highlight-notif {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    transform: scale(1.02);
}

.icon-box-sm {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eee;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-box-sm.primary {
    background: var(--primary-color);
    color: white;
}

.icon-box-sm.success {
    background: #10b981;
    color: white;
}

.glass-notif .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 0.8rem;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.notif-header strong {
    font-weight: 700;
    font-size: 0.85rem;
}

.notif-header .time {
    color: #666;
    font-size: 0.7rem;
}

.code-reveal strong {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1.5s; } /* Main OTP comes later */
.delay-3 { animation-delay: 3.5s; }

@keyframes notif-slide-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from { top: -100px; opacity: 0; }
    to { top: 60px; opacity: 1; }
}

/* Crypto Ticker */
.crypto-ticker-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.2));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    margin-bottom: 80px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.crypto-ticker-container::before,
.crypto-ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.crypto-ticker-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.crypto-ticker-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.crypto-ticker {
    display: flex;
    width: fit-content;
    animation: ticker 60s linear infinite; /* Slower for more content */
    will-change: transform;
}

.ticker-content {
    display: flex;
    gap: 50px;
    padding-right: 50px; /* Ensure gap between blocks */
    white-space: nowrap;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #ccc;
    font-size: 1.1rem;
}

.crypto-item i {
    color: var(--primary-color);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move half the total width (2 of 4 blocks) */
}

/* Pricing Highlight */
.pricing-highlight {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow effect behind the card */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.pricing-header {
    margin-bottom: 50px;
    position: relative;
}

.pricing-header .tag {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.1);
}

.pricing-header h2 {
    font-size: 3.5rem;
    margin: 10px 0;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.price {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin: 20px 0 10px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.price .currency {
    font-size: 2.5rem;
    margin-top: 10px;
    margin-right: 5px;
    color: #888;
}

.price .period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}

.price-lock {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    width: fit-content;
    margin: 0 auto;
    padding: 6px 14px;
    border-radius: 20px;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    text-align: left;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-group h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e0e0e0;
}

.feature-group li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.feature-group li strong {
    color: white;
    font-weight: 600;
}

.feature-group li span {
    color: #999;
}

.highlight-fee {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), transparent);
    padding: 10px 15px;
    border-radius: 12px;
    border-left: 3px solid #10b981;
    margin-left: -15px; /* Pull out slightly */
}

.highlight-fee i {
    color: #10b981 !important;
}

.highlight-fee strong {
    color: #10b981 !important;
}

.pricing-card .btn-primary {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    font-size: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.5);
}

@media (max-width: 768px) {
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 25px;
    }
    
    .pricing-header h2 {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 4rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 5%;
    background: rgba(255,255,255,0.02);
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA */
.final-cta {
    padding: 100px 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Footer styles consolidated above */

/* Use Cases Section */
.use-cases {
    padding: 80px 5%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08), transparent 50%),
                linear-gradient(to bottom, #0a0a0a, var(--bg-color));
    position: relative;
}

.use-cases .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.use-case-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.use-case-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.use-case-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Monero Section */
.monero-section {
    padding: 100px 5%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 102, 0, 0.05), transparent 50%);
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.monero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.monero-text {
    flex: 1;
    max-width: 600px;
}

.monero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.monero-steps {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 10px;
}

.m-step .num {
    background: #ff6600;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.exchange-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    font-size: 1.5rem;
    color: white;
}

.coin-row {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Ultrawide & Large Screens */
@media (min-width: 1921px) {
    body {
        font-size: 18px; /* Scale up base font size */
    }
    
    /* Inner containers that need centering */
    .hero-content, 
    .comparison-container, 
    .features, 
    .use-cases-grid, 
    .monero-content, 
    .steps-container, 
    .reviews-grid, 
    .faq-container, 
    .cta-content, 
    .footer-content,
    .feature-highlight-row,
    .networks-grid {
        max-width: 1600px !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Sections with backgrounds that need content constraint via padding */
    .navbar,
    .stats-section,
    .value-prop-section {
        padding-left: max(5%, calc((100% - 1600px) / 2));
        padding-right: max(5%, calc((100% - 1600px) / 2));
    }

    /* Keep pricing card from getting too wide */
    .pricing-card {
        max-width: 1000px !important;
    }

    .hero {
        min-height: 60vh; /* Adjust hero height */
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .feature-highlight-row { flex-direction: column; text-align: center; }
    .feature-text { margin-bottom: 40px; }
    .feature-list li { justify-content: center; }
    .steps-container::before { display: none; } /* Hide horizontal line on tablet */
}

@media (max-width: 768px) {
    .hero { 
        padding-top: 140px; 
        padding-bottom: 80px; 
        min-height: auto; /* Allow content to dictate height */
    }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    /* Scale down card for tablets/mobile */
    .hero-visual {
        transform: scale(0.9);
        margin-top: 40px;
    }

    .crypto-ticker-container {
        margin-bottom: 60px; /* Slightly less space on mobile */
    }
    
    .stats-section { gap: 30px; }
    .stat-item { width: 45%; }
    
    .comparison-container { gap: 20px; }
    .comparison-card { width: 100%; }
    
    .steps-container { flex-direction: column; gap: 50px; }
    .step-card { width: 100%; padding: 0; }
    .step-number { font-size: 5rem; top: -30px; }
    
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { align-items: center; }
    .footer-social { justify-content: center; }
    
    .pricing-features { flex-direction: column; }
    .full-width { width: 100%; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .stat-item { width: 100%; }
    .cta-content h2 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    
    /* Further scale down for small phones */
    .hero-visual {
        transform: scale(0.8);
        width: 300px; /* Prevent overflow */
        height: 190px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-visual {
        width: 100%;
        height: 100%;
    }
    
    .crypto-ticker-container {
        padding: 15px 0;
    }
    
    .ticker-content {
        gap: 30px;
        padding-right: 30px;
    }
}

/* FixedFloat Link Styling */
.fixedfloat-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
    transition: all 0.3s ease;
}

.fixedfloat-link:hover {
    color: #fff;
    border-bottom-style: solid;
    text-shadow: 0 0 10px var(--primary-color);
}

/* Detailed Comparison Table */
.detailed-comparison {
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.table-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #ccc;
}

.last-updated {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    font-weight: 400;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.seo-table th, .seo-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.seo-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.seo-table .th-winner {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    border-bottom: 2px solid var(--primary-color);
}

.seo-table .td-winner {
    background: rgba(99, 102, 241, 0.05);
    color: #fff;
    font-weight: 500;
    position: relative;
}

.seo-table .td-winner::after {
    content: '✓';
    position: absolute;
    right: 15px;
    color: var(--primary-color);
    font-weight: 900;
}

.seo-table tr:last-child td {
    border-bottom: none;
}

.seo-table td:first-child {
    color: #aaa;
    font-weight: 500;
}

/* Exit Intent Modal */
.exit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #111;
    border: 1px solid var(--primary-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3);
    animation: scaleUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #fff;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-desc {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleUp { from { transform: scale(0.9); } to { transform: scale(1); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-20px);} 60% {transform: translateY(-10px);} }
