.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width var(--dur-fast) var(--ease-out-expo),
                height var(--dur-fast) var(--ease-out-expo),
                background var(--dur-fast) ease,
                opacity var(--dur-normal) ease;
}

.cursor-dot.is-active {
    opacity: 1;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width var(--dur-normal) var(--ease-out-expo),
                height var(--dur-normal) var(--ease-out-expo),
                opacity var(--dur-normal) ease;
}

.cursor-ring.is-active {
    opacity: 1;
}

.cursor-ring svg {
    width: 100%;
    height: 100%;
}

.cursor-ring svg circle {
    stroke: var(--indigo);
    fill: rgba(102, 114, 174, 0.06);
    stroke-width: 1;
    transition: stroke var(--dur-fast) ease;
}

.cursor-dot.is-hovering {
    width: 8px;
    height: 8px;
    background: var(--indigo);
}

.cursor-ring.is-hovering {
    width: 48px;
    height: 48px;
}

.cursor-ring.is-hovering svg circle {
    stroke: var(--pink);
}

.cursor-dot.is-story {
    width: 4px;
    height: 4px;
}

.cursor-ring.is-story {
    width: 20px;
    height: 20px;
}

.btn-cta {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--white);
    padding: 14px 36px;
    border: 1px solid var(--pink);
    border-radius: var(--radius-pill);
    background: transparent;
    overflow: hidden;
    letter-spacing: 0.03em;
    transition: color var(--dur-normal) ease, border-color var(--dur-normal) ease;
    z-index: 1;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink), var(--indigo));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
    border-radius: var(--radius-pill);
}

.btn-cta:hover::before {
    transform: scaleX(1);
}

.btn-cta:hover {
    color: var(--white);
    border-color: transparent;
}

.magnetic-wrap {
    display: inline-block;
}

.parallax-card {
    background: rgba(16, 18, 38, 0.6);
    border: 1px solid rgba(200, 132, 158, 0.08);
    border-radius: var(--radius-block);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color var(--dur-normal) ease, box-shadow var(--dur-normal) ease;
    will-change: transform;
    transform-style: preserve-3d;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.features-grid .parallax-card::after,
.testimonials-grid .parallax-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-block);
    background: radial-gradient(
        300px circle at var(--mouse-x) var(--mouse-y),
        rgba(200, 132, 158, 0.08),
        transparent 70%
    );
    opacity: 0;
    transition: opacity var(--dur-normal) ease;
    pointer-events: none;
    z-index: 0;
}

.features-grid .parallax-card:hover::after,
.testimonials-grid .parallax-card:hover::after {
    opacity: 1;
}

.parallax-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -30px;
    width: 80px;
    height: 40px;
    border-radius: var(--radius-block);
    background: var(--block-pink-ghost);
    transform: rotate(-8deg);
    pointer-events: none;
}

.parallax-card:hover {
    border-color: rgba(200, 132, 158, 0.2);
    box-shadow: 0 0 40px rgba(200, 132, 158, 0.06);
}

.parallax-card.system-active {
    border-color: rgba(200, 132, 158, 0.25);
    box-shadow: 0 0 40px rgba(200, 132, 158, 0.08);
}

.parallax-card .card-icon {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.parallax-card .card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.parallax-card .card-text {
    color: var(--gray-light);
    font-size: var(--fs-sm);
    line-height: var(--lh-body);
}

.testimonial-card {
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 0;
    font-family: var(--font-impact);
    font-size: 4rem;
    line-height: 1;
    opacity: 0.4;
    background: linear-gradient(180deg, var(--pink), var(--indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    color: var(--gray-light);
    line-height: var(--lh-body);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.testimonial-text strong {
    color: var(--pink);
    font-weight: var(--fw-semi);
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(200, 132, 158, 0.12);
    border: 1px solid rgba(200, 132, 158, 0.2);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--pink);
    letter-spacing: 0.02em;
}

.testimonial-cite {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--indigo-light);
    font-style: normal;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid > :last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

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

    .testimonials-grid > :last-child {
        grid-column: auto;
        max-width: none;
    }
}

.phase-card {
    background: rgba(16, 18, 38, 0.5);
    border: 1px solid var(--border);
    border-left: 3px solid var(--block-pink-faded);
    border-radius: var(--radius-block);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.phase-card:nth-child(2) {
    border-left-color: var(--pink);
}

.phase-card:nth-child(3) {
    border-left-color: var(--indigo-light);
}

.phase-card--recommended {
    background: rgba(200, 132, 158, 0.08);
    border: 1px solid var(--pink);
    border-left: 3px solid var(--pink);
    box-shadow: 0 0 40px rgba(200, 132, 158, 0.06);
    transform: scale(1.03);
    position: relative;
    z-index: 1;
}

.phase-badge-reco {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--pink);
    padding: 4px 12px;
    border: 1px solid rgba(200, 132, 158, 0.3);
    border-radius: var(--radius-pill);
    background: rgba(200, 132, 158, 0.12);
    letter-spacing: 0.05em;
    animation: badgePulse 3s ease-in-out infinite;
}

.phase-deliverables {
    list-style: none;
    padding: 0;
    margin: var(--space-sm) 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phase-deliverables li {
    font-size: var(--fs-sm);
    color: var(--gray-light);
    line-height: var(--lh-body);
    padding-left: 24px;
    position: relative;
}

.phase-deliverables li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--block-pink);
    border-radius: 3px;
    background: transparent;
}

.phase-deliverables li::after {
    content: '\2713';
    position: absolute;
    left: 2px;
    top: 3px;
    font-size: 10px;
    color: var(--block-pink);
    font-weight: bold;
}

.phase-value {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--indigo);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.phase-number {
    position: absolute;
    bottom: -10px;
    right: var(--space-sm);
    font-family: var(--font-impact);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: var(--fw-extra);
    color: var(--white);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

.phase-title {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--white);
    margin-bottom: 4px;
}

.phase-price {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--pink);
    margin-bottom: var(--space-sm);
}

.phase-cta {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    color: var(--white);
    padding: 10px 24px;
    border: 1px solid var(--pink);
    border-radius: var(--radius-pill);
    background: transparent;
    letter-spacing: 0.03em;
    margin-top: var(--space-md);
    transition: background var(--dur-normal) ease, border-color var(--dur-normal) ease;
    text-align: center;
}

.phase-cta:hover {
    background: rgba(200, 132, 158, 0.12);
}

.phase-card--recommended .phase-cta {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.phase-card--recommended .phase-cta:hover {
    background: var(--pink-light);
    border-color: var(--pink-light);
}

.phase-card::after {
    content: '';
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-accent);
    opacity: 0.5;
}
