/*==========================================
        Ravify OPTIMIZER AI V2
===========================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {

    --bg: #07141D;
    --bg2: #0C1D28;

    --glass: rgba(255, 255, 255, .06);

    --glass2: rgba(255, 255, 255, .03);

    --border: rgba(255, 255, 255, .08);

    --text: #F8FAFC;

    --muted: #9FB2C1;

    --emerald: #36D399;

    --mint: #73F0C7;

    --cyan: #4EC7F7;

    --shadow:
        0 30px 80px rgba(0, 0, 0, .35);

    --radius: 28px;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;

    background:
        linear-gradient(135deg,
            #07141D,
            #081B23,
            #09262F);

    color: var(--text);

    overflow-x: hidden;

    min-height: 100vh;

    position: relative;

}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 8% 20%,
            rgba(0, 255, 255, .20),
            transparent 40%),
        radial-gradient(ellipse at 92% 12%,
            rgba(108, 99, 255, .22),
            transparent 38%),
        radial-gradient(ellipse at 55% 88%,
            rgba(0, 200, 255, .14),
            transparent 42%);
    filter: blur(100px);
    animation: aurora 18s infinite alternate ease-in-out;
    z-index: -5;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -4;
    pointer-events: none;
}

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #07141D;

}

::-webkit-scrollbar-thumb {

    background: #214C56;

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--emerald);

}

::selection {

    background: var(--emerald);

    color: #07141D;

}

@keyframes aurora {

    0% {

        transform:
            translateY(0) scale(1);

    }

    50% {

        transform:
            translateY(-60px) scale(1.15);

    }

    100% {

        transform:
            translateY(40px) scale(1.08);

    }

}

@keyframes floatGlow {

    0% {

        transform:
            translateX(0);

    }

    100% {

        transform:
            translateX(-120px) translateY(80px);

    }

}

/* ==========================================
   HERO SECTION
========================================== */
/* Prevent hero from hiding behind navbar */


.hero {
    padding: 73px 60px 80px;

    width: 100%;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;



}

.glass {

    width: 100%;

    max-width: 1100px;

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 40px;

    padding: 22px;

    text-align: center;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .35);

}

.glass::before {

    content: "";

    position: absolute;

    top: -50%;

    left: -20%;

    width: 220px;

    height: 220%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .08),

            transparent);

    transform: rotate(25deg);

    animation: shine 8s infinite;

}

.badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 100px;

    font-size: 15px;

    font-weight: 600;

    color: #9BE8C8;

    margin-bottom: 35px;

    animation: float 5s infinite ease-in-out;

}

.badge i {

    font-size: 15px;

    color: #4EF0C3;

}

.hero h1 {

    font-size: 42px;

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 25px;

    max-width: 900px;

    margin-inline: auto;

}

.hero h1 span {

    background:

        linear-gradient(90deg,

            #4EF0C3,

            #66D6FF,

            #C4FFF2);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

}

.hero-text {

    max-width: 650px;

    margin: auto;

    font-size: 15px;

    line-height: 1.8;

    color: var(--muted);

    margin-bottom: 55px;

}

.upload-box {

    max-width: 560px;

    margin: 50px auto;

}

.upload-area {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    padding: 22px;

    border-radius: 35px;

    background: rgba(255, 255, 255, .04);

    border: 2px dashed rgba(0, 255, 255, .28);

    animation: uploadGlow 3s ease-in-out infinite;

    cursor: pointer;

    transition: .45s;

    position: relative;

    overflow: hidden;

}

.upload-area:hover {

    transform:

        translateY(-8px);

    border-color: #4EF0C3;

    box-shadow:

        0 30px 80px rgba(78, 240, 195, .15);

}

.upload-circle {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background:

        linear-gradient(135deg,

            #4EF0C3,

            #47C8F5);

    font-size: 20px;

    color: white;

    margin-bottom: 25px;

    animation: float 4s infinite;

    box-shadow:

        0 20px 45px rgba(78, 240, 195, .25);

}

.upload-area h2 {

    font-size: 34px;

    margin-bottom: 15px;

    font-weight: 700;

}

.upload-area p {

    color: var(--muted);

    font-size: 15px;

    margin-bottom: 10px;

}

.upload-area span {

    font-size: 15px;

    color: #7FDCC3;

    letter-spacing: 1px;

}

.upload-line {

    width: 56px;

    height: 5px;

    border-radius: 20px;

    background:

        linear-gradient(90deg,

            #4EF0C3,

            #47C8F5);

    margin-top: 30px;

    animation: pulseLine 2s infinite;

}

#filename {

    margin-top: 25px;

    font-size: 15px;

    font-weight: 600;

    color: #8CF2CE;

}

#preview {

    display: none;

    margin: 35px auto;

    width: 100%;

    max-width: 550px;

    border-radius: 25px;

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .35);

    transition: .4s;

}

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}

@keyframes shine {

    0% {

        left: -35%;

    }

    100% {

        left: 130%;

    }

}

@keyframes pulseLine {

    0% {

        width: 56px;

        opacity: .5;

    }

    50% {

        width: 140px;

        opacity: 1;

    }

    100% {

        width: 56px;

        opacity: .5;

    }

}

/* ==========================================
   STATISTICS
========================================== */

.stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin: 18px 0;

}

.stat {

    background: rgba(255, 255, 255, .04);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    padding: 22px;

    transition: .45s;

    position: relative;

    overflow: hidden;

}

.stat::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .08),
            transparent);

    transition: .8s;

}

.stat:hover::before {

    left: 120%;

}

.stat:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(0, 255, 255, .15),
        0 0 30px rgba(108, 99, 255, .10);

}

.stat h2 {

    font-size: 20px;

    font-weight: 800;

    background: linear-gradient(90deg, #34D399, #60A5FA);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 8px;

}

.stat p {

    color: var(--muted);

    font-size: 15px;

}

.feature-title {

    margin: 40px 0 35px;

}

.feature-title h2 {

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 10px;

}

.feature-title p {

    color: var(--muted);

    font-size: 15px;

}

.cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 40px;

}

.card {

    background: rgba(255, 255, 255, .04);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    padding: 14px;

    transition: .45s;

    position: relative;

    overflow: hidden;

}

.card:hover {

    transform:
        translateY(-15px) rotateX(4deg);

    box-shadow:
        0 35px 90px rgba(52, 211, 153, .15);

}

.card::before {

    content: "";

    position: absolute;

    top: -60px;
    right: -60px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:

        radial-gradient(circle,
            rgba(52, 211, 153, .18),
            transparent);

    filter: blur(30px);

}

.card-icon {

    width: 75px;

    height: 75px;

    border-radius: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    margin-bottom: 22px;

    color: white;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);

}

.emerald {

    background: linear-gradient(135deg, #34D399, #22C55E);

}

.blue {

    background: linear-gradient(135deg, #38BDF8, #3B82F6);

}

.green {

    background: linear-gradient(135deg, #14B8A6, #34D399);

}

.card h3 {

    font-size: 20px;

    margin-bottom: 15px;

}

.card p {

    color: var(--muted);

    line-height: 1.8;

    margin-bottom: 25px;

    font-size: 15px;

}

.card button {

    padding: 14px 24px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(135deg, #34D399, #38BDF8);

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

}

.card button:hover {

    transform: scale(1.06);

    box-shadow: 0 18px 45px rgba(52, 211, 153, .25);

}

.prompt-card {

    margin-top: 70px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    padding: 16px;

    backdrop-filter: blur(25px);

}

.prompt-header {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 20px;

}

.prompt-header i {

    font-size: 34px;

    color: #34D399;

}

.prompt-header h2 {

    font-size: 36px;

}

.prompt-box {

    width: 100%;

    padding: 22px;

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, .08);

    background: rgba(255, 255, 255, .03);

    color: white;

    font-size: 15px;

    outline: none;

    transition: .35s;

    margin-top: 25px;

}

.prompt-box:focus {

    border-color: #34D399;

    box-shadow: 0 0 30px rgba(52, 211, 153, .2);

}

.chips {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 15px;

    margin: 40px 0;

}

.chips button {

    padding: 14px 22px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 50px;

    color: white;

    cursor: pointer;

    transition: .35s;

}

.chips button:hover {

    background: #34D399;

    color: #07141D;

    transform: translateY(-5px);

}

.transform-box {

    margin-top: 40px;

    text-align: center;

}

.main-btn {

    padding: 20px 55px;

    font-size: 20px;

    font-weight: 700;

    border: none;

    border-radius: 22px;

    background: linear-gradient(135deg, #4EF7F7, #6C63FF);

    color: white;

    cursor: pointer;

    transition: .4s;

    box-shadow: 0 25px 60px rgba(78, 247, 247, .22);

}

.main-btn:hover {

    transform:
        translateY(-6px) scale(1.03);

    box-shadow:
        0 35px 80px rgba(78, 247, 247, .35),
        0 0 60px rgba(108, 99, 255, .25);

}

.powered {

    margin-top: 18px;

    color: var(--muted);

    font-size: 15px;

}

/*=========================================
        RESULT PAGE
=========================================*/

.result-container {

    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
}

.report-card {

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 35px;

    padding: 16px;

    margin-bottom: 45px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);

}

.report-card h2 {

    font-size: 20px;

    margin-bottom: 15px;

}

.report-card p {

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;

}

.image-comparison {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-content: center;
    align-items: start;

}

.image-card {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    padding: 25px;

    transition: .4s;

    overflow: hidden;

    position: relative;

}

.image-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 35px 80px rgba(52, 211, 153, .15);

}

.image-card img {

    width: 100%;

    border-radius: 22px;

    transition: .5s;

}

.image-card:hover img {

    transform: scale(1.04);

}

.ai-dashboard {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin-top: 45px;
}

.dashboard-card {

    background: linear-gradient(145deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));

    padding: 22px;

    border-radius: 28px;

    border: 1px solid rgba(255, 255, 255, .08);

    text-align: center;

    transition: .4s;

}

.dashboard-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 60px rgba(52, 211, 153, .15);

}

.dashboard-card h2 {

    font-size: 40px;

    background: linear-gradient(90deg, #34D399, #38BDF8);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 8px;

}

.dashboard-card p {

    color: var(--muted);

}

.stats-box {

    margin-top: 45px;

    padding: 14px;

    background: rgba(255, 255, 255, .05);

    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

}

.stats-box h2 {

    font-size: 34px;

    margin-bottom: 25px;

}

.stats-box p {

    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    color: var(--muted);

    font-size: 17px;

}

.recommendation {

    margin-top: 40px;

    padding: 14px;

    background: linear-gradient(135deg,
            rgba(52, 211, 153, .12),
            rgba(96, 165, 250, .08));

    border-radius: 30px;

    border: 1px solid rgba(52, 211, 153, .18);

}

.buttons {

    display: flex;

    justify-content: center;

    gap: 16px;

    margin-top: 24px;

    flex-wrap: wrap;

}

.btn {

    padding: 8px 18px;

    border-radius: 18px;

    font-size: 17px;

    font-weight: 700;

    background: linear-gradient(135deg,
            #34D399,
            #38BDF8);

    color: white;

    transition: .35s;

    box-shadow: 0 18px 45px rgba(52, 211, 153, .20);

}

.btn:hover {

    transform:
        translateY(-6px) scale(1.04);

    box-shadow: 0 30px 70px rgba(52, 211, 153, .30);

}

.success {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    background: rgba(52, 211, 153, .15);

    border-radius: 50px;

    color: #7EF3C4;

    font-weight: 700;

    margin-bottom: 25px;

}

.image-card::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background:

        radial-gradient(circle,

            rgba(52, 211, 153, .18),

            transparent);

    top: -80px;

    right: -80px;

    filter: blur(35px);

    pointer-events: none;

}

@media(max-width:1100px) {

    .cards {

        grid-template-columns: 1fr;

    }

    .stats {

        grid-template-columns: repeat(2, 1fr);

    }

    .ai-dashboard {

        grid-template-columns: repeat(2, 1fr);

    }

    .image-comparison {

        grid-template-columns: 1fr;

    }

    .hero h1 {

        font-size: 55px;

    }

}

@media(max-width:700px) {

    .hero {

        padding: 22px;

    }

    .glass {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 22px;

    }

    .hero h1 {

        font-size: 20px;

    }

    .stats {

        grid-template-columns: 1fr;

    }

    .ai-dashboard {

        grid-template-columns: 1fr;

    }

    .main-btn {

        width: 100%;

    }

    .prompt-box {

        font-size: 15px;

    }

}

/* ===============================
   PREMIUM ANIMATIONS
================================ */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

.upload-circle {

    animation: floating 4s ease-in-out infinite;

}

.card {

    transform-style: preserve-3d;

    will-change: transform;

}

.card:hover {

    transform:
        perspective(1200px) rotateX(5deg) rotateY(-5deg) translateY(-15px);

}

.card::after {

    content: "";

    position: absolute;

    inset: 0;

    padding: 1px;

    border-radius: 30px;

    background:

        linear-gradient(135deg,
            transparent,
            rgba(52, 211, 153, .45),
            rgba(78, 199, 247, .45),
            transparent);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;

    opacity: 0;

    transition: .4s;

}

.card:hover::after {

    opacity: 1;

}

.main-btn {

    position: relative;

    overflow: hidden;

}

.main-btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 100%;

    height: 100%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .35),

            transparent);

    transition: .8s;

}

.main-btn:hover::before {

    left: 120%;

}

.upload-area::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:

        radial-gradient(circle,

            rgba(52, 211, 153, .20),

            transparent);

    top: -150px;

    right: -120px;

    transition: .5s;

}

.upload-area:hover::before {

    transform: scale(1.4);

}

#preview:hover {

    transform:

        scale(1.04) rotate(-1deg);

}

button:active {

    transform: scale(.97);

}

.hero {

    animation: fadeUp 1s ease;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:

            translateY(40px);

    }

    to {

        opacity: 1;

        transform:

            translateY(0);

    }

}

.stat {

    animation: floating 6s infinite;

}

.stat:nth-child(2) {

    animation-delay: 1s;

}

.stat:nth-child(3) {

    animation-delay: 2s;

}

.stat:nth-child(4) {

    animation-delay: 3s;

}

.card:hover {

    box-shadow:

        0 25px 80px rgba(52, 211, 153, .18),

        0 0 50px rgba(78, 199, 247, .08);

}

.prompt-box:focus {

    background: rgba(255, 255, 255, .05);

}

html {

    scroll-behavior: smooth;

}

.glass {

    backdrop-filter:

        blur(28px) saturate(180%);

}

.loading {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    border: 5px solid rgba(255, 255, 255, .1);

    border-top-color: #34D399;

    animation: spin 1s linear infinite;

    margin: auto;

}

@keyframes spin {

    100% {

        transform: rotate(360deg);

    }

}

.glass {

    box-shadow:

        0 40px 120px rgba(0, 0, 0, .45),

        0 0 60px rgba(52, 211, 153, .08);

}

.mouse-light {

    mix-blend-mode: screen;

    opacity: .75;

}

button:focus-visible,
input:focus-visible,
label:focus-visible {

    outline: 3px solid rgba(52, 211, 153, .45);

    outline-offset: 4px;

}

.upload-area.drag {

    border-color: #34D399;

    background: rgba(52, 211, 153, .08);

    transform: scale(1.02);

    box-shadow:
        0 0 50px rgba(52, 211, 153, .25);

}

.card hr {

    border: none;

    height: 1px;

    background: rgba(255, 255, 255, .08);

    margin: 20px 0;

}

.status-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(52, 211, 153, .12);

    color: #7EE7C8;

    font-weight: 600;

    font-size: 14px;

}

.image-card img {

    aspect-ratio: 4/3;

    object-fit: contain;

    background: #08141C;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 220px;

}

.prompt-box::placeholder {

    color: #8FA7B6;

    opacity: 1;

}

.footer {

    margin-top: 70px;

    text-align: center;

    color: var(--muted);

    font-size: 15px;

    padding-bottom: 30px;

}

@media(max-width:600px) {

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 17px;
    }

    .upload-area {
        padding: 40px 20px;
    }

    .card {
        padding: 14px;
    }

}

/* ===== RESULT PAGE FIX ===== */

.image-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.image-info p {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    padding: 14px;
    border-radius: 14px;
    text-align: center;
    color: #E5E7EB;
}

.recommend-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 25px;

}

.recommend-card {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 22px;

    transition: .35s;

}

.recommend-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(52, 211, 153, .18);

}

.recommend-icon {

    width: 60px;

    height: 60px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    background: linear-gradient(135deg, #34D399, #38BDF8);

    color: white;

    margin-bottom: 18px;

}

.recommend-card h3 {

    margin-bottom: 10px;

    font-size: 22px;

}

.recommend-card p {

    color: #A7B4C2;

    line-height: 1.6;

}

/* ================= HEADER ================= */

.navbar {

    position: fixed;

    top: 10px;
    height: 62px;
    left: 50%;

    transform: translateX(-50%);

    width: 88%;

    max-width: 1000px;

    padding: 8px 22px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: rgba(13, 18, 30, .55);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 20px;

    z-index: 9999;

    transition: .35s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(0, 255, 255, .15), rgba(90, 80, 255, .10));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 20px rgba(0, 255, 255, .10),
        0 0 35px rgba(130, 80, 255, .08),
        inset 0 0 15px rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: .35s;
    animation: logoBreath 6s ease-in-out infinite;
}

.logo-box:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 40px rgba(0, 255, 255, .18),
        0 0 60px rgba(110, 70, 255, .12);
}

.ravify-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, .25));
}

.brand h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.brand span {
    font-size: 11px;
    color: #77e6ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {

    display: flex;



    align-items: center;

    gap: 42px;

    list-style: none;

    margin: 0;

    padding: 0;

}

.nav-links a {


    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 15px;
    color: white;

    text-decoration: none;

    font-weight: 800;

    transition: .3s;

    position: relative;

}

.nav-links a:hover {

    color: #38d9ff;

    transform: translateY(-2px);
}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: #34D399;

    transition: .3s;

}

.nav-links a:hover::after {

    width: 100%;

}

.status {

    display: flex;

    align-items: center;

    gap: 10px;

    background: rgba(0, 255, 255, .08);

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    color: #77e6ff;

    border: 1px solid rgba(0, 255, 255, .15);

}

.dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #34D399;

    box-shadow: 0 0 15px #34D399;

    animation: pulse 1.5s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(1);

        opacity: 1;

    }

    50% {

        transform: scale(1.5);

        opacity: .4;

    }

    100% {

        transform: scale(1);

        opacity: 1;

    }
}

/* ===========================
   AI TOOLS DROPDOWN
=========================== */

.dropdown {

    position: relative;

}

.dropdown-menu {

    position: absolute;

    top: 60px;

    left: 0;

    width: 250px;

    background: rgba(8, 20, 29, .96);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    padding: 12px;

    display: none;

    flex-direction: column;

    gap: 10px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .3);

}

.dropdown:hover .dropdown-menu {

    display: flex;

    animation: fadeMenu .25s ease;

}

.dropdown-menu button {

    background: transparent;

    border: none;

    color: white;

    text-align: left;

    padding: 12px;

    border-radius: 12px;

    cursor: pointer;

    transition: .3s;

    font-size: 15px;

}

.dropdown-menu button:hover {

    background: rgba(52, 211, 153, .15);

    color: #34D399;

    padding-left: 18px;

}

@keyframes fadeMenu {

    from {

        opacity: 0;

        transform: translateY(10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==========================
        AI TOOLBOX
==========================*/

.ai-tools {

    width: 100%;

    margin-top: 24px;

    padding: 14px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    backdrop-filter: blur(18px);

}

.ai-tools h2 {

    text-align: center;

    font-size: 34px;

    color: #ffffff;

    margin-bottom: 10px;

}

.ai-tools p {

    text-align: center;

    color: #B8D5E2;

    margin-bottom: 35px;

    font-size: 15px;

}

.tool-category {

    margin-bottom: 35px;

}

.tool-category h3 {

    color: #46F2D7;

    margin-bottom: 18px;

    font-size: 20px;

    font-weight: 700;

}

.tool-category {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    align-items: center;

}

.tool-category h3 {

    width: 100%;

}

.tool-category button {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(70, 242, 215, .18);

    padding: 14px 24px;

    border-radius: 14px;

    color: white;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.tool-category button:hover {

    background: linear-gradient(135deg, #35E3B4, #38BDF8);

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(56, 189, 248, .25);

}

.tool-category button:active {

    transform: scale(.96);

}

@media(max-width:900px) {

    .tool-category {

        justify-content: center;

    }

    .ai-tools {

        padding: 22px;

    }

    .tool-category button {

        width: 100%;

    }

}

/*==========================
        GRID
==========================*/

.tools-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 16px;

    margin-top: 30px;

}

.tool-box {

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 25px;

    transition: .35s;

}

.tool-box:hover {

    transform: translateY(-8px);

    border-color: #3DD9C5;

    box-shadow: 0 15px 40px rgba(61, 217, 197, .2);

}

.tool-box h3 {

    margin-bottom: 18px;

    color: #45E5C9;

    font-size: 22px;

}

.tool-box button {

    width: 100%;

    margin-bottom: 12px;

    padding: 13px;

    border: none;

    border-radius: 12px;

    background: rgba(255, 255, 255, .05);

    color: white;

    cursor: pointer;

    transition: .3s;

    font-weight: 600;

}

.tool-box button:hover {

    background: linear-gradient(135deg, #3DD9C5, #36B5FF);

}

.tool-modal {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .80);

    backdrop-filter: blur(8px);

    justify-content: center;

    align-items: center;

    z-index: 99999;

    animation: fadeIn .25s ease;

}

.tool-modal-content {

    position: relative;

    width: 680px;

    max-width: 95vw;

    background: rgba(10, 18, 30, .92);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(0, 255, 255, .15);

    border-radius: 28px;

    padding: 36px 32px 32px;

    box-shadow:
        0 0 60px rgba(0, 255, 255, .08),
        0 0 120px rgba(108, 99, 255, .08),
        0 40px 80px rgba(0, 0, 0, .5);

}

.tool-modal-content h2 {

    color: white;

    margin-bottom: 28px;

    text-align: center;

    font-size: 22px;

    background: linear-gradient(90deg, #4EF7F7, #a78bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.scrollable-modal-content {
    max-height: 85vh;
    overflow-y: auto;
    width: 900px;
}

.scrollable-modal-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.scrollable-modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.15);
    border-radius: 8px;
}

.scrollable-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 255, 0.3);
}

.wide-modal-content {
    width: 1100px;
}

#modalButtons {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

}

.tool-btn {

    padding: 16px 20px;

    background: rgba(0, 255, 255, .06);

    color: #c8f4ff;

    border: 1px solid rgba(0, 255, 255, .18);

    border-radius: 14px;

    cursor: pointer;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .5px;

    transition: .3s;

    animation: toolBtnPop .4s ease both;

    backdrop-filter: blur(10px);

    position: relative;

    overflow: hidden;

}

.tool-btn::before {

    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,
            rgba(0, 255, 255, .12),
            rgba(108, 99, 255, .08));

    opacity: 0;

    transition: .3s;

}

.tool-btn:hover::before {

    opacity: 1;

}

.tool-btn:hover {

    transform: translateY(-4px);

    border-color: rgba(0, 255, 255, .45);

    color: #4EF7F7;

    box-shadow:
        0 0 20px rgba(0, 255, 255, .15),
        0 8px 25px rgba(0, 0, 0, .3);

}

.close-modal {

    position: absolute;

    top: 16px;

    right: 20px;

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    color: rgba(255, 255, 255, .5);

    border-radius: 50%;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .3s;

    line-height: 1;

}

.close-modal:hover {

    background: rgba(0, 255, 255, .12);

    border-color: rgba(0, 255, 255, .3);

    color: #4EF7F7;

    transform: rotate(90deg);

}


/*==============================
      CALL TO ACTION
==============================*/

.cta-section {

    margin: 90px 0 0;

    padding: 35px 18px;

    text-align: center;

    background: linear-gradient(135deg,
            rgba(52, 211, 153, .08),
            rgba(56, 189, 248, .08));

    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, .08);

}

.cta-section h2 {

    font-size: 20px;

    color: #fff;

    margin-bottom: 15px;

}

.cta-section p {

    color: #cbd5e1;

    font-size: 15px;

    margin-bottom: 35px;

}

.cta-btn {

    padding: 18px 42px;

    border: none;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    color: white;

    background: linear-gradient(135deg, #34D399, #38BDF8);

    transition: .35s;

}

.cta-btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 30px 80px rgba(0, 255, 255, .35);

}

.bottom-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.bottom-nav-buttons .cta-btn {
    font-size: 16px;
    padding: 15px 35px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 255, 255, .15);
    color: #c8f4ff;
    box-shadow: none;
}

.bottom-nav-buttons .cta-btn:hover {
    background: rgba(0, 255, 255, .1);
    border-color: rgba(0, 255, 255, .4);
    box-shadow: 0 10px 30px rgba(0, 255, 255, .2);
    color: #4EF7F7;
}

/*==============================
         FOOTER
==============================*/
/*==========================================
            PREMIUM FOOTER
==========================================*/

.footer {

    margin-top: 80px;

    padding: 70px 40px 30px;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));

    backdrop-filter: blur(18px);

    border-top: 1px solid rgba(255, 255, 255, .08);

    border-radius: 35px 35px 0 0;

    overflow: hidden;

}

/*================ TOP =================*/

.footer-top {

    text-align: center;

    margin-bottom: 55px;

}

.footer-top h2 {

    font-size: 20px;

    font-weight: 800;

    color: #fff;

    margin-bottom: 15px;

}

.footer-top p {

    font-size: 15px;

    color: #B7CBD8;

}

/*================ GRID =================*/

.footer-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}

/*================ CARD =================*/

.footer-card {

    padding: 14px;

    border-radius: 25px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .35s;

    text-align: center;

}

.footer-card:hover {

    transform: translateY(-10px);

    border-color: #34D399;

    box-shadow: 0 20px 45px rgba(52, 211, 153, .18);

}

/*================ ICON =================*/

.footer-icon {

    font-size: 45px;

    margin-bottom: 20px;

    color: #43E6D0;

}

/*================ TEXT =================*/

.footer-card h3 {

    color: white;

    margin-bottom: 18px;

    font-size: 20px;

}

.footer-card p {

    color: #C6D5DE;

    line-height: 2;

    font-size: 15px;

}

/*================ BOTTOM =================*/

.footer-bottom {

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    text-align: center;

    font-size: 15px;

    color: #AFC3CF;

    line-height: 1.9;

}

/*================ MOBILE =================*/

@media(max-width:950px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer {

        padding: 50px 25px;

    }

    .footer-top h2 {

        font-size: 30px;

    }

}

.social-links {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 20px;

}

.social-links a {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 12px 18px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 15px;

    text-decoration: none;

    color: #E5E7EB;

    font-weight: 600;

    transition: .3s;

}

.social-links a:hover {

    background: rgba(52, 211, 153, .15);

    border-color: #34D399;

    transform: translateY(-3px);

    color: #34D399;

}

.social-links i {

    font-size: 20px;

}

/*=========================
        HEADER
=========================*/

.navbar {

    position: fixed;

    top: 20px;

    left: 50%;

    transform: translateX(-50%);

    width: 90%;

    max-width: 1200px;

    height: 54px;

    padding: 8px 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: rgba(13, 18, 30, .55);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 24px;

    z-index: 999;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);

}

.nav-logo {

    display: flex;

    align-items: center;

    gap: 15px;

}

.logo-box {

    width: 46px;

    height: 46px;

    border-radius: 14px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: linear-gradient(145deg, rgba(0, 255, 255, .15), rgba(90, 80, 255, .10));

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 20px rgba(0, 255, 255, .10),
        0 0 35px rgba(130, 80, 255, .08);

    animation: logoBreath 6s ease-in-out infinite;

}

.nav-logo h2 {

    font-size: 20px;

    color: white;

    margin: 0;

}

.nav-logo span {

    font-size: 11px;

    letter-spacing: 2px;

    color: #9FB3BF;

}

.nav-links {

    display: flex;

    gap: 28px;

}

.nav-links a {
    position: relative;
    text-decoration: none;

    color: #D9E5EC;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: .3s;

}

.nav-links a:hover {

    color: #34D399;

}

.status {

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(0, 255, 255, .08);

    color: #77e6ff;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 8px;

    font-weight: 600;

    border: 1px solid rgba(0, 255, 255, .15);

}

.status i {

    font-size: 9px;

    color: #a78bff;

    animation: pulse 1.5s infinite;

}

@keyframes pulse {

    0% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .3;
    }

}

.nav-links a::after {

    content: "";

    position: absolute;

    bottom: -8px;

    left: 50%;

    width: 0;

    height: 2px;

    background: #34D399;

    transition: .3s;

    transform: translateX(-50%);
}

.nav-links a:hover::after {

    width: 100%;
}

/*=====================================
            ABOUT MODAL
======================================*/

.modal {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .75);

    backdrop-filter: blur(10px);

    justify-content: center;

    align-items: center;

    z-index: 99999;

    animation: fadeIn .3s ease;

}

.modal-content {

    width: 90%;

    max-width: 850px;

    max-height: 85vh;

    overflow-y: auto;

    padding: 16px;

    border-radius: 30px;

    background: rgba(13, 24, 35, .95);

    border: 1px solid rgba(255, 255, 255, .08);

    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);

}

.modal-logo {

    width: 90px;

    height: 90px;

    margin: 0 auto 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 22px;

    background: linear-gradient(145deg, rgba(0, 255, 255, .15), rgba(90, 80, 255, .10));

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 20px rgba(0, 255, 255, .10),
        0 0 35px rgba(130, 80, 255, .08),
        inset 0 0 15px rgba(255, 255, 255, .05);

    transition: .35s;
    animation: logoBreath 6s ease-in-out infinite;

}

.modal-logo:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 40px rgba(0, 255, 255, .18),
        0 0 60px rgba(110, 70, 255, .12);
}

.modal-logo .ravify-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, .35));
}

.modal-content h2 {

    text-align: center;

    color: white;

    font-size: 40px;

    margin-bottom: 12px;

}

.modal-subtitle {

    text-align: center;

    color: #B7CBD8;

    margin-bottom: 35px;

    font-size: 15px;

    line-height: 1.6;

}

.modal-section {

    margin-top: 30px;

    padding: 25px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

}

.modal-section h3 {

    color: #34D399;

    margin-bottom: 18px;

}

.feature-list {

    padding-left: 20px;

    line-height: 2;

    color: #DCE8EF;

}

.tech-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 20px;

}

.tech-grid span {

    background: rgba(255, 255, 255, .05);

    padding: 15px;

    border-radius: 14px;

    text-align: center;

    color: white;

    transition: .3s;

}

.tech-grid span:hover {

    background: #34D399;

    color: #07131B;

    transform: translateY(-5px);

}

/* ==========================================
   NEW ANIMATIONS
========================================== */

@keyframes logoBreath {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(0, 255, 255, .10),
            0 0 35px rgba(130, 80, 255, .08);
    }

    50% {
        box-shadow:
            0 0 35px rgba(0, 255, 255, .22),
            0 0 55px rgba(130, 80, 255, .16);
    }

}

@keyframes uploadGlow {

    0%,
    100% {
        border-color: rgba(0, 255, 255, .28);
        box-shadow: none;
    }

    50% {
        border-color: rgba(0, 255, 255, .55);
        box-shadow: 0 0 25px rgba(0, 255, 255, .10);
    }

}

@keyframes toolBtnPop {

    from {
        opacity: 0;
        transform: translateY(10px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

/* ==========================================
   PRICING SECTION
========================================== */

.pricing-section {
    padding: 100px 24px 80px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: 48px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(0, 255, 255, .07);
    border: 1px solid rgba(0, 255, 255, .15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #77e6ff;
    margin-bottom: 22px;
}

.pricing-header h2 {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 14px;
}

.pricing-header p {
    font-size: 16px;
    color: #9FB2C1;
}

/* --- Billing Toggle --- */

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 56px;
}

.billing-label {
    font-size: 15px;
    font-weight: 600;
    color: #9FB2C1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.save-badge {
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #4EF7F7, #a78bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(0, 255, 255, .2);
    border-radius: 20px;
    padding: 2px 8px;
}

.toggle-btn {
    width: 52px;
    height: 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    cursor: pointer;
    position: relative;
    transition: .3s;
    padding: 0;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #4EF7F7, #6C63FF);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(78, 247, 247, .3);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.toggle-btn.active .toggle-knob {
    left: 27px;
}

/* --- Pricing Cards --- */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    padding: 36px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: .4s;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, .12), transparent);
    filter: blur(30px);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, .2);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .3),
        0 0 40px rgba(0, 255, 255, .06);
}

.pricing-card--popular {
    border: 1px solid rgba(0, 255, 255, .3);
    background: rgba(0, 255, 255, .04);
    box-shadow:
        0 0 60px rgba(0, 255, 255, .08),
        0 0 100px rgba(108, 99, 255, .06);
}

.pricing-card--popular::before {
    background: radial-gradient(circle, rgba(0, 255, 255, .15), transparent);
    top: -80px;
    right: -60px;
    left: auto;
}

.pricing-card--popular:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .3),
        0 0 60px rgba(0, 255, 255, .15),
        0 0 100px rgba(108, 99, 255, .10);
}

.popular-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4EF7F7, #6C63FF);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #07141D;
    padding: 6px 20px;
    border-radius: 0 0 14px 14px;
    white-space: nowrap;
}

.plan-icon {
    font-size: 36px;
    margin-bottom: 14px;
    margin-top: 8px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.plan-tagline {
    font-size: 13px;
    color: #7A8FA0;
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 15px;
    color: #5A6E80;
    text-decoration: line-through;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #4EF7F7, #a78bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .3s;
}

.price-period {
    font-size: 15px;
    color: #7A8FA0;
}

.price-save {
    font-size: 12px;
    font-weight: 700;
    color: #4EF7F7;
    margin-bottom: 24px;
    min-height: 18px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex: 1;
}

.plan-features li {
    font-size: 14px;
    padding: 8px 0;
    color: #C2D4E0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.feat-yes::before {
    content: '✅';
}

.feat-no {
    opacity: .45;
}

.feat-no::before {
    content: '❌';
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .35s;
    margin-bottom: 12px;
}

.plan-btn--free {
    background: rgba(255, 255, 255, .07);
    color: #C2D4E0;
    border: 1px solid rgba(255, 255, 255, .12);
}

.plan-btn--free:hover {
    background: rgba(255, 255, 255, .12);
    color: white;
    transform: translateY(-2px);
}

.plan-btn--pro {
    background: linear-gradient(135deg, #4EF7F7, #6C63FF);
    color: #07141D;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(78, 247, 247, .22);
}

.plan-btn--pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(78, 247, 247, .35);
}

.plan-btn--ultra {
    background: linear-gradient(135deg, #6C63FF, #a78bff);
    color: white;
    box-shadow: 0 15px 40px rgba(108, 99, 255, .25);
}

.plan-btn--ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(108, 99, 255, .40);
}

.plan-refresh {
    font-size: 12px;
    color: #4A6070;
    text-align: center;
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media(max-width:768px) {


    .tech-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .modal-content {

        padding: 25px;

    }

}

html {

    scroll-behavior: smooth;

}

/*==========================
    Instruction Card
===========================*/

.instruction-card {

    display: flex;

    align-items: center;

    gap: 16px;

    margin: 50px 0 35px;

    padding: 25px 30px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

}

.instruction-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    background: linear-gradient(135deg, #34D399, #38BDF8);

    color: white;

}

.instruction-text h2 {

    color: white;

    margin-bottom: 10px;

}

.instruction-text p {

    color: #B8D5E2;

    line-height: 1.8;

    font-size: 15px;

}

/* ===========================
   MOBILE RESPONSIVE DESIGN
=========================== */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 120px 20px 40px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
    }

    .upload-box {
        width: 95%;
        padding: 30px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 30px 20px;
    }
}

@media (max-width:480px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .logo h2 {
        font-size: 1.6rem;
    }

    .upload-box {
        padding: 16px;
    }

    button {
        width: 100%;
    }
}
 / *   I m a g e   M o d a l   * / 
 . i m a g e - m o d a l   { 
         d i s p l a y :   n o n e ; 
         p o s i t i o n :   f i x e d ; 
         z - i n d e x :   1 0 0 0 ; 
         l e f t :   0 ; 
         t o p :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o v e r f l o w :   a u t o ; 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 , 0 , 0 , 0 . 9 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 } 
 
 . i m a g e - m o d a l - c o n t e n t   { 
         m a r g i n :   a u t o ; 
         d i s p l a y :   b l o c k ; 
         m a x - w i d t h :   9 0 % ; 
         m a x - h e i g h t :   9 0 % ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   5 0 % ; 
         l e f t :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   1 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ; 
         a n i m a t i o n :   z o o m I n   0 . 3 s   e a s e ; 
 } 
 
 @ k e y f r a m e s   z o o m I n   { 
         f r o m   { t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % )   s c a l e ( 0 . 8 ) ;   o p a c i t y :   0 ; } 
         t o   { t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % )   s c a l e ( 1 ) ;   o p a c i t y :   1 ; } 
 } 
 
 . c l o s e - m o d a l   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   2 0 p x ; 
         r i g h t :   3 5 p x ; 
         c o l o r :   # f 1 f 1 f 1 ; 
         f o n t - s i z e :   4 0 p x ; 
         f o n t - w e i g h t :   b o l d ; 
         t r a n s i t i o n :   0 . 3 s ; 
         z - i n d e x :   1 0 0 1 ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . c l o s e - m o d a l : h o v e r , 
 . c l o s e - m o d a l : f o c u s   { 
         c o l o r :   v a r ( - - e m e r a l d ) ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 
 