/* Volinq Landing Page CSS - Ultimate Premium Revamp */

:root {
    --bg-dark: #06050a;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
    --primary: #6c5dd3;
    --primary-light: #9e91ff;
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a3a1b3;
    --text-tertiary: #6b697c;
    --success: #00e676;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

body {
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(circle at 10% 15%, rgba(108, 93, 211, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 85% 75%, rgba(0, 240, 255, 0.08) 0%, transparent 45%);
}

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

h1, h2, h3, h4, .logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #232230;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Button & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-sm {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #5041bd 100%);
    color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(108, 93, 211, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108, 93, 211, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-block {
    display: flex;
    width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 45%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 5, 10, 0.6);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--card-border);
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(6, 5, 10, 0.85);
}

.navbar-container {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 800;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(108, 93, 211, 0.2);
}

.logo-icon {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(108, 93, 211, 0.6);
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

#header-get-app {
    display: none; /* Hidden by default, JS handles visibility */
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 93, 211, 0.08);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(108, 93, 211, 0.15);
}

.badge-tag.secondary {
    background: rgba(0, 240, 255, 0.05);
    color: var(--secondary);
    border-color: rgba(0, 240, 255, 0.15);
}

.hero-title {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

/* Store Buttons */
.btn-store {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    border: 1px solid var(--card-border);
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-store:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.25);
}

.store-icon {
    font-size: 26px;
}

.btn-store span {
    font-size: 9px;
    display: block;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-store strong {
    font-size: 15px;
    display: block;
    font-family: 'Outfit', sans-serif;
}

.stats-bar {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--card-border);
    padding-top: 32px;
    max-width: 550px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 800;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Mockups Slider Side-by-side */
.hero-mockups {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.phone-frame-wrapper {
    position: relative;
    width: 310px;
    height: 620px;
    background: #0c0b12;
    border: 10px solid #1a1924;
    border-radius: 44px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 60px rgba(108, 93, 211, 0.15);
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.45;
}

.glow-bg.cyan-glow {
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.mockup-img {
    width: 100%;
    height: 91%;
    object-fit: cover;
}

.mockup-caption {
    background: #111018;
    height: 9%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    border-top: 1px solid var(--card-border);
}

.slider-dots {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    width: 18px;
    border-radius: 10px;
}

/* Services Portfolio */
.services {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 26px;
    padding: 44px;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(108, 93, 211, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(108, 93, 211, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 32px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.service-features li i {
    color: var(--success);
}

/* Calculator Section */
.calculator-section {
    padding: 120px 0;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.calculator-text h2 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 800;
}

.calculator-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
}

.live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.08);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--success);
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--success);
    top: 0;
    left: 0;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.6); opacity: 0; }
}

.calculator-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 44px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group select, .form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    color: white;
    padding: 16px;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group select option {
    background-color: #12101a;
    color: white;
}

.form-group select:focus, .form-group input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.input-wrapper {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-weight: 700;
}

.form-group input {
    padding-left: 36px;
}

.calc-divider {
    height: 1px;
    background: var(--card-border);
    margin: 32px 0;
}

.calc-result {
    text-align: center;
    margin-bottom: 32px;
}

.calc-result p {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.calc-result h2 {
    font-size: 44px;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 4px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.rate-info {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Ambassador Program */
.ambassador {
    padding: 120px 0;
}

.ambassador-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.dashboard-badge-wrapper {
    position: relative;
}

.ambassador-earnings-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
}

.badge-success {
    background: rgba(0, 230, 118, 0.08);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.ambassador-earnings-card h3 {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.ambassador-earnings-card h2 {
    font-size: 38px;
    color: var(--text-primary);
    font-weight: 900;
    margin-bottom: 24px;
}

.earnings-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 12px;
}

.earnings-graph .bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 5px;
}

.earning-note {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
}

.step-v-item {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(108, 93, 211, 0.08);
    color: var(--primary);
    border: 1px solid rgba(108, 93, 211, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step-v-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}

.step-v-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* PWA App Setup Guide */
.pwa-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.005);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.pwa-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 14px 28px;
    border-radius: 14px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(108, 93, 211, 0.3);
}

.pwa-content-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.pwa-guide-pane {
    display: none;
}

.pwa-guide-pane.active {
    display: block;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 18px;
}

.guide-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.guide-step p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Call To Action */
.cta-download-section {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
    z-index: -1;
    opacity: 0.25;
}

.cta-container h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-container p {
    max-width: 580px;
    margin: 0 auto 44px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.primary-store {
    background: var(--primary);
    border: none;
}

.primary-store:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 93, 211, 0.35);
}

/* Footer Section */
.footer {
    background: #030206;
    border-top: 1px solid var(--card-border);
    padding: 90px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0 24px;
    max-width: 320px;
}

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--card-border);
}

.socials a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-links h4, .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact p i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 32px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Tablet & Mobile Screens Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 28px;
        text-align: left;
        align-items: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .btn-store, .btn {
        width: 100%;
        max-width: 260px;
    }

    .stats-bar {
        gap: 24px;
        padding-top: 24px;
    }

    .stat-item h3 {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .phone-frame-wrapper {
        width: 200px;
        height: 400px;
        border-width: 6px;
        border-radius: 26px;
    }

    .slider-dots {
        bottom: 50px;
        gap: 5px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 14px;
    }

    .mockup-caption {
        font-size: 9px;
    }

    .calculator-container, .ambassador-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .ambassador-earnings-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-vertical {
        align-items: center;
    }

    .step-v-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 136px 0 20px;
        min-height: auto;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid var(--card-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-mockups {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 2;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
        text-align: center;
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn-store, .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 14px;
        padding: 14px 24px;
        border-radius: 12px;
        height: auto;
        margin: 0 auto;
    }

    .btn-store {
        gap: 10px;
        padding: 12px 24px;
    }

    .store-icon {
        font-size: 22px;
    }

    .btn-store span {
        font-size: 8px;
    }

    .btn-store strong {
        font-size: 14px;
    }

    .stats-bar {
        flex-direction: row;
        justify-content: center;
        gap: 28px;
        padding-top: 20px;
        border-top: 1px solid var(--card-border);
        width: 100%;
    }

    .stat-item h3 {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .phone-frame-wrapper {
        width: 240px;
        height: 480px;
        border-width: 8px;
        border-radius: 32px;
    }

    .slider-dots {
        bottom: 56px;
        gap: 6px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 16px;
    }

    .mockup-caption {
        font-size: 10px;
        padding: 6px 0;
    }

    .calculator-text h2, .cta-container h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Premium iOS PWA Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 10, 0.85);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: rgba(18, 16, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    width: 100%;
    max-width: 420px;
    padding: 32px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(108, 93, 211, 0.15);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header-pwa {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.modal-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-title-wrapper h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.modal-title-wrapper p {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.modal-intro {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: left;
}

.ios-install-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.ios-step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 16px;
    transition: var(--transition);
}

.ios-step-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(108, 93, 211, 0.3);
}

.ios-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(108, 93, 211, 0.1);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ios-step-desc {
    text-align: left;
}

.ios-step-desc p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.ios-step-desc strong {
    color: var(--text-primary);
}

/* NEW ADDITIONS FOR REDESIGN */

/* Sidebar Overlay & Menu */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar-menu {
    position: fixed;
    top: 0; right: -300px;
    width: 280px; height: 100vh;
    background: #0a0910;
    border-left: 1px solid var(--card-border);
    z-index: 1001;
    padding: 24px;
    display: flex; flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.sidebar-menu.active { right: 0; }
.sidebar-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px;
}
.close-sidebar {
    background: none; border: none; color: var(--text-secondary); font-size: 24px; cursor: pointer;
}
.sidebar-content {
    display: flex; flex-direction: column; gap: 20px; flex: 1;
}
.sidebar-link {
    color: var(--text-primary); text-decoration: none; font-size: 18px; font-weight: 600; transition: var(--transition);
}
.sidebar-link:hover { color: var(--primary); }
.android-download { color: var(--success); }
.sidebar-footer { margin-top: auto; }

/* Trusted By Slider */
.trusted-by-section {
    padding: 40px 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
    text-align: center; overflow: hidden;
}
.trusted-title {
    font-size: 12px; color: var(--text-tertiary); font-weight: 800; letter-spacing: 2px; margin-bottom: 24px;
}
.logo-slider {
    width: 100%; overflow: hidden; white-space: nowrap; position: relative;
}
.logo-slider::before, .logo-slider::after {
    content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.logo-slider::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.logo-slider::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.logo-slide-track {
    display: inline-flex; gap: 60px; animation: scroll-logos 45s linear infinite; align-items: center;
}
.partner-logo {
    font-size: 16px; color: var(--text-secondary); opacity: 0.6; font-weight: 700; display: flex; align-items: center; gap: 6px;
}
.text-logo { font-family: 'Outfit', sans-serif; letter-spacing: -0.5px; }
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Service Card Height adjustments */
.service-card {
    padding: 32px; /* reduced from 44px */
}

/* Testimonials Section (White Background) */
.testimonials {
    padding: 100px 0;
    background: #ffffff; /* White background */
    color: #000000;
}
.testimonials .section-title { color: #000000; }
.testimonials .section-subtitle { color: #555555; }
.testimonial-slider-wrapper {
    display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 900px; margin: 0 auto; position: relative;
}
.testi-btn {
    background: #f0f0f0; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 18px; cursor: pointer; color: #333; transition: var(--transition);
}
.testi-btn:hover { background: var(--primary); color: white; }
.testimonial-track-container {
    overflow: hidden; width: 100%; position: relative; height: 260px;
}
.testimonial-card {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transform: translateX(50px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 20px; padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
.testimonial-card.active-testi { opacity: 1; transform: translateX(0); z-index: 2; }
.rating { color: #FFD700; margin-bottom: 16px; font-size: 18px; }
.review-text { font-size: 18px; font-weight: 500; line-height: 1.6; margin-bottom: 24px; color: #222; }
.reviewer { display: flex; align-items: center; gap: 16px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.avatar.bg-blue { background: #3b82f6; } .avatar.bg-green { background: #10b981; }
.reviewer-info h4 { font-size: 16px; font-weight: 700; color: #000; margin-bottom: 2px; }
.reviewer-info span { font-size: 13px; color: #666; font-weight: 600; }

/* Scroll Animations */
.animate-on-scroll { opacity: 0; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in { transform: scale(0.95); }
.slide-up { transform: translateY(40px); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0) scale(1); }

/* iOS PWA Modal Redesign */
.ios-modal-container { max-width: 380px; }
.apple-icon-large { font-size: 28px; color: white; }
.pwa-link-text { color: var(--secondary) !important; font-size: 14px !important; }
.ios-step-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.03); padding: 16px; border-radius: 14px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.08); }
.step-visual { width: 40px; height: 40px; border-radius: 12px; background: rgba(108,93,211,0.15); display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 18px; }
.step-content h4 { font-size: 15px; margin-bottom: 4px; font-weight: 700; color: white; }
.step-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; margin: 0; }

/* Mobile Hero Reordering & Apple icon */
@media (max-width: 992px) {
    .hero { padding: 120px 0 40px; }
    .hero-container { flex-direction: column; align-items: center; text-align: center; }
    .hero-content { order: 1; margin-bottom: 40px; align-items: center; display: flex; flex-direction: column; }
    .hero-mockups { order: 2; width: 100%; display: flex; justify-content: center; }
    .stats-bar { justify-content: center; }
    .phone-frame-wrapper { width: 220px; height: 440px; border-width: 6px; }
}
@media (max-width: 768px) {
    .testimonial-card { padding: 24px; }
    .review-text { font-size: 15px; }
    .testi-btn { width: 40px; height: 40px; font-size: 14px; }
    .nav-menu { display: none; /* Hide old mobile menu if it triggers */ }
}

/* ==========================================================================
   NEW STYLING ADDITIONS FOR PREMIUM REVAMP & WHITE CONTRAST
   ========================================================================== */

/* Light Theme overrides for sub-pages */
body.light-theme {
    --bg-dark: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --card-bg: #f8fafc;
    --card-border: #cbd5e1;
    background: radial-gradient(circle at 10% 15%, rgba(108, 93, 211, 0.04) 0%, transparent 45%),
                radial-gradient(circle at 85% 75%, rgba(0, 240, 255, 0.03) 0%, transparent 45%);
}
body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid #e2e8f0;
}
body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}
body.light-theme .logo span, body.light-theme .nav-link, body.light-theme .mobile-toggle {
    color: #0f172a;
}
body.light-theme .nav-link:hover {
    color: var(--primary);
}
body.light-theme .logo-img {
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(108, 93, 211, 0.1);
}
body.light-theme .subpage-hero {
    padding: 160px 0 60px;
    background: radial-gradient(circle at 50% 50%, rgba(108, 93, 211, 0.05) 0%, transparent 80%);
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}
body.light-theme .subpage-title {
    font-size: clamp(32px, 5vw, 54px);
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 16px;
}
body.light-theme .subpage-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Light / White Sections general classes */
.section-light {
    padding: 90px 0;
    background: #f8fafc;
    color: #0f172a;
}
.section-light.bg-white {
    background: #ffffff;
}
.dark-text .section-title {
    color: #0f172a;
}
.dark-text .section-subtitle {
    color: #475569;
}
body.light-theme .btn-secondary, .section-light .btn-secondary {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}
body.light-theme .btn-secondary:hover, .section-light .btn-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* Network Badges */
.network-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin: 0 auto 16px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid #ffffff;
}
.network-mtn { background: #ffcc00; color: #000000; }
.network-airtel { background: #ff0000; }
.network-glo { background: #009900; }
.network-9mobile { background: #006600; }
    color: #475569;
}
.text-dark h3, .text-dark p, .text-dark li {
    color: #0f172a !important;
}
.text-dark .service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.text-dark .service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(108, 93, 211, 0.08);
}

/* Live Transactions Feed Banner */
.live-transactions-ticker {
    background: rgba(108, 93, 211, 0.06);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
body.light-theme .live-transactions-ticker {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    align-items: center;
    animation: ticker-slide 35s linear infinite;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}
body.light-theme .ticker-item {
    color: #475569;
}
.ticker-item span.status-green {
    color: var(--success);
    font-weight: 700;
}
.ticker-item i {
    font-size: 8px;
    color: var(--secondary);
}
@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* VTU Pricing Matrix Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
body.light-theme .pricing-card, .section-light .pricing-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(108, 93, 211, 0.1);
}
.pricing-card.popular {
    border-color: var(--secondary);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.02) 0%, rgba(255,255,255,0.01) 100%);
}
body.light-theme .pricing-card.popular, .section-light .pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(108, 93, 211, 0.02) 0%, #ffffff 100%);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(108, 93, 211, 0.2);
}
.pricing-card img.provider-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid #e2e8f0;
}
.pricing-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}
.pricing-card p.price {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary-light);
    margin: 12px 0;
}
body.light-theme .pricing-card p.price, .section-light .pricing-card p.price {
    color: var(--primary);
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
    display: inline-block;
}
.pricing-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
body.light-theme .pricing-card ul li, .section-light .pricing-card ul li {
    color: #475569;
}
.pricing-card ul li i {
    color: var(--success);
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 780px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
body.light-theme .faq-item, .section-light .faq-item {
    background: #ffffff;
    border: 1px solid #cbd5e1;
}
.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    user-select: none;
}
.faq-question i {
    font-size: 14px;
    transition: transform 0.4s;
    color: var(--primary-light);
}
body.light-theme .faq-question i, .section-light .faq-question i {
    color: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
    padding: 0 28px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}
body.light-theme .faq-answer, .section-light .faq-answer {
    color: #475569;
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(108, 93, 211, 0.05);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 200px;
}

/* Newsletter Subscription Section */
.newsletter-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(108, 93, 211, 0.08) 0%, transparent 70%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
}
body.light-theme .newsletter-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.newsletter-wrap {
    max-width: 580px;
    margin: 0 auto;
}
.newsletter-wrap h3 {
    font-size: 28px;
    margin-bottom: 12px;
}
.newsletter-wrap p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 28px;
}
body.light-theme .newsletter-wrap p {
    color: #475569;
}
.newsletter-form {
    display: flex;
    gap: 12px;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: white;
    padding: 16px 20px;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}
body.light-theme .newsletter-form input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}
.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 93, 211, 0.15);
}
.newsletter-form button {
    padding: 16px 28px;
    font-size: 14px;
}

/* Careers open positions section styling */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.job-item-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    text-align: left;
}
.job-item-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(108, 93, 211, 0.08);
    transform: translateY(-2px);
}
.job-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.job-dept {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}
.job-type {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}
.job-item-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 8px;
}
.job-summary {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
}
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}
.job-exp {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* About subpage layout */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.about-card-fancy {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}
.about-card-fancy:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(108, 93, 211, 0.04);
}
.fancy-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(108, 93, 211, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}
.about-card-fancy h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
}
.about-card-fancy p {
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

/* Timeline Layout */
.timeline-wrapper {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #cbd5e1;
}
.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}
.timeline-badge {
    width: 82px;
    height: 36px;
    border-radius: 100px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(108, 93, 211, 0.2);
}
.timeline-content {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 24px;
    border-radius: 18px;
    width: 100%;
}
.timeline-content h4 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 8px;
}
.timeline-content p {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

/* Perks list */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.perk-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}
.perk-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(108, 93, 211, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}
.perk-card h4 {
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 8px;
}
.perk-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

/* Contact structure page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}
.info-card-wrap {
    text-align: left;
}
.info-card-wrap h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 12px;
}
.info-intro {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-item-block {
    display: flex;
    gap: 16px;
}
.info-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(108, 93, 211, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.info-item-text span {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}
.info-item-text h4 {
    font-size: 16px;
    color: #0f172a;
    margin: 2px 0;
}
.info-item-text p {
    font-size: 13px;
    color: #64748b;
}
.whatsapp-card-cta {
    margin-top: 40px;
    padding: 24px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
}
.whatsapp-card-cta p {
    font-size: 14px;
    color: #166534;
    font-weight: 600;
    margin-bottom: 16px;
}
.contact-form-card {
    text-align: left;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.contact-form-card h3 {
    color: #0f172a;
    font-size: 22px;
    margin-bottom: 6px;
}
.card-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
}
.contact-form-card textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    padding: 16px;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    resize: vertical;
}
.contact-form-card textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 93, 211, 0.15);
}
.contact-form-card input, .contact-form-card select {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}
.contact-form-card input:focus, .contact-form-card select:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(108, 93, 211, 0.15);
}
.contact-form-card select option {
    background-color: #ffffff;
    color: #0f172a;
}

/* Toast System */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.toast {
    background: #12101a;
    border: 1px solid var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(108, 93, 211, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-success {
    border-color: var(--success);
}
.toast-success i {
    color: var(--success);
}

/* Security badging info */
.security-badge-section {
    padding: 60px 0;
    background: #0d0c14;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
body.light-theme .security-badge-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.sec-card {
    text-align: center;
    padding: 20px;
}
.sec-icon {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 16px;
}
body.light-theme .sec-icon {
    color: var(--primary);
}
.sec-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}
.sec-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}
body.light-theme .sec-card p {
    color: #64748b;
}

/* Media Query overrides for new additions on mobile */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid, .grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .pricing-grid, .perks-grid {
        grid-template-columns: 1fr;
    }
    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .timeline-wrapper::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }
    .timeline-badge {
        width: 70px;
        font-size: 12px;
        align-self: flex-start;
        margin-left: 5px;
    }
    .timeline-content {
        padding: 16px;
    }
}
