/* ================================
   HOME PAGE - PREMIUM FINAL
================================ */

.vc-home {
    position: relative;
    min-width: 0;
}

/* ================================
   HERO
================================ */

.vc-hero {
    position: relative;
    padding: 35px 0;
    overflow: hidden;
}

.vc-hero::before,
.vc-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, var(--vc-primary-soft), transparent 68%);
    filter: blur(22px);
    pointer-events: none;
}

.vc-hero::before {
    top: -180px;
    right: -160px;
    width: 580px;
    height: 580px;
    opacity: 0.95;
}

.vc-hero::after {
    left: -230px;
    bottom: -270px;
    width: 560px;
    height: 560px;
    opacity: 0.55;
}

.vc-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 64px;
    align-items: center;
}

.vc-hero-content {
    min-width: 0;
    animation: vcHomeFadeUp 0.75s ease both;
}

.vc-eyebrow,
.vc-section-head span,
.vc-highlight-content > span,
.vc-cta-box > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--vc-primary-soft);
    border: 1px solid color-mix(in srgb, var(--vc-primary) 24%, var(--vc-border));
    color: var(--vc-primary);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.vc-eyebrow i,
.vc-cta-box > span i {
    width: 1em;
    min-width: 1em;
    line-height: 1;
}

.vc-hero-content h1 {
    max-width: 850px;
    margin: 20px 0 0;
    color: var(--vc-text);
    font-size: 55px;
    line-height: 1;
    font-weight: 900;
    text-wrap: balance;
}

.vc-hero-content h1 span {
    display: block;
    margin-top: 5px;
    color: var(--vc-primary);
}

.vc-hero-content p {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--vc-text-soft);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.vc-hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vc-trust-row {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 16px;
}

.vc-trust-row div {
    min-height: 74px;
    padding: 15px 18px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--vc-surface) 94%, transparent);
    border: 1px solid var(--vc-border);
    box-shadow: var(--vc-shadow-soft, 0 14px 36px rgba(15, 23, 42, 0.06));
    transition:
        transform var(--vc-transition-fast, 0.22s ease),
        border-color var(--vc-transition-fast, 0.22s ease);
}

.vc-trust-row div:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--vc-primary) 34%, var(--vc-border));
}

.vc-trust-row strong {
    display: block;
    color: var(--vc-text);
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
}

.vc-trust-row span {
    display: block;
    margin-top: 6px;
    color: var(--vc-text-soft);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}









/* ================================
   PREMIUM 3D PHONE SHOWCASE — FINAL
================================ */

.vc-phone-showcase,
.vc-phone-showcase * {
    box-sizing: border-box;
}

/*
 * Prevent horizontal page overflow while allowing
 * the phone and its shadow to remain fully visible.
 */
.vc-home {
    overflow-x: clip;
    overflow-y: visible;
}

.vc-phone-showcase {
    position: relative;
    min-width: 0;
    min-height: 540px;

    display: grid;
    place-items: center;

    perspective: 1800px;
    transform-style: preserve-3d;
    overflow: visible;

    animation:
        vcPhoneShowcaseEnter 0.7s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.08s both;
}

.vc-phone-stage {
    position: relative;
    isolation: isolate;

    width: min(450px, 100%);
    min-height: 540px;

    display: grid;
    place-items: center;

    perspective: 1800px;
    transform-style: preserve-3d;
    overflow: visible;
}

/* Lightweight background glow */
.vc-phone-stage::before {
    content: "";
    position: absolute;
    top: 49%;
    left: 50%;
    z-index: 0;

    width: min(390px, 88%);
    aspect-ratio: 1;

    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 52% 46%,
            color-mix(
                in srgb,
                var(--vc-primary) 16%,
                transparent
            ) 0%,
            color-mix(
                in srgb,
                var(--vc-primary-soft) 30%,
                transparent
            ) 43%,
            transparent 72%
        );

    opacity: 0.85;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
}

/* Presentation floor light */
.vc-phone-stage::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 1;

    width: min(280px, 65%);
    height: 43px;

    transform:
        translateX(-50%)
        rotateX(70deg);

    border-radius: 50%;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            color-mix(
                in srgb,
                var(--vc-primary) 18%,
                transparent
            ) 0%,
            color-mix(
                in srgb,
                var(--vc-primary) 6%,
                transparent
            ) 48%,
            transparent 75%
        );

    opacity: 0.78;
}

/* Ground shadow without expensive animated blur */
.vc-phone-ground-shadow {
    position: absolute;
    left: 50%;
    bottom: 31px;
    z-index: 2;

    width: 188px;
    height: 29px;

    transform:
        translateX(-50%)
        rotate(-3deg);

    border-radius: 50%;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            rgba(4, 11, 30, 0.42) 0%,
            rgba(10, 29, 72, 0.23) 44%,
            rgba(10, 29, 72, 0.07) 69%,
            transparent 100%
        );

    opacity: 0.94;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
}

/* Complete device */
.vc-phone-device {
    --vc-phone-radius: clamp(29px, 2.4vw, 38px);

    position: relative;
    z-index: 4;
    isolation: isolate;

    width: clamp(220px, 15.5vw, 252px);
    max-width: 72%;
    aspect-ratio: 9 / 19;

    overflow: visible;

    translate: 0 0;

    transform:
        rotateX(5deg)
        rotateY(-14deg)
        rotateZ(2.3deg);

    transform-origin: center 72%;
    transform-style: preserve-3d;
    backface-visibility: hidden;

    animation:
        vcPhoneFloat 6s
        ease-in-out infinite;

    transition:
        transform 0.52s
        cubic-bezier(0.22, 1, 0.36, 1);
}

/*
 * Full rear shell.
 * Using a complete rounded shell avoids detached,
 * cut-looking side strips.
 */
.vc-phone-device::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    border-radius: var(--vc-phone-radius);
    pointer-events: none;

    background:
        linear-gradient(
            132deg,
            #1a1d22 0%,
            #5d6570 14%,
            #23272e 34%,
            #090b0f 60%,
            #3a4049 82%,
            #0d0f13 100%
        );

    border: 1px solid rgba(0, 0, 0, 0.82);

    box-shadow:
        6px 6px 10px rgba(0, 0, 0, 0.14),
        10px 14px 22px rgba(10, 25, 64, 0.12);

    transform: translate3d(4px, 3px, -8px);
}

/* Front metallic frame */
.vc-phone-frame {
    position: absolute;
    inset: 0;
    z-index: 2;

    padding: 4px;
    overflow: hidden;

    border-radius: var(--vc-phone-radius);

    background:
        linear-gradient(
            132deg,
            #9ba3ae 0%,
            #414750 7%,
            #080a0e 20%,
            #4b535e 38%,
            #090b0f 55%,
            #252a32 72%,
            #89919d 88%,
            #181b21 100%
        );

    border: 1px solid rgba(0, 0, 0, 0.84);

    box-shadow:
        inset 1px 1px 1px rgba(255, 255, 255, 0.46),
        inset -1px -1px 2px rgba(0, 0, 0, 0.82),
        -6px 10px 14px rgba(0, 0, 0, 0.14),
        0 18px 28px rgba(28, 73, 174, 0.12);

    backface-visibility: hidden;
}
/* Frame rim highlight */
.vc-phone-frame::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;

    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background:
        linear-gradient(
            112deg,
            rgba(255, 255, 255, 0.18),
            transparent 19%,
            transparent 69%,
            rgba(255, 255, 255, 0.07)
        );
}

/* Polished left edge */
.vc-phone-frame::after {
    content: "";
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: 2px;
    z-index: 1;

    width: 2px;

    border-radius: 999px;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.30),
            rgba(255, 255, 255, 0.04) 34%,
            rgba(255, 255, 255, 0.16) 70%,
            transparent
        );

    opacity: 0.8;
}

/*
 * Inner layers remain flat.
 * No translateZ is used here, preventing rectangular
 * screen layers from escaping the rounded frame.
 */
.vc-phone-bezel {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    padding: 3px;
    overflow: hidden;

    border-radius:
        calc(var(--vc-phone-radius) - 4px);

    background: #030406;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.055),
        inset 0 0 7px rgba(0, 0, 0, 0.90);

    transform: none;
}

/* Inner bezel shading */
.vc-phone-bezel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;

    border-radius: inherit;
    pointer-events: none;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        inset 0 4px 7px rgba(0, 0, 0, 0.07),
        inset 0 -5px 9px rgba(0, 0, 0, 0.19);
}

/* Screen clipping */
.vc-phone-screen {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius:
        calc(var(--vc-phone-radius) - 7px);

    background: #ffffff;

    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08);

    transform: none;
}

/* Screenshot */
.vc-phone-screen-image {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: fill;
    object-position: top center;

    border: 0;
    border-radius: inherit;

    user-select: none;
    pointer-events: none;

    transform: none;
    backface-visibility: hidden;
}

/* Lightweight glass reflection */
.vc-phone-glare {
    position: absolute;
    inset: 0;
    z-index: 5;

    border-radius: inherit;
    pointer-events: none;

    background:
        linear-gradient(
            116deg,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.04) 22%,
            transparent 40%,
            rgba(112, 167, 255, 0.03) 72%,
            transparent 100%
        );

    mix-blend-mode: screen;
    opacity: 0.40;

    transition:
        opacity 0.3s ease;
}

/* One-time hover scan container */
.vc-phone-scan-light {
    position: absolute;
    inset: 0;
    z-index: 6;

    overflow: hidden;
    border-radius: inherit;

    pointer-events: none;
    opacity: 0;

    transition:
        opacity 0.25s ease;
}

/* Transform-only reflection beam */
.vc-phone-scan-light::before {
    content: "";
    position: absolute;
    top: -15%;
    left: 0;

    width: 22%;
    height: 135%;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 18%,
            rgba(255, 255, 255, 0.36) 50%,
            rgba(112, 174, 255, 0.10) 72%,
            transparent 100%
        );

    opacity: 0;

    transform:
        translate3d(-180%, 0, 0)
        skewX(-15deg);
}

/*
 * Your screenshot already contains its own
 * status-bar camera/dynamic-island graphic.
 */
.vc-phone-dynamic-island,
.vc-phone-camera {
    display: none;
}

/* Side buttons */
.vc-phone-button {
    position: absolute;
    z-index: 3;

    width: 4px;

    border-radius: 4px;

    background:
        linear-gradient(
            90deg,
            #080a0d 0%,
            #555d68 38%,
            #a0a8b4 53%,
            #4d545f 70%,
            #111419 100%
        );

    border: 1px solid rgba(0, 0, 0, 0.58);

    box-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.27),
        inset 1px 0 rgba(255, 255, 255, 0.14);
}

.vc-phone-silent-button {
    top: 17%;
    left: -3px;
    height: 5%;
}

.vc-phone-volume-up {
    top: 26%;
    left: -3px;
    height: 8.5%;
}

.vc-phone-volume-down {
    top: 37%;
    left: -3px;
    height: 8.5%;
}

.vc-phone-power-button {
display:none;
}

/* Desktop interaction */
@media (hover: hover) and (pointer: fine) {
    .vc-phone-showcase:hover .vc-phone-device {
        animation-play-state: paused;

        transform:
            translateY(-6px)
            rotateX(3deg)
            rotateY(-9deg)
            rotateZ(1.2deg)
            scale(1.02);
    }

    .vc-phone-showcase:hover .vc-phone-ground-shadow {
        transform:
            translateX(-50%)
            rotate(-2deg)
            scaleX(0.92);

        opacity: 0.75;
    }

    .vc-phone-showcase:hover .vc-phone-stage::before {
        transform:
            translate(-50%, -50%)
            scale(1.04);

        opacity: 0.95;
    }

    .vc-phone-showcase:hover .vc-phone-glare {
        opacity: 0.58;
    }

    .vc-phone-showcase:hover .vc-phone-scan-light {
        opacity: 1;
    }

    .vc-phone-showcase:hover .vc-phone-scan-light::before {
        animation:
            vcPhoneScanLight 1.15s
            cubic-bezier(0.22, 1, 0.36, 1)
            both;
    }
}

/* Entrance */
@keyframes vcPhoneShowcaseEnter {
    from {
        opacity: 0;

        transform:
            translateY(16px)
            scale(0.975);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

/* Lightweight floating movement */
@keyframes vcPhoneFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -5px;
    }
}

/* Compositor-friendly scan */
@keyframes vcPhoneScanLight {
    0% {
        opacity: 0;

        transform:
            translate3d(-180%, 0, 0)
            skewX(-15deg);
    }

    18% {
        opacity: 0.58;
    }

    72% {
        opacity: 0.58;
    }

    100% {
        opacity: 0;

        transform:
            translate3d(620%, 0, 0)
            skewX(-15deg);
    }
}

/* ================================
   PHONE RESPONSIVE
================================ */

@media (max-width: 1080px) {
    .vc-phone-showcase,
    .vc-phone-stage {
        min-height: 505px;
    }

    .vc-phone-showcase {
        margin-top: 8px;
    }

    .vc-phone-stage {
        width: min(425px, 100%);
    }

    .vc-phone-device {
        width: min(238px, 54vw);

        transform:
            rotateX(5deg)
            rotateY(-13deg)
            rotateZ(2deg);
    }
}

@media (max-width: 720px) {
    .vc-phone-showcase,
    .vc-phone-stage {
        min-height: 430px;
    }

    .vc-phone-showcase {
        margin-top: 18px;
    }

    .vc-phone-stage {
        width: min(360px, 100%);
    }

    .vc-phone-device {
        width: min(205px, 62vw);
        max-width: 68%;

        transform:
            rotateX(4deg)
            rotateY(-10deg)
            rotateZ(1.6deg);
    }

    .vc-phone-stage::before {
        width: min(320px, 88%);
    }

    .vc-phone-stage::after {
        bottom: 11px;
        width: 65%;
        height: 40px;
    }

    .vc-phone-ground-shadow {
        bottom: 27px;
        width: 150px;
        height: 23px;
    }
}

@media (max-width: 420px) {
    .vc-phone-showcase,
    .vc-phone-stage {
        min-height: 390px;
    }

    .vc-phone-showcase {
        margin-top: 14px;
    }

    .vc-phone-device {
        width: min(184px, 60vw);

        transform:
            rotateX(3deg)
            rotateY(-8deg)
            rotateZ(1.2deg);
    }

    .vc-phone-ground-shadow {
        width: 133px;
        bottom: 25px;
    }

    .vc-phone-stage::after {
        bottom: 9px;
    }
}

@media (max-width: 360px) {
    .vc-phone-showcase,
    .vc-phone-stage {
        min-height: 370px;
    }

    .vc-phone-device {
        width: min(174px, 59vw);
    }

    .vc-phone-ground-shadow {
        width: 124px;
    }
}

/* Touch devices: static to reduce battery usage */
@media (hover: none), (pointer: coarse) {
    .vc-phone-device {
        animation: none;

        transform:
            rotateX(4deg)
            rotateY(-10deg)
            rotateZ(1.5deg);
    }

    .vc-phone-scan-light {
        display: none;
    }

    .vc-phone-glare {
        opacity: 0.34;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .vc-phone-showcase,
    .vc-phone-device,
    .vc-phone-scan-light::before {
        animation: none !important;
    }

    .vc-phone-device {
        translate: 0 0;
    }

    .vc-phone-device,
    .vc-phone-ground-shadow,
    .vc-phone-stage::before,
    .vc-phone-glare {
        transition: none !important;
    }
}






/* ================================
   FEATURE STRIP
================================ */

.vc-feature-strip {
    padding: 22px 0 70px;
}

.vc-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.vc-strip-grid div {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: color-mix(in srgb, var(--vc-surface) 96%, transparent);
    border: 1px solid var(--vc-border);
    box-shadow: var(--vc-shadow-soft, 0 14px 40px rgba(15, 23, 42, 0.06));
    transition:
        transform var(--vc-transition-fast, 0.22s ease),
        border-color var(--vc-transition-fast, 0.22s ease),
        box-shadow var(--vc-transition-fast, 0.22s ease);
}

.vc-strip-grid div:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--vc-primary) 36%, var(--vc-border));
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.11);
}

.vc-strip-grid i {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 15px;
    background: var(--vc-primary-soft);
    color: var(--vc-primary);
    line-height: 1;
}

.vc-strip-grid span {
    min-width: 0;
    color: var(--vc-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

/* ================================
   COMMON SECTION
================================ */

.vc-section {
    position: relative;
    margin-bottom: 60px;
}

.vc-section-head {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.vc-section-head h2,
.vc-highlight-content h2,
.vc-cta-box h2 {
    margin: 18px 0 0;
    color: var(--vc-text);
    font-size: clamp(30px, 4.5vw, 52px);
    line-height: 1.05;
    font-weight: 950;
    text-wrap: balance;
}

.vc-section-head p,
.vc-highlight-content p,
.vc-cta-box p {
    margin: 18px auto 0;
    color: var(--vc-text-soft);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
}

.vc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* ================================
   FEATURE CARDS
================================ */

.vc-feature {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 30px;
    transition:
        transform var(--vc-transition-normal, 0.24s ease),
        border-color var(--vc-transition-normal, 0.24s ease),
        box-shadow var(--vc-transition-normal, 0.24s ease);
}

.vc-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--vc-primary-soft) 68%, transparent),
        transparent 44%
    );
    opacity: 0;
    transition: opacity var(--vc-transition-normal, 0.25s ease);
}

.vc-feature::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--vc-primary-soft), transparent 70%);
    opacity: 0;
    transition: opacity var(--vc-transition-normal, 0.25s ease);
}

.vc-feature:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--vc-primary) 40%, var(--vc-border));
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.13);
}

.vc-feature:hover::before,
.vc-feature:hover::after {
    opacity: 1;
}

.vc-icon,
.vc-tool-card > i {
    position: relative;
    z-index: 1;
    width: 58px;
    min-width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--vc-primary-soft);
    border: 1px solid color-mix(in srgb, var(--vc-primary) 18%, var(--vc-border));
    color: var(--vc-primary);
    font-size: 23px;
    line-height: 1;
    transition:
        transform var(--vc-transition-normal, 0.25s ease),
        background var(--vc-transition-normal, 0.25s ease);
}

.vc-feature:hover .vc-icon,
.vc-tool-card:hover > i {
    transform: scale(1.07) rotate(-3deg);
    background: color-mix(in srgb, var(--vc-primary-soft) 80%, var(--vc-surface));
}

.vc-feature h3,
.vc-tool-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--vc-text);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.vc-feature p,
.vc-tool-card p {
    position: relative;
    z-index: 1;
    margin: 13px 0 0;
    color: var(--vc-text-soft);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 600;
}

/* ================================
   HIGHLIGHT / RANK
================================ */

.vc-highlight {
    background: color-mix(in srgb, var(--vc-surface-soft) 72%, transparent);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
}

.vc-highlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: center;
    padding: 20px 0;
}

.vc-highlight-content {
    min-width: 0;
}

.vc-highlight-content p {
    max-width: 620px;
    margin-left: 0;
}

.vc-check-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.vc-check-list div {
    min-height: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--vc-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.vc-check-list i {
    color: var(--vc-primary);
    width: 1em;
    min-width: 1em;
    line-height: 1;
}

.vc-rank-card {
    padding: 24px;
    border-radius: 30px;
    background: color-mix(in srgb, var(--vc-surface) 96%, transparent);
    border: 1px solid var(--vc-border);
    box-shadow: var(--vc-shadow);
    min-width: 0;
}

.vc-rank-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--vc-text);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.2;
}

.vc-rank-top i {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--vc-primary-soft);
    color: var(--vc-primary);
    line-height: 1;
}

.vc-rank-row {
    min-height: 68px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: var(--vc-surface-soft);
    border: 1px solid var(--vc-border);
    color: var(--vc-text);
    transition:
        transform var(--vc-transition-fast, 0.22s ease),
        border-color var(--vc-transition-fast, 0.22s ease),
        background var(--vc-transition-fast, 0.22s ease);
}

.vc-rank-row + .vc-rank-row {
    margin-top: 12px;
}

.vc-rank-row:hover,
.vc-rank-row.active {
    transform: translateX(6px);
    border-color: color-mix(in srgb, var(--vc-primary) 38%, var(--vc-border));
    background: color-mix(in srgb, var(--vc-primary-soft) 24%, var(--vc-surface-soft));
}

.vc-rank-row strong {
    color: var(--vc-primary);
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
}

.vc-rank-row span {
    min-width: 0;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
}

.vc-rank-row em {
    color: var(--vc-text-soft);
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

/* ================================
   TOOLS
================================ */

.vc-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.vc-tool-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    min-height: 230px;
    border-radius: 28px;
    background: color-mix(in srgb, var(--vc-surface) 96%, transparent);
    border: 1px solid var(--vc-border);
    box-shadow: var(--vc-shadow-soft, 0 18px 50px rgba(15, 23, 42, 0.07));
    transition:
        transform var(--vc-transition-normal, 0.24s ease),
        border-color var(--vc-transition-normal, 0.24s ease),
        box-shadow var(--vc-transition-normal, 0.24s ease);
}

.vc-tool-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--vc-primary-soft), transparent 70%);
    opacity: 0;
    transition: opacity var(--vc-transition-normal, 0.25s ease);
}

.vc-tool-card:hover {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, var(--vc-primary) 38%, var(--vc-border));
    box-shadow: 0 28px 70px rgba(37, 99, 235, 0.12);
}

.vc-tool-card:hover::after {
    opacity: 1;
}

/* ================================
   FINAL CTA
================================ */

.vc-final-cta {
    position: relative;
}

.vc-cta-box {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 40px 35px;
    text-align: center;
    border-radius: 36px;
    background:
        radial-gradient(circle at 20% 20%, var(--vc-primary-soft), transparent 34%),
        radial-gradient(circle at 80% 85%, var(--vc-primary-soft), transparent 34%),
        color-mix(in srgb, var(--vc-surface) 96%, transparent);
    border: 1px solid var(--vc-border);
}

.vc-cta-box::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--vc-primary) 18%, transparent),
        transparent 38%,
        color-mix(in srgb, var(--vc-primary) 14%, transparent)
    );
    opacity: 0.65;
}

.vc-cta-box > * {
    position: relative;
    z-index: 1;
}

.vc-cta-box h2 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.vc-cta-box p {
    max-width: 620px;
    margin-bottom: 30px;
}

/* ================================
   ANIMATIONS
================================ */

@keyframes vcHomeFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1080px) {
    .vc-hero-grid,
    .vc-highlight-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .vc-hero-content,
    .vc-highlight-content {
        text-align: center;
    }

    .vc-hero-content p,
    .vc-highlight-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .vc-hero-actions,
    .vc-trust-row {
        justify-content: center;
    }

    .vc-check-list {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .vc-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vc-tools-grid,
    .vc-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .vc-hero-content h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .vc-hero-content p {
        font-size: 15px;
    }

    .vc-hero-actions {
        flex-direction: column;
    }

    .vc-hero-actions .vc-btn {
        width: 100%;
    }

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

    .vc-trust-row div {
        width: 100%;
    }

    .vc-strip-grid,
    .vc-grid-3,
    .vc-tools-grid {
        grid-template-columns: 1fr;
    }

    .vc-feature,
    .vc-tool-card {
        min-height: auto;
        padding: 26px;
    }

    .vc-cta-box {
        padding: 42px 22px;
        border-radius: 28px;
    }

    .vc-rank-row {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .vc-rank-row em {
        grid-column: 2;
    }
}


/* ================================
   REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {
    .vc-hero-content,
    .vc-feature,
    .vc-tool-card,
    .vc-strip-grid div,
    .vc-rank-row,
    .vc-trust-row div {
        animation: none;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}