/* ===== AZIWALLET DESIGN SYSTEM ===== */
/* Based on AziPay primer design */

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --lime: #CDFF00;
    --lime-glow: rgba(205, 255, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    cursor: none;
}

body * {
    cursor: none;
}

/* Admin pages should have normal cursor */
body.admin-page,
body.admin-page * {
    cursor: auto !important;
}

body.admin-page input,
body.admin-page button,
body.admin-page a,
body.admin-page select {
    cursor: pointer !important;
}

/* ===== AMBIENT EFFECTS ===== */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(205, 255, 0, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--lime);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--lime);
    bottom: -150px;
    right: -150px;
    animation-delay: -10s;
}

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

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--lime);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0;
}

.cursor.hover {
    transform: scale(1.5);
    opacity: 0.8;
}

@media (hover: hover) {
    .cursor {
        opacity: 0.6;
    }
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(205, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(205, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.grid-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(205, 255, 0, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.brand {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand span {
    background: linear-gradient(135deg, var(--lime), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

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

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

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

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

.lang-trigger {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.lang-trigger:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.btn-login {
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.btn-login:hover {
    color: var(--lime);
}

.btn-primary {
    background: var(--lime);
    color: #000;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px var(--lime-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--lime);
    border: 2px solid var(--lime);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--lime);
    color: #000;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--lime);
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    max-width: 900px;
}

.hero-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    color: var(--lime);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    padding: 6rem 5%;
    z-index: 10;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(205, 255, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(205, 255, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--lime);
    stroke-width: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== EXCHANGE PREVIEW ===== */
.exchange-preview-section {
    background: rgba(17, 17, 17, 0.5);
}

.exchange-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.flow-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    min-width: 150px;
    text-align: center;
    transition: all 0.3s;
}

.flow-item:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: rgba(205, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.flow-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--lime);
    stroke-width: 2;
}

.flow-item h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--lime);
}

.flow-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.flow-arrow {
    color: var(--lime);
}

.flow-arrow svg {
    width: 30px;
    height: 30px;
    stroke: var(--lime);
    stroke-width: 2;
}

/* ===== AZIPAY SECTION ===== */
.azipay-section {
    background: rgba(17, 17, 17, 0.5);
}

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

.azipay-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.azipay-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.azipay-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.azipay-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.azipay-feature-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--lime);
    stroke-width: 3;
    flex-shrink: 0;
}

.azipay-code {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(205, 255, 0, 0.05);
    border-bottom: 1px solid var(--border);
}

.code-title {
    color: var(--lime);
    font-weight: 600;
    font-size: 0.9rem;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.code-block {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
}

.code-block code {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== ROADMAP ===== */
.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--lime), transparent);
}

.roadmap-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.roadmap-marker {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(205, 255, 0, 0.2);
    border: 2px solid var(--lime);
}

.roadmap-item.active .roadmap-marker {
    background: var(--lime);
    box-shadow: 0 0 20px var(--lime-glow);
}

.roadmap-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(205, 255, 0, 0.1);
    border: 1px solid var(--lime);
    border-radius: 20px;
    color: var(--lime);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.roadmap-item.active .roadmap-status {
    background: var(--lime);
    color: #000;
}

.roadmap-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.roadmap-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(17, 17, 17, 0.5);
    border-top: 1px solid var(--border);
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .brand {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--lime);
}

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

.footer-social {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--lime);
}

/* ===== PRELOADER ===== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.loader-brand {
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: fadeInLoader 0.5s forwards;
}

.loader-brand span {
    background: linear-gradient(135deg, var(--lime), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInLoader 0.5s 0.5s forwards, rotateLoader 3s 0.5s linear infinite;
}

@keyframes rotateLoader {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInLoader 0.5s 0.8s forwards;
}

.loader-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(205, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInLoader 0.5s 1.2s forwards;
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
    transition: width 0.2s ease-out;
}

@keyframes fadeInLoader {
    to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .azipay-content {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 6rem 5% 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}


/* ===== USE CASES SECTION ===== */
.use-cases-section {
    background: rgba(17, 17, 17, 0.5);
}

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

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.use-case-card:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(205, 255, 0, 0.1);
}

.use-case-number {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(205, 255, 0, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--lime);
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-case-flow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.use-case-flow span {
    padding: 0.4rem 1rem;
    background: rgba(205, 255, 0, 0.1);
    border: 1px solid var(--lime);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lime);
}

.use-case-flow i {
    color: var(--lime);
    font-size: 0.9rem;
}


/* ===== AZIPAY PAGE ===== */
.azipay-hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.azipay-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.azipay-hero-text {
    max-width: 600px;
}

.azipay-brand-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    line-height: 1.4;
    overflow: visible;
    color: var(--text-primary);
}

.azipay-brand-title span {
    color: var(--lime);
}

.azipay-subtitle {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.page-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.page-title .line {
    display: block;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ndfl-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.ndfl-note a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.ndfl-note a:hover {
    color: var(--lime);
}

.ndfl-inline-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9em;
}

.ndfl-inline-link:hover {
    color: var(--lime);
}

.azipay-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(205, 255, 0, 0.2));
}

.hero-image-large {
    width: auto;
    max-width: 900px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(205, 255, 0, 0.3));
}

@media (max-width: 1024px) {
    .hero-image-large {
        width: 100%;
    }
}

.azipay-features-section {
    padding: 6rem 5%;
    position: relative;
    background: var(--bg-dark);
}

.azipay-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.azipay-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.azipay-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--lime);
    box-shadow: 0 10px 40px rgba(205, 255, 0, 0.2);
}

.azipay-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.azipay-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.azipay-api-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.azipay-api-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.api-example {
    margin-bottom: 3rem;
}

.api-endpoints {
    margin-bottom: 3rem;
}

.api-endpoints h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.endpoint-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.endpoint-item:hover {
    border-color: var(--lime);
    transform: translateX(5px);
}

.endpoint-item .method {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 6px;
    color: #0096ff;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.endpoint-item .method.post {
    background: rgba(205, 255, 0, 0.1);
    border-color: var(--lime);
    color: var(--lime);
}

.endpoint-item .path {
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
    font-size: 0.9rem;
    flex: 1;
}

.endpoint-item .desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.azipay-api-section .btn-large {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.api-promo-banner {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(205, 255, 0, 0.1), rgba(205, 255, 0, 0.05));
    border: 2px solid var(--lime);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.api-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(205, 255, 0, 0.15), transparent 60%);
    pointer-events: none;
}

.api-promo-content {
    position: relative;
    z-index: 1;
}

.api-promo-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.api-promo-counter {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.counter-number {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lime);
    margin: 0 0.3rem;
}

.api-promo-banner .btn-large {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .api-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .api-promo-content h3 {
        font-size: 1.2rem;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.pricing-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--lime);
    background: linear-gradient(135deg, rgba(205, 255, 0, 0.05), rgba(205, 255, 0, 0.02));
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(205, 255, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime);
    display: block;
    margin-bottom: 0.5rem;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--lime);
    font-size: 1rem;
}

.pricing-card .btn-large {
    width: 100%;
}

@media (max-width: 1024px) {
    .azipay-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .azipay-hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .azipay-hero-section {
        height: auto;
        padding: 6rem 5% 3rem;
    }

    .azipay-brand-title {
        font-size: 2.5rem;
    }

    .azipay-subtitle {
        font-size: 1.3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .hero-image-large {
        max-width: 100%;
    }

    .azipay-brand-title {
        font-size: 2.5rem;
    }
}


/* ===== HOW IT WORKS ===== */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card-main {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.step-card-main:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
}

.step-num {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 1rem;
}

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

.step-card-main p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: rgba(205, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-case-icon i {
    font-size: 1.8rem;
    color: var(--lime);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

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


@media (max-width: 1024px) {
    .azipay-hero-section {
        height: auto;
        min-height: 100vh;
        padding: 6rem 5% 3rem;
    }

    .azipay-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .azipay-hero-visual {
        order: -1;
    }

    .hero-image-large {
        max-width: 500px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 8rem 5% 6rem;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-mission {
    margin-bottom: 6rem;
    text-align: center;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 2rem auto 0;
}

.contact-section {
    margin-top: 6rem;
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(205, 255, 0, 0.1);
}

.contact-card svg {
    width: 50px;
    height: 50px;
    stroke: var(--lime);
    stroke-width: 2;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

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

/* ===== NDFL PAGE ===== */
.ndfl-section {
    padding: 8rem 5% 6rem;
    min-height: 100vh;
}

.ndfl-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ndfl-info-card {
    background: linear-gradient(135deg, rgba(205, 255, 0, 0.1), rgba(205, 255, 0, 0.05));
    border: 2px solid var(--lime);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(205, 255, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--lime);
    stroke-width: 2;
}

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

.ndfl-info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.ndfl-steps {
    margin-bottom: 4rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--lime);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(205, 255, 0, 0.1);
    border: 2px solid var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lime);
    flex-shrink: 0;
}

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

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-example {
    background: rgba(205, 255, 0, 0.05);
    border-left: 3px solid var(--lime);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.step-list {
    list-style: none;
    margin-top: 1rem;
}

.step-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--lime);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(205, 255, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: var(--lime);
    transform: translateX(5px);
}

.payment-method svg {
    width: 40px;
    height: 40px;
    stroke: var(--lime);
    stroke-width: 2;
    flex-shrink: 0;
}

.payment-method strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.payment-method p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.ndfl-calculator {
    margin-bottom: 4rem;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

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

.calc-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.calc-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.calc-input:focus {
    outline: none;
    border-color: var(--lime);
    background: rgba(255, 255, 255, 0.08);
}

.calc-result {
    background: rgba(205, 255, 0, 0.05);
    border: 1px solid var(--lime);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.result-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.result-value {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.result-value.highlight {
    color: var(--lime);
    font-size: 1.8rem;
}

.btn-full {
    width: 100%;
}

.ndfl-faq {
    margin-bottom: 4rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--lime);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--lime);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ndfl-info-card {
        flex-direction: column;
    }

    .step-card {
        flex-direction: column;
    }

    .payment-method {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== NEWS PAGE ===== */
.news-section {
    padding: 8rem 5% 6rem;
    min-height: 100vh;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-card.featured {
    border-color: var(--lime);
    background: linear-gradient(135deg, rgba(205, 255, 0, 0.05), rgba(205, 255, 0, 0.02));
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--lime);
    box-shadow: 0 10px 40px rgba(205, 255, 0, 0.15);
}

.news-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--lime);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.news-category {
    padding: 0.4rem 1rem;
    background: rgba(205, 255, 0, 0.1);
    border: 1px solid var(--lime);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lime);
}

.news-link {
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.news-link:hover {
    transform: translateX(5px);
}

.news-subscribe {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(205, 255, 0, 0.1), rgba(205, 255, 0, 0.05));
    border: 2px solid var(--lime);
    border-radius: 24px;
}

.news-subscribe .section-title {
    margin-bottom: 1rem;
}

.news-subscribe .section-subtitle {
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--lime);
    background: rgba(255, 255, 255, 0.08);
}

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

    .subscribe-form {
        flex-direction: column;
    }
}

/* ===== AUTH PAGES (LOGIN/REGISTER) ===== */
.auth-section {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-title span {
    color: var(--lime);
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.auth-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-method-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.auth-method-btn:hover {
    border-color: var(--lime);
    background: rgba(205, 255, 0, 0.05);
    transform: translateY(-2px);
}

.auth-method-btn i {
    font-size: 1.3rem;
}

.auth-method-btn.telegram:hover {
    border-color: #0088cc;
}

.auth-method-btn.google:hover {
    border-color: #4285f4;
}

.auth-method-btn.apple:hover {
    border-color: #fff;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime);
    background: rgba(255, 255, 255, 0.08);
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 3rem;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: var(--lime);
}

.password-strength {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s;
}

.strength-bar.weak {
    width: 25%;
    background: #ff4444;
}

.strength-bar.medium {
    width: 50%;
    background: #ffaa00;
}

.strength-bar.good {
    width: 75%;
    background: #00aaff;
}

.strength-bar.strong {
    width: 100%;
    background: var(--lime);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--lime);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: var(--lime);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.forgot-link:hover {
    opacity: 0.8;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(205, 255, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.info-item:hover {
    border-color: var(--lime);
    transform: translateX(5px);
}

.info-item .info-icon {
    width: 50px;
    height: 50px;
    background: rgba(205, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .info-icon i {
    font-size: 1.5rem;
    color: var(--lime);
}

.info-item .info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item .info-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .auth-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .auth-card {
        padding: 2rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }
}


/* ===== KYC PAGE ===== */
.kyc-section {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
}

.kyc-container {
    max-width: 900px;
    margin: 0 auto;
}

.kyc-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.progress-step.active .step-circle {
    background: var(--lime);
    border-color: var(--lime);
    color: #000;
}

.progress-step.completed .step-circle {
    background: rgba(205, 255, 0, 0.2);
    border-color: var(--lime);
    color: var(--lime);
}

.progress-step.completed .step-circle::after {
    content: '✓';
    position: absolute;
}

.progress-step span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.progress-step.active span {
    color: var(--lime);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 1rem;
    margin-bottom: 2rem;
}

.kyc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.kyc-step {
    display: none;
}

.kyc-step.active {
    display: block;
}

.kyc-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.kyc-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.kyc-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.kyc-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.kyc-info-banner {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(205, 255, 0, 0.05);
    border: 1px solid var(--lime);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.kyc-info-banner i {
    font-size: 1.5rem;
    color: var(--lime);
    flex-shrink: 0;
}

.kyc-info-banner strong {
    display: block;
    margin-bottom: 0.5rem;
}

.kyc-info-banner ul {
    margin: 0.5rem 0 0 1.5rem;
    color: var(--text-secondary);
}

.kyc-info-banner li {
    margin: 0.3rem 0;
}

.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.upload-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.upload-card:hover {
    border-color: var(--lime);
    background: rgba(205, 255, 0, 0.05);
}

.upload-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(205, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon i {
    font-size: 2rem;
    color: var(--lime);
}

.upload-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.upload-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.upload-preview {
    margin-top: 1rem;
    display: none;
}

.upload-preview img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--lime);
}

.selfie-container {
    text-align: center;
    margin-bottom: 2rem;
}

.selfie-preview {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s;
}

.selfie-preview:hover {
    border-color: var(--lime);
}

.selfie-preview i {
    font-size: 4rem;
    color: var(--text-secondary);
}

.selfie-preview p {
    color: var(--text-secondary);
}

.selfie-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.kyc-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.kyc-actions button {
    flex: 1;
}

.kyc-completion {
    text-align: center;
}

.completion-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(205, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.completion-icon i {
    font-size: 4rem;
    color: var(--lime);
}

.completion-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--lime);
    flex-shrink: 0;
}

.info-box strong {
    display: block;
    margin-bottom: 0.3rem;
}

.info-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.completion-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kyc-help {
    text-align: center;
    padding: 2rem;
    background: rgba(205, 255, 0, 0.05);
    border: 1px solid var(--lime);
    border-radius: 16px;
}

.kyc-help h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.kyc-help p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .kyc-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .progress-step {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .progress-line {
        display: none;
    }

    .kyc-card {
        padding: 2rem;
    }

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

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .kyc-actions {
        flex-direction: column;
    }

    .selfie-preview {
        width: 100%;
        height: 250px;
    }
}
