.website-types-section {
    padding: var(--site-pad-y) 0;
    background: #f8f9fa
}

.website-types-header {
    margin-bottom: 40px;
    text-align: center
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: #000
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto
}

.website-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.website-type-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    isolation: isolate;
    opacity: 0;
    transform: translateX(var(--slide-dir)) translateY(40px) rotate(var(--slide-rot));
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    transition-delay: calc(var(--card-index) * 0.12s);
    position: relative;
    /* Ensure positioning context for pseudo-element */
}

.website-type-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    /* 2px Inner Border Width */
    background: #6366F1;
    opacity: 0;
    transition: opacity 0.4s ease;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) exclude;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.website-type-card:hover::after {
    opacity: 1;
}

.website-type-card.reveal {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg);
}

.website-type-card:hover {
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.2);
    border-color: transparent;
}

.card-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(216, 180, 254, 0.4));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.website-type-card:hover .card-border-glow {
    opacity: 1;
}

/* Fluid Organic Decorations */
.card-fluid-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.fluid-shape {
    position: absolute;
    background: linear-gradient(135deg, #6366F1 0%, transparent 80%);
    filter: blur(20px);
    border-radius: 50%;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.1;
}

.fluid-shape:nth-child(1) {
    width: 250px;
    height: 250px;
    top: calc(-100px + var(--shape-y));
    right: calc(-100px + var(--shape-x));
}

.fluid-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: calc(-100px + var(--shape-x));
    left: calc(-100px + var(--shape-y));
    background: linear-gradient(45deg, #D8B4FE 0%, transparent 80%);
}

.website-type-card:hover .fluid-shape {
    opacity: 0.3;
    transform: scale(1.1);
}

/* Corner accents removed as per request */

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
        transform: translate(15px, 15px) rotate(15deg);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.card-number {
    font-family: var(--font-mono, monospace);
    font-size: .75rem;
    color: #6366F1;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 2px 8px;
    border: 1px solid rgba(0, 68, 238, 0.1);
    border-radius: 50px;
    background: rgba(0, 68, 238, 0.02)
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 6px 0;
    color: #111;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 2px;
    background: #6366F1;
    transition: width 0.3s ease;
}

.website-type-card:hover .card-title::after {
    width: 40px;
}

.website-type-card .card-content p {
    color: #5e5e5e !important;
}

.card-content {
    margin-bottom: 12px;
    color: #666;
    font-size: .9rem;
    line-height: 1.4;
    flex-grow: 1
}

.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    margin-top: auto;
    position: relative;
    z-index: 3;
}

.price-tag {
    font-family: var(--font-mono, monospace);
    font-size: 1.1rem;
    font-weight: 800;
    color: #6366F1;
    letter-spacing: -0.02em;
}

.action-group {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap .3s ease
}

.more-text {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    letter-spacing: .05em
}

.action-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    color: #000
}

.action-circle svg {
    width: 16px;
    height: 16px;
    stroke-width: 2
}

.website-type-card:hover .action-circle {
    background: #6366F1;
    color: #fff;
    transform: rotate(0deg)
}

.website-type-card:hover .action-group {
    gap: 14px
}

@media(max-width:768px) {
    .website-types-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 30px
    }

    .website-type-card {
        padding: 20px
    }

    .price-tag {
        font-size: .95rem
    }

    .website-types-section {
        padding: var(--site-pad-y) 0;
    }
}