@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #e5e7eb;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding-bottom: 0 !important;
}

.sparkle {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 40;
    animation: twinkle linear forwards;
    opacity: 0;
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Parallax Utilities */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-accent {
    color: #38bdf8;
}

.bg-accent {
    background-color: #38bdf8;
}

.logo-swap {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}

.logo-build {
    color: #e5e7eb;
    line-height: 1;
}

.logo-suffix {
    display: inline-flex;
    align-items: baseline;
    margin-left: 2px;
    line-height: 1;
}

.logo-suffix-fixed {
    color: #e5e7eb;
}

.logo-suffix-dynamic {
    position: relative;
    display: inline-block;
    height: 1em;
    overflow: hidden;
    min-width: 4ch;
    padding-right: 0.2ch;
    box-sizing: content-box;
}

.logo-suffix-dynamic::before {
    content: "Snow";
    visibility: hidden;
    display: block;
}

.logo-suffix-word {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    will-change: clip-path, opacity, transform;
    display: inline-flex;
    align-items: baseline;
}

.logo-suffix-snow {
    color: #38bdf8;
    clip-path: inset(0 0 0 0);
    animation: suffixSnow 6s linear infinite;
}

.logo-suffix-now {
    color: #8b5cf6;
    clip-path: inset(0 0 0 100%);
    animation: suffixNow 6s linear infinite;
}

.logo-suffix-now .suffix-s {
    color: #e5e7eb;
}

.logo-suffix-now .suffix-rest {
    color: #8b5cf6;
}

@keyframes suffixSnow {

    0%,
    40% {
        clip-path: inset(0 0 0 0);
    }

    55% {
        clip-path: inset(0 100% 0 0);
    }

    60%,
    90% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes suffixNow {

    0%,
    40% {
        clip-path: inset(0 0 0 100%);
    }

    55% {
        clip-path: inset(0 0 0 0);
    }

    60%,
    90% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-suffix-word {
        animation: none;
        position: static;
        opacity: 1;
        clip-path: none;
        transform: none;
    }

    .logo-suffix-now {
        display: none;
    }

    .logo-suffix-dynamic::before {
        content: none;
    }
}

.glass-nav {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation fallback */
.animate-fade-in-up,
.animate-fade-in-down {
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .animate-fade-in-up {
        animation: fadeInUp 0.8s ease-out forwards;
        opacity: 0;
    }

    .animate-fade-in-down {
        animation: fadeInDown 0.8s ease-out forwards;
        opacity: 0;
    }
}

/* Scroll reveal : commented for glitch
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}*/

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Tilt Card */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
}

.tilt-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(56, 189, 248, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.tilt-card:hover::after {
    opacity: 1;
}

/* Shimmer text */
.text-shimmer {
    background: linear-gradient(to right, #38bdf8 20%, #818cf8 40%, #818cf8 60%, #38bdf8 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Floating background shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -20px);
    }

    50% {
        transform: translate(-15px, 10px);
    }

    75% {
        transform: translate(20px, 15px);
    }
}

/* Magnetic Button */
.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkle Effect Layer */
#sparkle-layer {
    position: fixed;
    inset: 0;
    z-index: 40;
    /* Above background, below text */
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle-fade 3s ease-in-out infinite;
}

@keyframes sparkle-fade {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    10% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.4);
        opacity: 0.6;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}


/* FAQ Section Custom Styles */
.faq-trigger {
    position: relative;
    overflow: hidden;
}

.faq-trigger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.faq-trigger:hover::after {
    transform: translateX(100%);
}

.faq-icon {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.group:hover .faq-icon {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Contact Section Custom Styles */
@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

.animate-shine {
    animation: shine 1.5s infinite;
}

/* Engine Section Custom Styles */
.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Gradient Animation */
.animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 3s ease infinite;
}

@keyframes gradient-x {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Engine Process Flow */
.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 0;
}

.process-pulse {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    transform: translateY(-50%);
    z-index: 1;
    animation: flowPulse 3s infinite linear;
}

@keyframes flowPulse {
    0% {
        left: -10%;
    }

    100% {
        left: 110%;
    }
}

.process-node:hover .node-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
    border-color: rgba(56, 189, 248, 0.8);
}

.process-node:hover .node-title {
    color: #38bdf8;
}

/* Mobile connector line */
@media (max-width: 768px) {
    .process-line {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

    .process-pulse {
        top: -10%;
        left: 50%;
        width: 2px;
        height: 100px;
        background: linear-gradient(180deg, transparent, #38bdf8, transparent);
        transform: translateX(-50%);
        animation: flowPulseVertical 3s infinite linear;
    }
}

@keyframes flowPulseVertical {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Electricity Bar Effect */
.electricity-bar {
    width: 60px;
    height: 2px;
    background: white;
    box-shadow: 0 0 10px #38bdf8, 0 0 20px #38bdf8, 0 0 40px #38bdf8;
    animation: electric-pulse 2s infinite alternate;
    /* Slower, smoother pulse */
    margin: 10px auto;
    /* More vertical spacing */
    border-radius: 999px;
}

@keyframes electric-pulse {
    0% {
        opacity: 0.5;
        width: 100px;
        box-shadow: 0 0 5px #38bdf8, 0 0 10px #38bdf8;
    }

    100% {
        opacity: 1;
        width: 200px;
        box-shadow: 0 0 15px #38bdf8, 0 0 30px #38bdf8, 0 0 50px #fff;
    }
}

/* Swipe Indicator Animation */
.animate-swipe-guide {
    animation: swipe-guide 2s infinite ease-in-out;
}

@keyframes swipe-guide {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

.swipe-glow {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    from {
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
    }

    to {
        box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
    }
}

@media (max-width: 768px) {
    .hero-mobile-stable {
        min-height: 100svh;
        /* stable viewport height on mobile */
        align-items: center !important;
        padding-top: 3rem;
        padding-bottom: 10rem;
    }
}

/* Floating call button - consistent styling across sizes */
#floating-call-btn a {
    background: rgba(6, 12, 20, 0.92) !important;
    color: #e5e7eb !important;
    border: 2px solid rgba(56, 189, 248, 0.85);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.25);
}

#floating-call-btn a:hover {
    background: rgba(56, 189, 248, 0.15) !important;
}

#floating-call-btn a>div {
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.5);
}

/* Mobile: separate floating call button from hero CTA */
@media (max-width: 640px) {
    .hero-mobile-stable h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .hero-mobile-stable .text-xs {
        margin-top: 0.35rem;
    }

    .hero-mobile-stable .space-y-8> :not([hidden])~ :not([hidden]) {
        margin-top: 1rem;
    }

    #floating-call-btn {
        bottom: 1.75rem;
        right: 1rem;
    }
}

/* Mobile: prevent "jumping" from dynamic browser bars (iOS/Android) */
@media (max-width: 768px) {

    /* Tailwind's min-h-screen uses 100vh; override on mobile */
    .min-h-screen {
        min-height: 100svh;
    }
}

/* Prefer dvh when supported (most modern mobile browsers) */
@supports (height: 100dvh) {
    @media (max-width: 768px) {
        .min-h-screen {
            min-height: 100dvh;
        }
    }
}

.church-outreach-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.church-outreach-title {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.church-outreach-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    max-width: 720px;
    line-height: 1.6;
}

.church-outreach-link {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--accent-warm);
    text-decoration: none;
}

.church-outreach-link:hover {
    text-decoration: underline;
}

/* --- Redesigned Pricing Section --- */
.pricing-card {
    background: rgba(17, 24, 39, 0.4);
    /* darker base */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    /* Full accent color on hover */
    box-shadow: 0 20px 40px -15px rgba(56, 189, 248, 0.2);
    /* Blue-ish shadow */
}

/* Add a background glow effect on hover */
.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Featured Card (Business) */
.pricing-card.featured {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
}

.pricing-card.featured:hover {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.2);
}

.pricing-card.featured .popular-badge {
    background: #38bdf8;
    color: #050505;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

@media (max-width: 767px) {
    .pricing-card {
        background: rgba(17, 24, 39, 0.6);
        border: 1px solid rgba(56, 189, 248, 0.35);
        box-shadow: 0 0 22px rgba(56, 189, 248, 0.14);
    }

    .pricing-card .plan-name {
        color: #38bdf8;
    }
}

/* Typography & Elements */
.plan-name {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #38bdf8;
}

.featured .plan-name {
    color: #38bdf8;
}

.price-text {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f9fafb;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* --- Premium Form Styling --- */
.input-premium {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-premium:focus {
    background: rgba(17, 24, 39, 0.7);
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
    outline: none;
}

.input-premium::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Selection Cards (Radio/Checkbox) */
.selection-card {
    display: block;
    position: relative;
    cursor: pointer;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.selection-card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

/* Selected State */
.selection-card:has(input:checked) {
    background: rgba(56, 189, 248, 0.1);
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

/* Check Circle Indicator */
.check-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.selection-card:hover .check-circle {
    border-color: #38bdf8;
}

.selection-card input:checked~.check-circle {
    background: #38bdf8;
    border-color: #38bdf8;
}

.selection-card input:checked~.check-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

/* New Feature Card Styling */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Details/Summary Animation */
details.info-details>summary {
    list-style: none;
    cursor: pointer;
}

details.info-details>summary::-webkit-details-marker {
    display: none;
}

.info-trigger {
    position: absolute;
    top: 0.75rem;
    right: 3rem;
    /* Left of the checkbox */
    opacity: 0.3;
    transition: opacity 0.2s;
    z-index: 10;
}

.selection-card:hover .info-trigger {
    opacity: 0.8;
}

.info-trigger:hover {
    opacity: 1;
    color: #38bdf8;
}

.info-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.5;
}

.check-icon-circle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
}

.check-icon-circle.is-x {
    background: rgba(245, 158, 11, 0.18);
    color: #f59e0b;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #050505;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
    margin-top: auto;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.5);
    border-color: rgba(56, 189, 248, 0.6);
}

.btn-pricing.primary {
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    border-color: rgba(125, 211, 252, 0.6);
    color: #03161f;
    box-shadow: 0 0 26px rgba(125, 211, 252, 0.5);
}


/* --- Start the Build Page Polish --- */

/* Premium Inputs */
.input-premium {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f3f4f6;
    transition: all 0.3s ease;
}

.input-premium:focus {
    background: rgba(5, 5, 5, 0.8);
    border-color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
    outline: none;
}

.input-premium::placeholder {
    color: #6b7280;
}

/* Feature/Section Card */
.feature-card {
    background: rgba(17, 24, 39, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .feature-card {
        padding: 1.5rem;
    }
}

/* Info tooltip (start-the-build) */
.info-details {
    position: relative;
}

.info-details summary {
    list-style: none;
    cursor: pointer;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.6);
    border-radius: 999px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.info-details summary::-webkit-details-marker {
    display: none;
}

.info-details summary:hover {
    color: #e5e7eb;
    border-color: rgba(56, 189, 248, 0.5);
}

.info-panel {
    position: absolute;
    right: 0;
    top: 2.25rem;
    width: min(340px, 80vw);
    padding: 0.75rem 0.9rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 30;
}

.selection-card {
    position: relative;
}

.item-info {
    position: absolute;
    top: 0.75rem;
    right: 2.75rem;
}

.info-details:hover .info-panel,
.info-details[open] .info-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 640px) {
    .info-panel {
        left: 0;
        right: auto;
    }
}

/* Selection Cards (Radio/Checkbox replacements) */
.selection-card {
    cursor: pointer;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.selection-card:hover {
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

/* Checked State for Selection Cards */
.selection-card:has(input:checked) {
    background: rgba(56, 189, 248, 0.1);
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
}

.selection-card .check-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selection-card:has(input:checked) .check-circle {
    border-color: #38bdf8;
    background: #38bdf8;
}

.selection-card:has(input:checked) .check-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #050505;
    border-radius: 50%;
}

/* Custom Checkbox Style */
.checkbox-premium {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-premium:checked {
    background: #38bdf8;
    border-color: #38bdf8;
}

.checkbox-premium:checked::after {
    content: '✓';
    color: #050505;
    font-size: 0.875rem;
    font-weight: 800;
}

.checkbox-premium:hover {
    border-color: rgba(56, 189, 248, 0.5);
}