/* Landing Page Style Guide - Modern Premium Light Design */

:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --primary-glow: rgba(79, 70, 229, 0.15);
    
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.15);
    
    --bg-main: #fafbfd;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(226, 232, 240, 0.8);
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.05), 0 0 1px 1px rgba(15, 23, 42, 0.02);
    --shadow-hover: 0 35px 60px -20px rgba(79, 70, 229, 0.12), 0 0 1px 1px rgba(79, 70, 229, 0.05);
    --radius-lg: 24px;
    --radius-md: 16px;
    
    --font-outfit: 'Outfit', 'Inter', sans-serif;
}

/* Base resets & layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-outfit);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Beautiful Animated Mesh Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(180deg, #f3f5fa 0%, #fafbfd 100%);
}

.mesh-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    mix-blend-mode: multiply;
    animation: mesh-float 25s infinite alternate ease-in-out;
}

.mc-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(129, 140, 248, 0) 70%);
    top: -150px;
    left: -150px;
    animation-duration: 22s;
}

.mc-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #a78bfa 0%, rgba(167, 139, 250, 0) 70%);
    bottom: -100px;
    right: -100px;
    animation-duration: 28s;
    animation-delay: -5s;
}

.mc-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #67e8f9 0%, rgba(103, 232, 249, 0) 70%);
    top: 35%;
    right: 15%;
    animation-duration: 24s;
    animation-delay: -12s;
}

@keyframes mesh-float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 40px) scale(1.15); }
    100% { transform: translate(-40px, 80px) scale(0.9); }
}

/* Sticky modern glass header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-img {
    max-height: 40px;
}

.logo-icon-default {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Glassmorphism elements */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(79, 70, 229, 0.4);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.2);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-grid > div {
    min-width: 0;
    width: 100%;
}

.hero-content {
    animation: slide-up 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1.5px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: reveal-scale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrap {
    width: 100%;
    max-width: 480px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.hero-image-wrap:hover .hero-img {
    transform: scale(1.02);
}

/* Floating interactive widgets on hero */
.floating-widget {
    position: absolute;
    z-index: 10;
    animation: bounce-float 6s infinite ease-in-out;
}

.fw-payout {
    bottom: -20px;
    left: -40px;
    width: 180px;
    padding: 1rem;
    animation-delay: -1.5s;
}

.fw-card {
    top: -20px;
    right: -20px;
    width: 160px;
    padding: 1rem;
    animation-delay: -3.5s;
}

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

/* Stats Section */
.stats-section {
    padding: 40px 0;
    position: relative;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
}

.fc-2 .feature-icon { background: rgba(6, 182, 212, 0.1); color: var(--secondary); }
.fc-3 .feature-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.fc-4 .feature-icon { background: var(--accent-glow); color: var(--accent); }
.fc-5 .feature-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.fc-6 .feature-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.feature-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Interactive Simulators Section */
.simulator-section {
    padding: 100px 0;
    background: rgba(248, 250, 252, 0.5);
    position: relative;
}

.sim-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

/* Live Checkout Simulator */
.terminal-widget {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: all 0.4s ease;
}

.terminal-widget:hover {
    box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.08), 0 0 0 1px rgba(79, 70, 229, 0.03);
}

.terminal-header {
    background: rgba(248, 250, 252, 0.5);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 1.1rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    letter-spacing: 0.25px;
}

.terminal-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.td-red { background: #ef4444; box-shadow: 0 0 6px rgba(239, 68, 68, 0.4); }
.td-yellow { background: #f59e0b; box-shadow: 0 0 6px rgba(245, 158, 11, 0.4); }
.td-green { background: #10b981; box-shadow: 0 0 6px rgba(16, 185, 129, 0.4); }

.terminal-body {
    padding: 2.25rem;
}

.sim-input-group {
    margin-bottom: 1.5rem;
}

.sim-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    letter-spacing: 0.8px;
}

.sim-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sim-currency {
    position: absolute;
    left: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.sim-input {
    width: 100%;
    padding: 0.9rem 1.1rem 0.9rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.checkout-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.25px;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.25);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.checkout-btn:hover {
    box-shadow: 0 12px 24px -5px rgba(79, 70, 229, 0.35);
}

/* Simulation Steps & Device Screen */
.checkout-modal-simulation {
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 18px;
    padding: 2.25rem;
    background: rgba(248, 250, 252, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1.75rem;
}

.checkout-modal-simulation.active {
    border-color: rgba(79, 70, 229, 0.2);
    background: #ffffff;
    box-shadow: inset 0 0 20px rgba(79, 70, 229, 0.02);
}

.lock-pulse-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.35);
    animation: lock-pulse-ring 2.2s infinite ease-out;
}

@keyframes lock-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.35); }
    70% { box-shadow: 0 0 0 15px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.ripple-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem auto;
    position: relative;
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.35);
    animation: ripple-pulse-ring 2.2s infinite ease-out;
}

@keyframes ripple-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.35); }
    70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* Premium Credit Card Mockup */
.frosted-payment-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 1.35rem 1.5rem;
    border-radius: 14px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.22), inset 0 1px 1px rgba(255,255,255,0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.frosted-payment-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0) 80%);
    transform: translateX(-100%);
    animation: card-shimmer 4s infinite linear;
}

@keyframes card-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card-emv-chip {
    width: 32px;
    height: 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    border-radius: 4px;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.card-emv-chip::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    background-image: 
        linear-gradient(90deg, transparent 50%, rgba(0,0,0,0.1) 50%),
        linear-gradient(0deg, transparent 50%, rgba(0,0,0,0.1) 50%);
    background-size: 6px 6px;
}

.checkout-modal-simulation.active {
    border-color: var(--primary-light);
    background: #ffffff;
}

.sim-screen-initial {
    text-align: center;
    color: var(--text-muted);
}

.sim-screen-initial i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: block;
}

.sim-screen-payment {
    width: 100%;
    max-width: 320px;
    display: none;
}

.sim-screen-success {
    display: none;
    text-align: center;
    animation: scale-up-center 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scale-up-center {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

/* API code viewer widget */
.api-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
    width: max-content;
}

.api-tab-btn {
    border: none;
    outline: none;
    background: transparent;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.api-tab-btn.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.code-window {
    background: #0f172a;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-titlebar {
    background: #1e293b;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-language {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.code-pane {
    display: none;
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #e2e8f0;
    overflow-x: auto;
}

.code-pane.active {
    display: block;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-premium);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 70, 229, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.15);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.plan-price {
    margin-bottom: 2.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    vertical-align: super;
}

.price-val {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -2px;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-feature-item i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.plan-feature-item.fee {
    background: rgba(16, 185, 129, 0.08);
    border: 1px dashed rgba(16, 185, 129, 0.2);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: #047857;
}

.plan-feature-item.fee i {
    color: #10b981;
}

/* Call-to-Action Fold */
.cta-section {
    padding: 80px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

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

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Footer styling */
.footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 3rem 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
@keyframes slide-up {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes reveal-scale {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Custom Confetti Elements */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
    outline: none;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Helper display tags */
.show-mobile {
    display: none !important;
}

.hide-mobile-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        margin: 0 auto 2.25rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .floating-widget {
        display: none !important;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem !important;
    }
    
    .code-window {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .code-pane {
        padding: 1.25rem 1rem !important;
        font-size: 0.8rem !important;
    }

    /* Floating Header Card */
    .header {
        position: fixed;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        width: calc(100% - 2rem);
        height: 70px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 20px;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        display: flex;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .header.scrolled {
        height: 70px;
        top: 0.5rem;
        box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.08);
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .hamburger-menu {
        display: flex;
    }
    
    .hide-mobile-flex {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
    
    /* Floating Menu Dropdown Card */
    .nav-menu {
        position: fixed;
        top: calc(1rem + 70px + 0.5rem);
        left: 1rem;
        right: 1rem;
        width: calc(100% - 2rem);
        height: auto;
        max-height: calc(100vh - 120px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 24px;
        box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
        padding: 2.25rem 1.75rem;
        display: flex;
        flex-direction: column;
        gap: 1.15rem;
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
    }
    
    .nav-menu .nav-link {
        font-size: 1.15rem;
        font-weight: 700;
        color: #334155;
        display: block;
        padding: 0.6rem 1rem;
        border-radius: 12px;
        transition: all 0.25s;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(79, 70, 229, 0.05);
        color: var(--primary);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    /* Hero scaling */
    .hero-section {
        padding: 130px 0 60px 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.85rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Stats & general structure */
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem;
    }
    
    .features-section, .simulator-section, .pricing-section, #developers {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .cta-banner {
        padding: 3.5rem 2rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   ENHANCED MODERN FINTECH UI COMPONENTS
   ========================================================================== */

/* Trust Ecosystem Bar */
.trust-bar {
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
}
.trust-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.85;
}
.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.trust-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
}

/* ==========================================================================
   GENIE-BUSINESS INSPIRED LAYOUT COMPONENTS (RETAINING BRAND THEME)
   ========================================================================== */

/* Subtle Geometric Polygonal Background Accents */
.poly-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.poly-left {
    position: absolute;
    left: -2%;
    top: 15%;
    width: 320px;
    height: 600px;
    opacity: 0.12;
}
.poly-right {
    position: absolute;
    right: -2%;
    top: 45%;
    width: 340px;
    height: 600px;
    opacity: 0.12;
}

/* Discover Section */
.discover-section {
    padding: 100px 0;
    position: relative;
}
.discover-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}
.discover-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.discover-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.text-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Hub & Spoke Ecosystem Diagram */
.hub-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}
.hub-center-phone {
    width: 220px;
    height: 320px;
    background: #ffffff;
    border-radius: 28px;
    border: 3px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.15), 0 0 0 8px rgba(248, 250, 252, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 1.5rem;
    text-align: center;
}
.hub-center-phone .phone-notch {
    position: absolute;
    top: 10px;
    width: 60px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
}
.hub-center-phone .brand-logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-main);
}
.hub-center-phone .brand-logo-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Spoke Nodes */
.hub-nodes-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
.hub-node {
    position: absolute;
    pointer-events: auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    width: 120px;
    text-align: center;
    z-index: 6;
}
.hub-node:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.15);
    border-color: var(--primary);
}
.hub-node i {
    font-size: 1.5rem;
    color: var(--primary);
}
.hub-node span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

/* Spoke Node Placements */
.node-top-left { top: 0; left: 10%; }
.node-top-right { top: 0; right: 10%; }
.node-mid-left { top: 35%; left: 0%; }
.node-mid-right { top: 35%; right: 0%; }
.node-bottom-left { bottom: 0; left: 10%; }
.node-bottom-right { bottom: 0; right: 10%; }

/* Connector SVG */
.hub-svg-connectors {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* Products Showcase Section */
.products-section {
    padding: 90px 0;
    position: relative;
}
.products-header {
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}
.products-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}
.products-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}
.product-img-box {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.product-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}
.product-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.carousel-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}
.carousel-arrow-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
}
.carousel-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--primary);
}

/* Spotlight Feature Rows (Screenshots 3 & 4) */
.spotlight-section {
    padding: 80px 0;
    position: relative;
}
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.spotlight-grid.reverse {
    direction: rtl;
}
.spotlight-grid.reverse > * {
    direction: ltr;
}
.spotlight-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.spotlight-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.spotlight-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}
.spotlight-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}
.spotlight-features li i {
    color: #10b981;
    font-size: 1.1rem;
}
.spotlight-visual-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Immersion "We're Ready When You Are" Banner (Screenshot 5) */
.ready-banner-section {
    padding: 60px 0 100px 0;
}
.ready-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 4.5rem 4rem;
    color: #ffffff;
    box-shadow: 0 30px 60px -15px rgba(30, 27, 75, 0.4);
}
.ready-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.25) 0%, rgba(129, 140, 248, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ready-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ready-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.ready-text h2 span {
    color: #a5b4fc;
}
.ready-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 540px;
}
.ready-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ready-phone-frame {
    width: 250px;
    height: 420px;
    background: #0f172a;
    border-radius: 36px;
    border: 5px solid #334155;
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.ready-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 8px;
    background: #334155;
    border-radius: 999px;
}

/* Floating Action Trigger Button */
.floating-contact-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.5);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}
.floating-contact-btn:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 35px -5px rgba(79, 70, 229, 0.6);
}

/* Pill buttons */
.btn-pill {
    border-radius: 999px !important;
    padding: 0.85rem 2rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
}

/* 3-Step Process */
.steps-section {
    padding: 90px 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}
.step-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(99, 102, 241, 0.3);
}
.step-number-badge {
    position: absolute;
    top: -18px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}
.faq-item.active {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.08);
}
.faq-header {
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    user-select: none;
}
.faq-header i {
    transition: transform 0.3s ease;
    color: var(--primary);
}
.faq-item.active .faq-header i {
    transform: rotate(180deg);
}
.faq-body {
    padding: 0 1.75rem 1.5rem 1.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}
.faq-item.active .faq-body {
    display: block;
}

@media (max-width: 992px) {
    .discover-grid, .spotlight-grid, .ready-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-card {
        flex: 0 0 calc(50% - 1rem);
    }
    .ready-banner {
        padding: 3rem 2rem;
    }
    .ready-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .trust-badges {
        gap: 0.75rem;
    }
    .hub-container {
        padding: 1rem 0;
        transform: scale(0.85);
    }
}



