﻿.smart-contact {
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

    .smart-contact * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
    }

    /* Buttons */
    .smart-contact .btn-primary {
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        display: inline-block;
        cursor: pointer;
        background: linear-gradient(135deg, #00a8e8, #0056b3);
        color: #ffffff;
        border: none;
        box-shadow: 0 4px 14px rgba(0, 168, 232, 0.3);
    }

        .smart-contact .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 168, 232, 0.45);
        }

    .smart-contact .btn-outline {
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        display: inline-block;
        border: 2px solid #00a8e8;
        color: #0056b3;
        background: transparent;
    }

        .smart-contact .btn-outline:hover {
            background: rgba(0, 168, 232, 0.08);
            transform: translateY(-2px);
        }

    /* Hero Section */
    .smart-contact .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 80vh;
        padding: 80px 8%;
        gap: 50px;
        background: radial-gradient(circle at 90% 10%, rgba(0, 168, 232, 0.08) 0%, transparent 50%), radial-gradient(circle at 10% 90%, rgba(13, 44, 84, 0.04) 0%, transparent 50%);
    }

    .smart-contact .hero-content {
        flex: 1;
    }

    .smart-contact .badge {
        background: rgba(0, 168, 232, 0.1);
        color: #0056b3;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
        border: 1px solid rgba(0, 168, 232, 0.3);
        font-weight: 700;
        display: inline-block;
        margin-bottom: 20px;
    }

    .smart-contact .hero h1 {
        font-size: 3.1rem;
        color: #0d2c54;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 800;
    }

        .smart-contact .hero h1 span {
            color: #00a8e8;
            background: linear-gradient(135deg, #0d2c54, #00a8e8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .smart-contact .hero p {
        color: #64748b;
        font-size: 1.15rem;
        margin-bottom: 35px;
        max-width: 600px;
    }

    .smart-contact .hero-btns {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* Visual Hero Image Container */
    .smart-contact .hero-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .smart-contact .hero-img-container {
        position: relative;
        width: 100%;
        max-width: 520px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 168, 232, 0.2);
        border: 2px solid #e2e8f0;
        animation: smart-contact-float 4s ease-in-out infinite alternate;
    }

        .smart-contact .hero-img-container img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .smart-contact .hero-img-container:hover img {
            transform: scale(1.03);
        }

@keyframes smart-contact-float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-12px);
    }
}

/* Services Section */
.smart-contact .services {
    padding: 90px 8%;
    background-color: #f8fafc;
}

.smart-contact .section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .smart-contact .section-title h2 {
        font-size: 2.3rem;
        color: #0d2c54;
        margin-bottom: 12px;
        font-weight: 800;
    }

    .smart-contact .section-title p {
        color: #64748b;
        font-size: 1.1rem;
    }

.smart-contact .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.smart-contact .card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    top: 0;
}

    .smart-contact .card:hover {
        top: -8px;
        border-color: #00a8e8;
        box-shadow: 0 10px 25px -5px rgba(0, 168, 232, 0.15);
    }

    .smart-contact .card .icon {
        width: 55px;
        height: 55px;
        background: rgba(0, 168, 232, 0.1);
        color: #00a8e8;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 22px;
        font-weight: bold;
    }

    .smart-contact .card h3 {
        font-size: 1.25rem;
        color: #0d2c54;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .smart-contact .card p {
        color: #64748b;
        font-size: 0.98rem;
        line-height: 1.6;
    }

/* Tech Stack Table Section */
.smart-contact .tech-stack {
    padding: 90px 8%;
    background: #ffffff;
}

.smart-contact .table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.smart-contact table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    text-align: left;
}

.smart-contact th,
.smart-contact td {
    padding: 20px 28px;
    border-bottom: 1px solid #e2e8f0;
}

.smart-contact th {
    background: #0d2c54;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
}

.smart-contact td {
    color: #1e293b;
    font-size: 1rem;
}

.smart-contact tr:last-child td {
    border-bottom: none;
}

.smart-contact tr:nth-child(even) {
    background-color: #f8fafc;
}

.smart-contact td strong {
    color: #0056b3;
}

/* CTA Direct Contact Section */
.smart-contact .contact-cta {
    padding: 80px 8%;
    background: linear-gradient(135deg, #0d2c54, #002244);
    color: #ffffff;
    text-align: center;
    border-radius: 24px;
    margin: 0 8% 80px 8%;
    box-shadow: 0 20px 40px rgba(13, 44, 84, 0.2);
}

    .smart-contact .contact-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 800;
        color: white;
    }

    .smart-contact .contact-cta p {
        color: #cbd5e1;
        font-size: 1.15rem;
        max-width: 650px;
        margin: 0 auto 35px auto;
    }

.smart-contact .cta-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.smart-contact .cta-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

    .smart-contact .cta-item span {
        color: #00a8e8;
        margin-right: 8px;
    }

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .smart-contact .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

        .smart-contact .hero h1 {
            font-size: 2.2rem;
        }

        .smart-contact .hero p {
            margin: 0 auto 30px auto;
        }

    .smart-contact .hero-btns {
        justify-content: center;
    }

    .smart-contact .contact-cta {
        margin: 0 4% 60px 4%;
        padding: 50px 20px;
    }

        .smart-contact .contact-cta h2 {
            font-size: 1.8rem;
        }
}

.dapps {
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

    .dapps * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
    }

    /* Hero Section - Centered Modern Layout */
    .dapps .hero {
        text-align: center;
        padding: 100px 8% 60px 8%;
        background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
        position: relative;
    }

    .dapps .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f1f5f9;
        border: 1px solid #cbd5e1;
        color: #4f46e5;
        padding: 6px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

        .dapps .hero-tag .dot {
            width: 8px;
            height: 8px;
            background-color: #10b981;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px #10b981;
        }

    .dapps .hero h1 {
        font-size: 3.5rem;
        color: #0f172a;
        font-weight: 700;
        line-height: 1.15;
        max-width: 900px;
        margin: 0 auto 20px auto;
        letter-spacing: -1px;
    }

        .dapps .hero h1 span {
            background: linear-gradient(135deg, #4f46e5, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .dapps .hero p {
        color: #64748b;
        font-size: 1.2rem;
        max-width: 680px;
        margin: 0 auto 35px auto;
    }

    .dapps .hero-actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .dapps .btn-gradient {
        background: linear-gradient(135deg, #4f46e5, #2563eb);
        color: #ffffff;
        padding: 14px 32px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
        transition: all 0.3s ease;
        display: inline-block;
    }

        .dapps .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(79, 70, 229, 0.35);
        }

    .dapps .btn-light {
        background: #ffffff;
        color: #0f172a;
        border: 1px solid #e2e8f0;
        padding: 14px 32px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        display: inline-block;
    }

        .dapps .btn-light:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }

    /* Hero CSS Visual Diagram Preview */
    .dapps .dapp-preview-card {
        max-width: 950px;
        margin: 0 auto;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
        padding: 30px;
        position: relative;
    }

    .dapps .preview-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 25px;
    }

    .dapps .preview-dots {
        display: flex;
        gap: 8px;
    }

        .dapps .preview-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

    .dapps .dot-red {
        background-color: #ef4444;
    }

    .dapps .dot-yellow {
        background-color: #f59e0b;
    }

    .dapps .dot-green {
        background-color: #10b981;
    }

    .dapps .wallet-badge {
        background: #f0fdf4;
        color: #166534;
        border: 1px solid #bbf7d0;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
    }

    .dapps .preview-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .dapps .preview-box {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 20px;
        text-align: left;
        transition: all 0.3s ease;
    }

        .dapps .preview-box:hover {
            border-color: #4f46e5;
            transform: translateY(-3px);
            background: #ffffff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
        }

        .dapps .preview-box h4 {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dapps .preview-box .value {
            font-size: 1.4rem;
            color: #0f172a;
            font-weight: 800;
        }

    /* Architecture Flow Graph Section */
    .dapps .architecture-section {
        padding: 90px 8%;
        background-color: #f8fafc;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .dapps .section-heading {
        text-align: center;
        margin-bottom: 60px;
    }

        .dapps .section-heading h2 {
            font-size: 2.3rem;
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .dapps .section-heading p {
            color: #64748b;
            font-size: 1.1rem;
        }

    .dapps .flow-diagram {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: wrap;
    }

    .dapps .flow-step {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 25px;
        border-radius: 16px;
        flex: 1;
        min-width: 200px;
        text-align: center;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
        position: relative;
        transition: all 0.3s ease;
    }

        .dapps .flow-step:hover {
            border-color: #4f46e5;
            box-shadow: 0 12px 24px rgba(79, 70, 229, 0.12);
        }

    .dapps .step-num {
        width: 36px;
        height: 36px;
        background: #eef2ff;
        color: #4f46e5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin: 0 auto 15px auto;
        font-size: 0.9rem;
    }

    .dapps .flow-step h3 {
        font-size: 1.1rem;
        color: #0f172a;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .dapps .flow-step p {
        font-size: 0.9rem;
        color: #64748b;
    }

    .dapps .flow-connector {
        color: #cbd5e1;
        font-size: 1.5rem;
        font-weight: bold;
        animation: dapps-pulse 2s infinite ease-in-out;
    }

@keyframes dapps-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
        color: #4f46e5;
    }
}

/* Zig-Zag Feature Blocks */
.dapps .feature-zigzag {
    padding: 90px 8%;
    background: #ffffff;
}

.dapps .zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

    .dapps .zigzag-row.reverse {
        flex-direction: row-reverse;
    }

.dapps .zigzag-text {
    flex: 1;
}

    .dapps .zigzag-text .tag {
        color: #4f46e5;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
        display: block;
    }

    .dapps .zigzag-text h3 {
        font-size: 2rem;
        color: #0f172a;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .dapps .zigzag-text p {
        color: #64748b;
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

.dapps .zigzag-list {
    list-style: none;
}

    .dapps .zigzag-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #334155;
        font-weight: 600;
        margin-bottom: 10px;
    }

        .dapps .zigzag-list li::before {
            content: "✓";
            color: #10b981;
            font-weight: 800;
            background: #ecfdf5;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

.dapps .zigzag-image {
    flex: 1;
}

.dapps .img-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

    .dapps .img-frame:hover {
        transform: scale(1.02);
    }

    .dapps .img-frame img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Capabilities Grid */
.dapps .capabilities {
    padding: 90px 8%;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.dapps .cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dapps .cap-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

    .dapps .cap-card:hover {
        border-color: #4f46e5;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(79, 70, 229, 0.08);
    }

.dapps .cap-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.dapps .cap-card h3 {
    font-size: 1.3rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
}

.dapps .cap-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tech Stack Pills / Badge Cloud */
.dapps .tech-cloud {
    padding: 90px 8%;
    background: #ffffff;
}

.dapps .tech-category {
    margin-bottom: 35px;
}

    .dapps .tech-category h4 {
        font-size: 1.1rem;
        color: #0f172a;
        font-weight: 700;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.dapps .pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dapps .pill {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .dapps .pill:hover {
        background: #4f46e5;
        color: #ffffff;
        border-color: #4f46e5;
        transform: translateY(-2px);
    }

/* CTA Section */
.dapps .cta-wrapper {
    padding: 0 8% 90px 8%;
    background: #ffffff;
}

.dapps .cta-card {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
}

    .dapps .cta-card h2 {
        font-size: 2.6rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .dapps .cta-card p {
        color: #cbd5e1;
        font-size: 1.15rem;
        max-width: 600px;
        margin: 0 auto 35px auto;
    }

.dapps .cta-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.dapps .info-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
}

    .dapps .info-badge span {
        color: #38bdf8;
        margin-right: 6px;
    }

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .dapps .hero h1 {
        font-size: 2.4rem;
    }

    .dapps .zigzag-row,
    .dapps .zigzag-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .dapps .flow-diagram {
        flex-direction: column;
    }

    .dapps .flow-connector {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .dapps .cta-card h2 {
        font-size: 1.9rem;
    }
}
.dapps {
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

    .dapps * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
    }

    /* Hero Split Section */
    .dapps .hero-defi {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 80px 8%;
        gap: 60px;
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        border-bottom: 1px solid #f1f5f9;
    }

    .dapps .hero-text {
        flex: 1.1;
    }

    .dapps .pill-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #e0e7ff;
        color: #3730a3;
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .dapps .hero-text h1 {
        font-size: 3.2rem;
        color: #0f172a;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

        .dapps .hero-text h1 span {
            color: #2563eb;
            background: linear-gradient(135deg, #2563eb, #0284c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .dapps .hero-text p {
        color: #475569;
        font-size: 1.15rem;
        margin-bottom: 35px;
        max-width: 580px;
    }

    .dapps .hero-btn-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .dapps .btn-blue {
        background: #2563eb;
        color: #ffffff;
        padding: 14px 30px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        transition: all 0.3s ease;
        display: inline-block;
    }

        .dapps .btn-blue:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
        }

    .dapps .btn-dark-outline {
        background: transparent;
        color: #0f172a;
        border: 2px solid #e2e8f0;
        padding: 14px 30px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .dapps .btn-dark-outline:hover {
            border-color: #0f172a;
            background: #0f172a;
            color: #ffffff;
        }

    /* Hero DeFi Calculator Visual Simulation */
    .dapps .hero-visual-card {
        flex: 0.9;
        background: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 24px;
        padding: 30px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
        position: relative;
    }

    .dapps .calc-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f1f5f9;
    }

        .dapps .calc-header h4 {
            font-size: 1.1rem;
            color: #0f172a;
            font-weight: 700;
        }

    .dapps .calc-tag {
        background: #ecfdf5;
        color: #059669;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .dapps .calc-row {
        margin-bottom: 20px;
    }

        .dapps .calc-row label {
            display: block;
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 8px;
            font-weight: 600;
        }

    .dapps .calc-input-box {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        padding: 12px 16px;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        font-weight: 700;
        color: #0f172a;
    }

    .dapps .calc-results {
        background: #1e293b;
        color: #ffffff;
        border-radius: 14px;
        padding: 20px;
        margin-top: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .dapps .calc-results .apy-rate {
            font-size: 1.6rem;
            color: #38bdf8;
            font-weight: 800;
        }

    /* Section Title Styling */
    .dapps .center-title {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px auto;
    }

        .dapps .center-title h2 {
            font-size: 2.3rem;
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .dapps .center-title p {
            color: #64748b;
            font-size: 1.1rem;
        }

    /* DeFi Ecosystem Architecture Graph */
    .dapps .architecture-section {
        padding: 90px 8%;
        background: #ffffff;
    }

    .dapps .graph-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        position: relative;
    }

    .dapps .graph-card {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

        .dapps .graph-card:hover {
            background: #ffffff;
            border-color: #2563eb;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
        }

    .dapps .graph-icon {
        width: 50px;
        height: 50px;
        background: #eff6ff;
        color: #2563eb;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin: 0 auto 15px auto;
    }

    .dapps .graph-card h3 {
        font-size: 1.1rem;
        color: #0f172a;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .dapps .graph-card p {
        color: #64748b;
        font-size: 0.88rem;
    }

    /* Split Feature Section with Image */
    .dapps .defi-services {
        padding: 90px 8%;
        background: #f8fafc;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .dapps .service-box-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .dapps .service-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 35px;
        transition: all 0.3s ease;
    }

        .dapps .service-card:hover {
            border-color: #2563eb;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
        }

        .dapps .service-card .badge-sm {
            background: #f1f5f9;
            color: #475569;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .dapps .service-card h3 {
            font-size: 1.3rem;
            color: #0f172a;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .dapps .service-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }

    /* Interactive High-Performance Metrics Banner */
    .dapps .metrics-banner {
        padding: 80px 8%;
        background: #ffffff;
    }

    .dapps .metrics-container {
        display: flex;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .dapps .metrics-image {
        flex: 1;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #cbd5e1;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    }

        .dapps .metrics-image img {
            width: 100%;
            height: auto;
            display: block;
        }

    .dapps .metrics-info {
        flex: 1;
    }

        .dapps .metrics-info h3 {
            font-size: 2.2rem;
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 18px;
            line-height: 1.25;
        }

        .dapps .metrics-info p {
            color: #475569;
            font-size: 1.05rem;
            margin-bottom: 25px;
        }

    .dapps .metrics-list {
        list-style: none;
    }

        .dapps .metrics-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #1e293b;
            font-weight: 600;
            margin-bottom: 12px;
        }

            .dapps .metrics-list li::before {
                content: "➔";
                color: #2563eb;
                font-weight: bold;
            }

    /* Comparison Table Section */
    .dapps .tech-section {
        padding: 90px 8%;
        background: #f8fafc;
    }

    .dapps .table-container {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        overflow-x: auto;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    }

    .dapps table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    .dapps th, .dapps td {
        padding: 18px 24px;
        border-bottom: 1px solid #f1f5f9;
    }

    .dapps th {
        background: #f1f5f9;
        color: #0f172a;
        font-weight: 700;
    }

    .dapps td {
        color: #334155;
        font-size: 0.95rem;
    }

    .dapps tr:last-child td {
        border-bottom: none;
    }

    .dapps tr:hover {
        background-color: #f8fafc;
    }

    /* CTA Section */
    .dapps .cta-block {
        padding: 80px 8%;
        background: #ffffff;
    }

    .dapps .cta-inner {
        background: linear-gradient(135deg, #1e293b, #0f172a);
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        color: #ffffff;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

        .dapps .cta-inner h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .dapps .cta-inner p {
            color: #cbd5e1;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 30px auto;
        }

    .dapps .company-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

/* Responsiveness */
@media (max-width: 900px) {
    .dapps .hero-defi {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .dapps .hero-text h1 {
        font-size: 2.3rem;
    }

    .dapps .hero-text p {
        margin: 0 auto 30px auto;
    }

    .dapps .hero-btn-group {
        justify-content: center;
    }

    .dapps .metrics-container {
        flex-direction: column;
    }

    .dapps .cta-inner h2 {
        font-size: 1.8rem;
    }
}
.nft-page-white {
    background-color: #ffffff;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
    overflow-x: hidden;
    padding: 20px 0 60px 0;
    box-sizing: border-box;
}

    .nft-page-white * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* --- HEADER NAVIGATION --- */
    .nft-page-white .white-nav {
        max-width: 1200px;
        margin: 0 auto 50px auto;
        padding: 16px 28px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nft-page-white .brand-title strong {
        color: #003b73;
        font-size: 1.2rem;
        font-weight: 800;
        display: block;
    }

    .nft-page-white .brand-title span {
        color: #00a3e0;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .nft-page-white .status-pill {
        background: #f0f9ff;
        color: #00a3e0;
        border: 1px solid #bae6fd;
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nft-page-white .status-dot {
        width: 8px;
        height: 8px;
        background: #00a3e0;
        border-radius: 50%;
    }

    /* --- HERO SECTION --- */
    .nft-page-white .hero-section {
        max-width: 900px;
        margin: 0 auto 70px auto;
        text-align: center;
        padding: 0 20px;
    }

    .nft-page-white .hero-badge {
        display: inline-block;
        background: #e6f6fc;
        color: #00a3e0;
        font-size: 0.85rem;
        font-weight: 700;
        padding: 6px 18px;
        border-radius: 20px;
        margin-bottom: 20px;
        border: 1px solid #b3e5f7;
    }

    .nft-page-white .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #003b73;
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

        .nft-page-white .hero-title span {
            color: #00a3e0;
        }

    .nft-page-white .hero-description {
        color: #475569;
        font-size: 1.1rem;
        line-height: 1.7;
        max-width: 720px;
        margin: 0 auto 35px auto;
    }

    .nft-page-white .btn-group {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .nft-page-white .btn-primary {
        background: #00a3e0;
        color: #ffffff;
        padding: 15px 36px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(0, 163, 224, 0.2);
        transition: all 0.3s ease;
    }

        .nft-page-white .btn-primary:hover {
            background: #0081b3;
            transform: translateY(-2px);
            box-shadow: 0 14px 25px rgba(0, 163, 224, 0.3);
        }

    .nft-page-white .btn-secondary {
        background: #ffffff;
        color: #003b73;
        border: 2px solid #003b73;
        padding: 13px 32px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .nft-page-white .btn-secondary:hover {
            background: #003b73;
            color: #ffffff;
        }

    /* --- STATS DISPLAY STRIP --- */
    .nft-page-white .stats-container {
        max-width: 1200px;
        margin: 0 auto 80px auto;
        padding: 0 20px;
    }

    .nft-page-white .stats-grid {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 30px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }

    .nft-page-white .stat-card h3 {
        font-size: 2.2rem;
        color: #003b73;
        font-weight: 800;
    }

    .nft-page-white .stat-card p {
        color: #64748b;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 4px;
    }

    /* --- BENTO CARD LAYOUT --- */
    .nft-page-white .bento-section {
        max-width: 1200px;
        margin: 0 auto 90px auto;
        padding: 0 20px;
    }

    .nft-page-white .section-heading {
        text-align: center;
        margin-bottom: 40px;
    }

        .nft-page-white .section-heading h2 {
            font-size: 2.2rem;
            color: #003b73;
            font-weight: 800;
        }

        .nft-page-white .section-heading p {
            color: #64748b;
            font-size: 1rem;
            margin-top: 6px;
        }

    .nft-page-white .bento-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .nft-page-white .bento-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 32px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
    }

        .nft-page-white .bento-card:hover {
            border-color: #00a3e0;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 163, 224, 0.1);
        }

    .nft-page-white .card-span-2 {
        grid-column: span 2;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border-left: 5px solid #00a3e0;
    }

    .nft-page-white .card-icon {
        width: 48px;
        height: 48px;
        background: #e6f6fc;
        color: #00a3e0;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .nft-page-white .bento-card h3 {
        font-size: 1.3rem;
        color: #003b73;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .nft-page-white .bento-card p {
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* --- PROCESS FLOW CARDS --- */
    .nft-page-white .process-section {
        background: #f8fafc;
        padding: 80px 20px;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 80px;
    }

    .nft-page-white .process-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .nft-page-white .process-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 24px;
        position: relative;
    }

    .nft-page-white .step-number {
        font-size: 0.8rem;
        font-weight: 800;
        color: #00a3e0;
        background: #e6f6fc;
        padding: 4px 10px;
        border-radius: 6px;
        display: inline-block;
        margin-bottom: 14px;
    }

    .nft-page-white .process-card h4 {
        font-size: 1.1rem;
        color: #003b73;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .nft-page-white .process-card p {
        font-size: 0.88rem;
        color: #64748b;
        line-height: 1.5;
    }

    /* --- CALL TO ACTION --- */
    .nft-page-white .cta-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .nft-page-white .cta-box {
        background: linear-gradient(135deg, #003b73 0%, #001f3f 100%);
        border-radius: 20px;
        padding: 60px 30px;
        text-align: center;
        color: #ffffff;
        box-shadow: 0 20px 40px rgba(0, 59, 115, 0.15);
    }

        .nft-page-white .cta-box h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 16px;
            color:white;
        }

        .nft-page-white .cta-box p {
            color: #cbd5e1;
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto 30px auto;
        }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 900px) {
    .nft-page-white .hero-title {
        font-size: 2.5rem;
    }

    .nft-page-white .bento-grid {
        grid-template-columns: 1fr;
    }

    .nft-page-white .card-span-2 {
        grid-column: span 1;
    }

    .nft-page-white .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nft-page-white .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nft-page-white .stats-grid,
    .nft-page-white .process-grid {
        grid-template-columns: 1fr;
    }

    .nft-page-white .white-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}