[x-cloak] { display: none !important; }

/* Hero float animation */
@keyframes hero-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.animate-hero-float {
    animation: hero-float 4s ease-in-out infinite;
}

.animate-hero-float-delay {
    animation: hero-float 4s ease-in-out 1s infinite;
}

/* Checkmark animation */
@keyframes checkmark-draw {
    0% { stroke-dashoffset: 48; }
    100% { stroke-dashoffset: 0; }
}

@keyframes checkmark-scale {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.checkmark-circle {
    animation: checkmark-scale 0.5s ease-out forwards;
}

.checkmark-path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmark-draw 0.4s ease-out 0.3s forwards;
}

/* Card hover effects */
.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(30, 58, 138, 0.15);
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(59, 130, 246, 0.2);
    border-color: #3B82F6;
}

/* Phone selector */
.phone-selector-dropdown {
    max-height: 240px;
    overflow-y: auto;
}

.phone-selector-option.highlighted {
    background-color: #EFF6FF;
    color: #1E3A8A;
}

.phone-selector-option.selected {
    background-color: #1E3A8A;
    color: white;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Form focus ring consistency */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Storefront — products */
.store-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #1e40af 100%);
}

.store-hero--compact .store-hero-inner {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
}

@media (min-width: 640px) {
    .store-hero--compact .store-hero-inner {
        padding-top: 1.75rem;
        padding-bottom: 2rem;
    }
}

.store-hero--compact .store-hero-stats {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.store-products-main {
    flex: 1;
    min-height: calc(100vh - 4rem - 11rem);
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
    .store-products-main {
        min-height: calc(100vh - 4rem - 10rem);
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }
}

.product-card-premium {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(30, 58, 138, 0.22);
    border-color: rgba(59, 130, 246, 0.4);
}

.spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
}

.plan-tab-active {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.pricing-card-glow {
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1), 0 20px 50px -20px rgba(30, 58, 138, 0.25);
}

.filter-panel {
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
}

/* Homepage */
.home-hero-mesh {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #2563eb 70%, #1e40af 100%);
}

.home-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3b82f6;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
}

.pricing-card-popular {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 25px 50px -12px rgba(30, 58, 138, 0.2);
}

.testimonial-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(30, 58, 138, 0.12);
}

.home-cta-band {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
}
