:root {
    /* Brand Colors - Ultra Premium */
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1e40af;
    --primary-glow: rgba(37, 99, 235, 0.5);

    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.5);

    /* Backgrounds - Deep, rich dark mode */
    --bg-base: #020617;
    /* Very dark slate */
    --bg-surface: rgba(15, 23, 42, 0.5);
    --bg-surface-hover: rgba(30, 41, 59, 0.7);

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;

    /* Glassmorphism settings */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-highlight: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(16px);

    /* Layout */
    --container-width: 1200px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Background Mesh & Glows (The Wow Factor)
   ========================================================================== */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-base);
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: moveBlobs 20s infinite alternate;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0e7490 0%, transparent 70%);
    /* Deep cyan twist */
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
    /* Subtle purple */
    animation-delay: -10s;
}

@keyframes moveBlobs {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-5%, -5%) scale(0.9);
    }
}

/* ==========================================================================
   Glassmorphism Components
   ========================================================================== */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.premium-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(37, 99, 235, 0.1);
}

.hover-glow:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-highlight);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
}

/* ==========================================================================
   Typography & Badges
   ========================================================================== */
h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h1 span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

p.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
    font-weight: 400;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(96, 165, 250, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-glow {
    position: relative;
    z-index: 1;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    z-index: -1;
    border-radius: calc(var(--border-radius-sm) + 2px);
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(8px);
}

.btn-glow:hover::after {
    opacity: 0.7;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--glass-border-highlight);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: white;
}

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

.btn-block {
    width: 100%;
}

ion-icon {
    font-size: 1.2em;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: padding 0.3s ease;
}

.glass-nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(2, 6, 23, 0.85);
}

.glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slowPulse 4s infinite;
}

.logo-img:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.7));
}

@keyframes slowPulse {
    0% {
        filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.6));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4));
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-item:hover {
    color: white;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
}

.login-link ion-icon {
    font-size: 1.25rem;
}

/* Language Selector */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    backdrop-filter: var(--glass-blur);
}

.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--glass-border-highlight);
}

.lang-btn .chevron {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang-btn[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 0.5rem;
    min-width: 140px;
    box-shadow: var(--glass-shadow);
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 1100;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
}

.lang-dropdown.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.lang-option {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.6rem 1rem;
    text-align: left;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* USP Grid Adjustment */
.usps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.support-email a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.support-email a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Hero Section & Animation
   ========================================================================== */
.hero {
    padding: 14rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.bulletpoints {
    list-style: none;
    margin-bottom: 3rem;
}

.bulletpoints li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.bulletpoints ion-icon {
    color: var(--primary-light);
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Floating Mockup (Pure CSS Wow Factor) */
.hero-visual {
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-phone-container {
    position: relative;
    width: 320px;
    height: 550px;
    z-index: 10;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
    z-index: -1;
    filter: blur(20px);
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: #0f172a;
    /* Device color */
    border-radius: 40px;
    border: 8px solid #1e293b;
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.phone-screen {
    background: linear-gradient(to bottom, #020617, #0f172a);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.qr-target {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-icon-large {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 10px var(--primary-light));
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--accent);
    border-style: solid;
}

.tl {
    top: 0;
    left: 0;
    border-width: 4px 0 0 4px;
}

.tr {
    top: 0;
    right: 0;
    border-width: 4px 4px 0 0;
}

.bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 4px 4px;
}

.br {
    bottom: 0;
    right: 0;
    border-width: 0 4px 4px 0;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-light);
    box-shadow: 0 0 15px var(--primary-light), 0 0 30px var(--primary);
    animation: scan 2.5s infinite linear;
    z-index: 5;
}

@keyframes scan {
    0% {
        top: 10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 90%;
        opacity: 0;
    }
}

.scan-text {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.floating-badge ion-icon {
    color: var(--accent);
}

.badge-tl {
    top: 10%;
    left: -15%;
}

.badge-br {
    bottom: 15%;
    right: -25%;
}

.float-animation {
    animation: floating 6s ease-in-out infinite;
}

.float-animation-alt {
    animation: floating-alt 5s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0) rotateY(-15deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-15px) rotateY(-12deg) rotateX(3deg);
    }

    100% {
        transform: translateY(0) rotateY(-15deg) rotateX(5deg);
    }
}

@keyframes floating-alt {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================================================
   Animated Explainer (Simulated Video)
   ========================================================================== */
.explainer-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}

.explainer-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-highlight);
    border-radius: 20px;
    overflow: hidden;
}

.explainer-header {
    background: rgba(2, 6, 23, 0.9);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.explainer-header .dots {
    display: flex;
    gap: 8px;
}

.explainer-header .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #475569;
}

.explainer-header .dots span:nth-child(1) {
    background: #ef4444;
}

.explainer-header .dots span:nth-child(2) {
    background: #eab308;
}

.explainer-header .dots span:nth-child(3) {
    background: #22c55e;
}

.explainer-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.explainer-screen {
    height: 400px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, rgba(2, 6, 23, 1) 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animation-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: sceneCycle 12s infinite;
}

.scene-text {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* Scene 1 Animations */
.scene-1 {
    animation-delay: 0s;
}

.mock-qr {
    position: relative;
    font-size: 120px;
    color: white;
}

.scan-laser {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    animation: laserScan 2s ease-in-out infinite alternate;
}

@keyframes laserScan {
    0% {
        top: 10%;
    }

    100% {
        top: 90%;
    }
}

/* Scene 2 Animations */
.scene-2 {
    animation-delay: 4s;
}

.mock-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

.mock-field {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.skeleton-short {
    width: 40%;
}

.skeleton-long {
    width: 0%;
    animation: typeText 3s infinite steps(20, end);
    animation-delay: 4s;
}

.mock-btn {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    transform: scale(1);
    animation: clickBtn 4s infinite;
    animation-delay: 4s;
}

@keyframes typeText {

    0%,
    20% {
        width: 0%;
    }

    40%,
    80% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

@keyframes clickBtn {

    0%,
    70% {
        transform: scale(1);
        background: var(--primary);
    }

    75% {
        transform: scale(0.95);
        background: var(--primary-dark);
    }

    80%,
    100% {
        transform: scale(1);
        background: var(--primary);
    }
}

/* Scene 3 Animations */
.scene-3 {
    animation-delay: 8s;
}

.success-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    border: 4px solid #22c55e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #22c55e;
    transform: scale(0);
    animation: popIn 4s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-delay: 8s;
}

@keyframes popIn {

    0%,
    10% {
        transform: scale(0);
    }

    20%,
    90% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes sceneCycle {

    0%,
    25% {
        opacity: 1;
        z-index: 5;
    }

    33%,
    100% {
        opacity: 0;
        z-index: 0;
    }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-section {
    padding: 8rem 0;
    position: relative;
}

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

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.step-card {
    padding: 3rem 2rem;
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

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

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   USPs Section (Persuasion)
   ========================================================================== */
.usps-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

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

.usp-card {
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
}

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

.glass-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-highlight);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /* Ensure images don't overflow */
}

.usp-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    /* Give some breathing room */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.usp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.usp-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Use Cases Section (Bento Grid Visual Bomb)
   ========================================================================== */
.use-cases-section {
    padding: 6rem 0 10rem;
    position: relative;
    z-index: 10;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 3;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.6) 60%, rgba(2, 6, 23, 0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 3;
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

.bento-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.bento-item p {
    color: #f1f5f9;
    font-size: 1.05rem;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 95%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hover Effects (Intense Pop-Out) */
.bento-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.8);
    border-color: var(--accent);
    z-index: 10;
}

.bento-item:hover .bento-bg {
    transform: scale(1.2);
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.4) 70%, transparent 100%);
}

.bento-item:hover .bento-icon {
    color: var(--accent);
    transform: scale(1.1) translateY(-5px);
    transition: var(--transition-smooth);
}

/* Responsive adjustments for Bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================================================
   Calculator Section - Upgraded
   ========================================================================== */
.calculator-section {
    padding: 8rem 0;
}

.calculator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    /* Override default glass-card padding */
}

.calc-sidebar {
    padding: 4rem 3rem;
    border-right: 1px solid var(--glass-border);
}

.calc-sidebar h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.calc-sidebar p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.slider-container {
    margin-bottom: 3rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slider-header label {
    font-weight: 600;
    font-size: 1.1rem;
}

.number-display {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Custom Range Slider */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.5), 0 0 5px rgba(255, 255, 255, 0.8);
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* ROI Box */
.roi-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.roi-box ion-icon {
    font-size: 2.5rem;
    color: var(--accent);
}

.roi-content {
    display: flex;
    flex-direction: column;
}

.roi-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.roi-value {
    font-size: 1.1rem;
}

.roi-value strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    color: var(--accent);
}

/* Calc Results Panel */
.calc-results-panel {
    padding: 4rem 3rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-tier-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.result-row:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.main-total {
    padding: 2rem 0;
}

.total-label {
    display: flex;
    flex-direction: column;
}

.sub-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.result-row .label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.result-row .value {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.result-row.main-total .value {
    font-size: 3rem;
    color: var(--primary-light);
    line-height: 1;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

/* Payment Additions */
.payment-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-separator::before,
.payment-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.payment-separator span {
    padding: 0 10px;
}

.payment-methods {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.payment-methods span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* ==========================================================================
   Form Section
   ========================================================================== */
.form-section {
    padding: 4rem 0 12rem;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
}

.form-header.left-align {
    text-align: left;
    margin-bottom: 3rem;
}

.modern-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.input-icon-wrapper ion-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-tertiary);
    font-size: 1.25rem;
}

.input-icon-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-icon-wrapper input:focus {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-icon-wrapper input:focus+ion-icon,
.input-icon-wrapper input:not(:placeholder-shown)~ion-icon {
    color: var(--primary-light);
}

.disabled-group input {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    pointer-events: none;
}

.submit-btn {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.glass-footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    filter: grayscale(0.5) drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
    transition: all 0.4s ease;
}

.footer-logo-img:hover {
    filter: grayscale(0) drop-shadow(0 0 12px rgba(16, 185, 129, 0.5));
    transform: scale(1.05);
}

.glass-footer p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6rem;
    }

    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: 2;
    }

    .badge-tl {
        top: -5%;
        left: -5%;
    }

    .badge-br {
        bottom: 0%;
        right: -5%;
    }

    .bulletpoints li {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .calculator-card {
        grid-template-columns: 1fr;
    }

    .calc-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .modern-form .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .calc-sidebar,
    .calc-results-panel {
        padding: 2rem;
    }
}