:root {
    --pink-gradient: linear-gradient(135deg, #E5008E 0%, #FF2EAD 100%);
    --soft-gradient: linear-gradient(180deg, #FFFFFF 0%, #FDF2F8 100%);
    --glass-white: rgba(255, 255, 255, 0.85);
}

.halftone-pattern {
    background-image: radial-gradient(rgba(229, 0, 142, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

.plan-card-tall {
    min-height: 640px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(229, 0, 142, 0.08);
    background: white;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.plan-card-tall:hover {
    transform: translateY(-10px) rotateY(-3deg) rotateX(2deg);
    box-shadow: 0 40px 80px -20px rgba(229, 0, 142, 0.15);
    border-color: rgba(229, 0, 142, 0.4);
}

.plan-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(30%) brightness(1.1) sepia(20%) hue-rotate(-30deg);
    opacity: 0.6;
}

.plan-card-tall:hover .plan-image-bg {
    transform: scale(1.1);
    filter: brightness(0.4) grayscale(0%);
    opacity: 1;
}

.plan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(253, 242, 248, 0.6) 0%, 
        rgba(253, 242, 248, 0.85) 40%,
        rgba(255, 255, 255, 1) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.plan-card-tall:hover .plan-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.plan-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
    color: var(--charcoal);
    transition: all 0.5s ease;
}

.plan-card-tall:hover .plan-content {
    color: white;
}

.plan-card-tall:hover .text-charcoal,
.plan-card-tall:hover .text-charcoal\/60,
.plan-card-tall:hover .text-charcoal\/70,
.plan-card-tall:hover .text-charcoal\/80 {
    color: white;
}

.glass-pricing {
    background: rgba(229, 0, 142, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 0, 142, 0.1);
    padding: 1.25rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.plan-card-tall:hover .glass-pricing {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(229, 0, 142, 0.15), transparent);
}

.parallax-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hosting_parallax.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    filter: brightness(0.9) saturate(0.8);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(20, 0, 10, 0.92) 0%, 
        rgba(60, 0, 35, 0.85) 50%, 
        rgba(20, 0, 10, 0.92) 100%);
    z-index: 1;
}

.plan-card-featured {
    border: none !important;
    box-shadow: 0 0 35px rgba(229, 0, 142, 0.25), 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.plan-card-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 3px;
    background: linear-gradient(135deg, #E5008E, #FF2EAD, #FFD2E9, #E5008E);
    background-size: 200% 200%;
    animation: border-animation 4s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
}

@keyframes border-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


