* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1d1d1f;
}

a {
    color: inherit;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, 94%);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 14px;
    background: rgba(0, 0, 0, 0.97);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    z-index: 9999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: #ffffff;
}

.logo-mark {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: #f1f1f3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
    background: #222;
    transform: translateY(-1px);
}

.nav-cta svg {
    width: 14px;
    height: 14px;
}

.menu-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-btn svg {
    width: 20px;
    height: 20px;
}

.menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, 94%);
    background: #0a0a0a;
    border-radius: 0 0 22px 22px;
    padding: 18px 20px 22px;
    z-index: 10000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
}

.mobile-overlay.active {
    display: flex;
}

.mobile-overlay-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mobile-overlay .logo-text {
    color: #fff;
}

.close-btn {
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
}

.close-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}

.mobile-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color .2s ease;
}

.mobile-links a:last-child {
    border-bottom: none;
}

.mobile-links a:hover {
    color: #fff;
}

.mobile-overlay .nav-cta {
    justify-content: center;
    background: #fff;
    color: #0a0a0a;
    padding: 13px;
    font-size: 15px;
}

.mobile-overlay .nav-cta:hover {
    background: #f0f0f0;
}

@media (max-width: 760px) {

    .nav-links,
    .navbar .nav-cta {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
    }
}

/* ===========================
   Large Tablets
=========================== */

@media (max-width: 1024px) {

    .navbar {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .nav-cta {
        padding: 10px 18px;
        font-size: 14px;
    }

}

/* ===========================
   Tablets
=========================== */

@media (max-width: 900px) {

    .nav-links,
    .navbar .nav-cta {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .navbar {
        width: 94%;
        padding: 12px 18px;
        justify-content: space-between;
    }

    .logo {
        font-size: 20px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width: 768px) {

    .navbar {

        top: 15px;

        width: calc(100% - 20px);

        padding: 12px 16px;

        border-radius: 16px;

    }

    .logo {

        font-size: 18px;

        gap: 10px;

    }

    .logo img {

        width: 36px;

        height: 36px;

    }

    .menu-btn {

        width: 42px;

        height: 42px;

    }

}

/* ===========================
   Small Phones
=========================== */

@media (max-width: 480px) {

    .navbar {

        top: 10px;

        width: calc(100% - 16px);

        padding: 10px 14px;

        border-radius: 14px;

    }

    .logo {

        font-size: 16px;

    }

    .logo img {

        width: 32px;

        height: 32px;

    }

    .menu-btn {

        width: 38px;

        height: 38px;

    }

}

.vt-hero {
    --deep: #0b1a6b;
    --mid: #1554e0;
    --light: #7fc4f5;

    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 90px 24px 0;
    background: linear-gradient(180deg, var(--deep) 0%, var(--mid) 45%, var(--light) 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.vt-hero * {
    box-sizing: border-box;
}

.vt-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
}

.vt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.vt-spark {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #ffd166;
}

.vt-headline {
    font-size: clamp(46px, 8vw, 92px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 26px;
}

.vt-script {
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-weight: 400;
    font-style: italic;
    font-size: 1.08em;
    display: inline-block;
    margin-top: 6px;
}

.vt-sub {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 0 32px;
}

.vt-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.vt-cta:hover {
    transform: translateY(-2px);
}

.vt-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.vt-disclaimers {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 22px 0 60px;
}

.vt-window-wrap {
    width: 100%;
    max-width: 860px;
    display: flex;
    justify-content: center;
}

.vt-window {
    width: 100%;
    background: #17181c;
    border-radius: 20px 20px 0 0;
    padding: 18px 22px 40px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
}

.vt-window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.vt-search {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.vt-window-icons {
    display: flex;
    gap: 10px;
}

.vt-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.vt-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.vt-tab {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    padding: 9px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.vt-tab b {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

.vt-tab-active {
    background: #fff;
    color: #111;
}

.vt-tab-active b {
    color: rgba(0, 0, 0, 0.4);
}

.vt-tab-add {
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
    font-size: 16px;
}

.vt-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.vt-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.vt-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-card-dark {
    background: #1f2937;
    color: #fff;
    align-items: flex-start;
}

.vt-card-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.vt-card-light {
    background: #f4f4f6;
    color: #111;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.vt-card-logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.vt-card-icon-card svg {
    margin-bottom: 4px;
}

.vt-card-tag {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.35);
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.vt-card-tag-dark {
    color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.06);
}

.vt-card-light .vt-card-tag,
.vt-card-swatch .vt-card-tag {
    position: absolute;
}

.vt-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vt-dot-green {
    background: #22c55e;
}

.vt-dot-blue {
    background: #3b82f6;
}

.vt-dot-white {
    background: #fff;
}

@media (max-width: 900px) {
    .vt-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .vt-disclaimers {
        gap: 12px 20px;
    }

    .vt-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .vt-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


.vt-showcase {
    position: relative;
    width: 100%;
    min-height: 780px;
    box-sizing: border-box;
    overflow: hidden;
    background: transparent;
}

.vt-showcase * {
    box-sizing: border-box;
}

.vt-sky {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: transparent;
}

.vt-bg-img {
    position: absolute;
    background: #7fc4f5;
    inset: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 65%;
    transform: scale(1);
    transform-origin: center center;
    will-change: transform;
    z-index: 1000;
}

.vt-statusbar {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(30, 41, 59, 0.65);
}

.vt-clock {
    font-size: 13px;
    font-weight: 600;
    color: rgba(30, 41, 59, 0.75);
}

.vt-window-wrap-full {
    position: relative;

    margin: 64px auto 0;
    padding: 0 24px;
    z-index: 20;
    transform: translateY(-120px);
}

.vt-window-topline {
    display: flex;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vt-window-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.vt-window {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    margin-top: 64px;
    z-index: -21;
    /* Glass */
    background: rgba(18, 20, 25, 0.55);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);

    /* Shape */
    border-radius: 34px;

    overflow: hidden;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .45),
        0 10px 40px rgba(0, 0, 0, .25);

    border: 1px solid rgba(255, 255, 255, .08);

    padding: 20px 24px 28px;

    position: relative;
    overflow: hidden;
}

.vt-window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, .18),
            rgba(255, 255, 255, .05),
            transparent);

    pointer-events: none;
}

.vt-window::after {
    content: "";
    position: absolute;
    inset: -100px;

    background:
        radial-gradient(circle at top left,
            rgba(0, 132, 255, .18),
            transparent 45%),

        radial-gradient(circle at bottom right,
            rgba(255, 255, 255, .08),
            transparent 40%);

    filter: blur(60px);
    z-index: -1;
}

.vt-window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.vt-search {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.vt-window-icons {
    display: flex;
    gap: 10px;
}

.vt-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.vt-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.vt-tab {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    padding: 9px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.vt-tab b {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

.vt-tab-active {
    background: #fff;
    color: #111;
}

.vt-tab-active b {
    color: rgba(0, 0, 0, 0.4);
}

.vt-tab-add {
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
    font-size: 16px;
}

.vt-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.vt-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.vt-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-card-dark {
    background: #1f2937;
    color: #fff;
    align-items: flex-start;
}

.vt-card-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.vt-card-light {
    background: #f4f4f6;
    color: #111;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.vt-card-logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.vt-card-icon-card svg {
    margin-bottom: 4px;
}

.vt-card-tag {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.35);
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.vt-card-tag-dark {
    color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.06);
}

.vt-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vt-dot-green {
    background: #22c55e;
}

.vt-dot-blue {
    background: #3b82f6;
}

.vt-dot-white {
    background: #fff;
}

@media (max-width: 900px) {
    .vt-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .vt-showcase {
        min-height: 640px;
    }

    .vt-statusbar {
        top: 16px;
        right: 16px;
    }

    .vt-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .vt-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vt-bg-img {
        transform: none !important;
    }
}

.vt-window {
    animation: floatWindow 6s ease-in-out infinite;
}

@keyframes floatWindow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.vt-showcase::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 280px;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .15) 20%,
            rgba(255, 255, 255, .45) 45%,
            rgba(255, 255, 255, .75) 65%,
            rgba(255, 255, 255, .95) 85%,
            #fff 100%);

    pointer-events: none;
    z-index: 15;
}

.clipboard-section {

    padding: 170px 20px;

    background: white;

    text-align: center;
}

.award-row {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 90px;
}

.award {

    width: 92px;
    height: 92px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s;

    cursor: pointer;
}

.award img {

    width: 58px;
}

.award:hover {

    transform: translateY(-8px);
}

.clipboard-content {

    max-width: 900px;

    margin: auto;
}

.clipboard-content h2 {

    font-size: clamp(56px, 7vw, 90px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;

    color: #111;

    margin-bottom: 34px;
}

.clipboard-content p {

    max-width: 760px;

    margin: auto;

    font-size: 28px;

    line-height: 1.45;

    color: #6d6d6d;
}

.feature-pills {

    margin-top: 70px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    max-width: 900px;

    margin-inline: auto;
}

.feature-pills span {

    padding: 13px 24px;

    border-radius: 999px;

    background: #f4f4f4;

    font-size: 17px;

    color: #555;

    transition: .3s;
}

.feature-pills span:hover {

    background: #111;

    color: #fff;

    transform: translateY(-4px);
}

.code-showcase {

    background: #fff;

    padding: 140px 20px;

}

.code-heading {

    text-align: center;

    max-width: 850px;

    margin: auto auto 60px;

}

.code-badge {

    display: inline-block;

    padding: 10px 20px;

    background: #f4f4f4;

    border-radius: 999px;

    font-weight: 600;

    color: #2563eb;

    margin-bottom: 20px;

}

.code-heading h2 {

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.05;

    font-weight: 800;

    color: #111;

    letter-spacing: -2px;

    margin-bottom: 20px;

}

.code-heading p {

    font-size: 20px;

    color: #666;

    line-height: 1.7;

}

.editor {

    max-width: 1100px;

    margin: auto;

    background: #0f172a;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .15);

}

.editor-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 24px;

    background: #1e293b;

}

.dots {

    display: flex;

    gap: 8px;

}

.dots span {

    width: 12px;

    height: 12px;

    border-radius: 50%;

}

.red {
    background: #ff5f57;
}

.yellow {
    background: #febc2e;
}

.green {
    background: #28c840;
}

.filename {

    color: #94a3b8;

    font-size: 14px;

}

pre {

    margin: 0;

    padding: 40px;

    overflow: auto;

}

code {

    color: #e2e8f0;

    font-size: 17px;

    line-height: 1.8;

    font-family: Consolas, monospace;

}

.dev-testimonials {

    background: #fff;

    padding: 140px 20px;

}

.section-heading {

    text-align: center;

    max-width: 760px;

    margin: auto auto 60px;

}

.badge {

    display: inline-block;

    padding: 10px 18px;

    background: #f3f4f6;

    border-radius: 999px;

    color: #2563eb;

    font-weight: 600;

}

.section-heading h2 {

    margin: 20px 0;

    font-size: 52px;

    font-weight: 800;

}

.section-heading p {

    color: #666;

    font-size: 18px;

}

.code-card {

    background: #0f172a;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.editor-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 22px;

    background: #1e293b;

    color: #94a3b8;

}

.dots {

    display: flex;

    gap: 8px;

}

.dots span {

    width: 12px;

    height: 12px;

    border-radius: 50%;

}

.red {

    background: #ff5f57;

}

.yellow {

    background: #febc2e;

}

.green {

    background: #28c840;

}

.code-card pre {

    margin: 0;

    padding: 40px;

    overflow: auto;

}

.code-card code {

    font-size: 17px;

    line-height: 2;

    color: #dbeafe;

    font-family: Consolas, monospace;

}

.keyword {

    color: #60a5fa;

}

.string {

    color: #22c55e;

}

.swiper {

    max-width: 950px;

    margin: auto;

}

.swiper-pagination {

    margin-top: 35px;

    position: relative;

}

.portfolio {

    padding: 140px 0;

    background: #fff;

    overflow: hidden;
}

.portfolio-heading {

    max-width: 760px;

    margin: auto;

    text-align: center;

    padding: 0 20px 70px;
}

.portfolio-heading span {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: #f4f4f4;

    font-weight: 600;

    color: #2563eb;
}

.portfolio-heading h2 {

    font-size: 58px;

    margin: 25px 0 15px;

    letter-spacing: -2px;
}

.portfolio-heading p {

    color: #666;

    font-size: 20px;

    line-height: 1.7;
}

.slider {

    width: 100%;

    overflow: hidden;

    position: relative;
}

.slide-track {

    display: flex;

    width: max-content;

    animation: scroll 35s linear infinite;
}

.slider:hover .slide-track {

    animation-play-state: paused;
}

.project {

    width: 460px;

    height: 300px;

    margin: 0 18px;

    border-radius: 28px;

    overflow: hidden;

    flex-shrink: 0;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.project img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.project:hover {

    transform: translateY(-12px);
}

.project:hover img {

    transform: scale(1.08);
}

@keyframes scroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

.process-section {

    padding: 150px 20px;

    background: #fff;

}

.process-header {

    max-width: 700px;

    margin: auto;

    text-align: center;

    margin-bottom: 90px;

}

.process-tag {

    display: inline-block;

    padding: 10px 18px;

    background: #f3f4f6;

    border-radius: 999px;

    font-weight: 600;

    color: #2563eb;

}

.process-header h2 {

    font-size: 56px;

    margin: 25px 0 18px;

    letter-spacing: -2px;

}

.process-header p {

    font-size: 19px;

    color: #666;

    line-height: 1.8;

}

.timeline {

    max-width: 900px;

    margin: auto;

    position: relative;

}

.line {

    position: absolute;

    left: 38px;

    top: 0;

    width: 2px;

    height: 100%;

    background: #e5e7eb;

}

.step {

    display: flex;

    gap: 40px;

    margin-bottom: 70px;

    position: relative;

}

.number {

    width: 78px;

    height: 78px;

    border-radius: 50%;

    background: #111;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    font-weight: 700;

    flex-shrink: 0;

    z-index: 2;

}

.card {

    flex: 1;

    background: #fafafa;

    border: 1px solid #ececec;

    border-radius: 24px;

    padding: 35px;

    transition: .35s;

}

.card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.card span {

    color: #2563eb;

    font-weight: 700;

}

.card h3 {

    margin: 14px 0;

    font-size: 30px;

}

.card p {

    color: #666;

    line-height: 1.8;

}

.workflow {

    padding: 150px 20px;

    background: #fff;

}

.workflow-title {

    text-align: center;

    max-width: 760px;

    margin: auto auto 100px;

}

.workflow-title span {

    display: inline-block;

    background: #eef4ff;

    color: #2563eb;

    padding: 10px 18px;

    border-radius: 999px;

    font-weight: 600;

}

.workflow-title h2 {

    font-size: 58px;

    margin: 24px 0;

}

.workflow-title p {

    color: #666;

    font-size: 20px;

}

.workflow-flow {

    max-width: 950px;

    margin: auto;

}

.flow-card {

    width: 420px;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 26px;

    padding: 35px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .06);

    position: relative;

}

.left {

    margin-right: auto;
}

.right {

    margin-left: auto;
}

.icon {

    width: 74px;

    height: 74px;

    border-radius: 20px;

    background: #f4f4f4;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    margin-bottom: 20px;

}

.flow-card h3 {

    margin-bottom: 15px;

    font-size: 30px;

}

.flow-card p {

    color: #666;

    line-height: 1.8;

}

.connector {

    width: 4px;

    height: 90px;

    margin: 0 auto;

    border-radius: 999px;

    background: linear-gradient(#2563eb,

            #8ec5ff);

    position: relative;

}

.connector::before {

    content: "";

    position: absolute;

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: #2563eb;

    left: 50%;

    transform: translateX(-50%);

    animation: flow 2s infinite linear;

}

@keyframes flow {

    0% {

        top: -10px;

    }

    100% {

        top: 100%;

    }

}

.pricing {

    position: relative;

    overflow: hidden;

    padding: 140px 20px 220px;

    background: #fff;
}

.pricing::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 280px;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .15) 20%,
            rgba(255, 255, 255, .45) 45%,
            rgba(255, 255, 255, .75) 65%,
            rgba(255, 255, 255, .95) 85%,
            #fff 100%);

    pointer-events: none;
    z-index: 15;
}

.pricing-head {

    max-width: 760px;

    margin: auto;

    text-align: center;

    position: relative;

    z-index: 2;
}

.pricing-head span {

    display: inline-block;

    padding: 10px 18px;

    background: #f3f4f6;

    border-radius: 999px;

    font-weight: 600;

    color: #2563eb;
}

.pricing-head h2 {

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1;

    margin: 30px 0 20px;

    letter-spacing: -2px;
}

.pricing-head p {

    color: #666;

    font-size: 20px;

    line-height: 1.7;
}

.pricing-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    max-width: 1200px;

    margin: 80px auto 0;

    position: relative;

    z-index: 2;
}

.price-card {

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(20px);

    border-radius: 30px;

    padding: 40px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);

    transition: .35s;
}

.price-card:hover {

    transform: translateY(-12px);
}

.featured {

    transform: scale(1.05);
}

.featured:hover {

    transform: scale(1.05) translateY(-12px);
}

.popular {

    display: inline-block;

    padding: 8px 16px;

    background: #111;

    color: #fff;

    border-radius: 999px;

    font-size: 13px;

    margin-bottom: 20px;
}

.plan {

    font-size: 24px;

    font-weight: 700;
}

.price {

    font-size: 58px;

    font-weight: 800;

    margin: 15px 0;
}

.price-card small {

    color: #666;
}

.price-card ul {

    list-style: none;

    padding: 0;

    margin: 30px 0;
}

.price-card li {

    padding: 10px 0;

    color: #444;
}

.price-card button {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 16px;

    background: #111;

    color: #fff;

    font-size: 16px;

    cursor: pointer;
}

/* Animated Background */

.wave {

    position: absolute;

    left: -20%;

    width: 140%;

    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    animation: waveMove 14s ease-in-out infinite alternate;
}

.wave1 {

    bottom: -180px;

    background: linear-gradient(90deg, #7dd3fc, #2563eb, #4f46e5);
}

.wave2 {

    bottom: -260px;

    opacity: .55;

    animation-duration: 18s;

    background: linear-gradient(90deg, #93c5fd, #60a5fa, #3b82f6);
}

@keyframes waveMove {

    0% {

        transform: translateX(-6%) translateY(0) scale(1);

    }

    50% {

        transform: translateX(6%) translateY(-25px) scale(1.08);

    }

    100% {

        transform: translateX(-4%) translateY(0) scale(1);

    }

}

@media(max-width:992px) {

    .pricing-grid {

        grid-template-columns: 1fr;

        max-width: 500px;
    }

    .featured {

        transform: none;
    }

    .featured:hover {

        transform: translateY(-12px);
    }
}

.faq-section {

    padding: 140px 20px;

    background: #fff;

}

.faq-header {

    max-width: 760px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.faq-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: #f4f4f4;

    color: #2563eb;

    font-weight: 600;

    margin-bottom: 20px;

}

.faq-header h2 {

    font-size: 56px;

    margin-bottom: 20px;

    letter-spacing: -2px;

}

.faq-header p {

    color: #666;

    font-size: 20px;

    line-height: 1.7;

}

.faq-container {

    max-width: 900px;

    margin: auto;

}

.faq-item {

    margin-bottom: 18px;

    border-radius: 24px;

    background: #fafafa;

    border: 1px solid #ececec;

    overflow: hidden;

    transition: .35s;

}

.faq-item:hover {

    transform: translateY(-3px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);

}

.faq-question {

    width: 100%;

    background: none;

    border: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 28px 30px;

    cursor: pointer;

    font-size: 20px;

    font-weight: 600;

    text-align: left;

}

.faq-icon {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: #111;

    position: relative;

    flex-shrink: 0;

    transition: .35s;

}

.faq-icon::before {

    content: "";

    position: absolute;

    width: 16px;

    height: 2px;

    background: #fff;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}

.faq-icon::after {

    content: "";

    position: absolute;

    width: 2px;

    height: 16px;

    background: #fff;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    transition: .35s;

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .45s ease;

}

.faq-answer p {

    padding: 0 30px 30px;

    color: #666;

    line-height: 1.8;

    font-size: 17px;

}

.faq-item.active .faq-answer {

    max-height: 220px;

}

.faq-item.active .faq-icon {

    background: #2563eb;

    transform: rotate(180deg);

}

.faq-item.active .faq-icon::after {

    opacity: 0;

}

.contact-section {

    position: relative;

    overflow: hidden;

    padding: 140px 20px;

    background: #ffffff;

}

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 520px;

    gap: 80px;

    max-width: 1300px;

    margin: auto;

    align-items: center;

    position: relative;

    z-index: 2;

}

.tag {

    display: inline-block;

    padding: 10px 18px;

    background: #eef5ff;

    color: #2563eb;

    border-radius: 999px;

    font-weight: 600;

}

.contact-info h2 {

    font-size: clamp(54px, 6vw, 82px);

    line-height: 1;

    margin: 25px 0;

    letter-spacing: -3px;

}

.contact-info h2 span {

    color: #2563eb;

}

.contact-info p {

    max-width: 520px;

    font-size: 20px;

    color: #666;

    line-height: 1.8;

}

.contact-card {

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .6);

    border-radius: 32px;

    padding: 35px;

    box-shadow: 0 30px 90px rgba(0, 0, 0, .08);

}

.contact-card input,

.contact-card textarea {

    width: 100%;

    border: none;

    background: #f7f7f7;

    border-radius: 16px;

    padding: 18px;

    margin-bottom: 18px;

    font-size: 16px;

    outline: none;

}

.contact-card textarea {

    height: 170px;

    resize: none;

}

.contact-card button {

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 18px;

    background: #111;

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    transition: .35s;

}

.contact-card button:hover {

    transform: translateY(-3px);

}

.floating-scene {

    position: relative;

    height: 320px;

    margin-top: 60px;

}

.float-card {

    position: absolute;

    width: 95px;

    height: 95px;

    border-radius: 24px;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 42px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.laptop {

    left: 0;

    top: 80px;

}

.rocket {

    left: 220px;

    top: 0;

}

.code {

    left: 120px;

    top: 190px;

}

.coffee {

    left: 310px;

    top: 150px;

}

.blob {

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    filter: blur(130px);

    opacity: .28;

}

.blob-blue {

    background: #4facfe;

    left: -180px;

    top: 100px;

}

.blob-purple {

    background: #8b5cf6;

    right: -180px;

    bottom: 0;

}

@media(max-width:992px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .floating-scene {

        display: none;

    }

}

.vt-footer {

    position: relative;

    background: #050505;

    color: #fff;

    padding: 120px 8% 170px;

    overflow: hidden;

}

.footer-top-radius {

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 88%;

    height: 32px;

    background: #fff;

    border-bottom-left-radius: 22px;

    border-bottom-right-radius: 22px;

}

.footer-container {

    display: flex;

    justify-content: space-between;

    gap: 100px;

    position: relative;

    z-index: 2;

}

.footer-brand {

    max-width: 420px;

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

}

.footer-logo img {

    width: 42px;

}

.footer-logo span {

    font-size: 24px;

    font-weight: 700;

}

.footer-brand h2 {

    font-size: 58px;

    line-height: 1;

    margin-bottom: 20px;

    letter-spacing: -2px;

}

.footer-brand h2 span {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

}

.footer-brand p {

    color: #8d8d8d;

    line-height: 1.8;

    margin-bottom: 30px;

}

.footer-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    color: #111;

    padding: 16px 28px;

    border-radius: 16px;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;

}

.footer-btn:hover {

    transform: translateY(-4px);

}

.footer-brand small {

    display: block;

    margin-top: 30px;

    color: #666;

}

.footer-links {

    display: grid;

    grid-template-columns: repeat(3, 180px);

    gap: 60px;

}

.footer-links h4 {

    color: #666;

    margin-bottom: 25px;

}

.footer-links a {

    display: block;

    color: #fff;

    text-decoration: none;

    margin-bottom: 16px;

    transition: .3s;

}

.footer-links a:hover {

    color: #3b82f6;

    transform: translateX(6px);

}

.footer-watermark {

    position: absolute;

    bottom: -70px;

    left: 50%;

    transform: translateX(-50%);

    font-size: 240px;

    font-weight: 900;

    letter-spacing: -10px;

    color: rgba(255, 255, 255, .035);

    white-space: nowrap;

    pointer-events: none;

    user-select: none;

}

@media(max-width:992px) {

    .footer-container {

        flex-direction: column;

        gap: 60px;

    }

    .footer-links {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .footer-watermark {

        font-size: 100px;

        bottom: -20px;

    }

    .footer-brand h2 {

        font-size: 42px;

    }

}