/* VPN Comparison - Main Styles */
/* Version 2.0.0 - Production */

/* No-JS fallback styles */
.no-js .skeleton {
    display: none;
}

.no-js .vpn-card {
    opacity: 1 !important;
    transform: none !important;
}

/* Skip to main link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-600);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--radius-lg) 0;
    font-weight: 600;
}

.skip-to-main:focus {
    top: 0;
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
}

/* Hero Content */
.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.75;
}

/* VPN Card Tiers - Visual Hierarchy */
.vpn-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid transparent;
    overflow: visible;
    opacity: 0;
    transform: translateY(20px);
}

.vpn-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Gold Tier (Best Choice) */
.vpn-card--gold {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.vpn-card--gold::before {
    content: '🏆 Best Choice';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

/* Silver Tier */
.vpn-card--silver {
    border-color: var(--silver);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.vpn-card--silver::before {
    content: '⭐ Great Value';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--silver) 0%, var(--silver-dark) 100%);
    color: #000;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
}

/* Bronze Tier */
.vpn-card--bronze {
    border-color: var(--bronze);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
}

.vpn-card--bronze::before {
    content: '💎 Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
}

@media (max-width: 480px) {
    .vpn-card--gold::before,
    .vpn-card--silver::before,
    .vpn-card--bronze::before {
        font-size: 0.6875rem;
        padding: 0.375rem 0.625rem;
    }
}

.vpn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.vpn-card--gold:hover {
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.35);
}

/* Card Header */
.vpn-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-sm);
    margin-top: 0.5rem;
}

.vpn-card__info {
    flex: 1;
    min-width: 0;
}

.vpn-card__logo {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.vpn-card__rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 0.8125rem;
    color: var(--neutral-600);
}

.discount-badge {
    background: linear-gradient(135deg, var(--danger-500), #dc2626);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
}

/* Features Grid */
.vpn-card__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--neutral-50);
    border-radius: var(--radius-xl);
}

@media (max-width: 480px) {
    .vpn-card__features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: var(--spacing-sm);
    }
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.feature__icon {
    width: 18px;
    height: 18px;
    color: var(--success-600);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Specs */
.vpn-card__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.spec {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid #e5e5e5;
    transition: all var(--transition-base);
}

.spec:hover {
    border-color: var(--primary-500);
    transform: translateY(-2px);
}

.spec__value {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.spec__label {
    font-size: 0.6875rem;
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Price Section */
.vpn-card__price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid #e5e5e5;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .vpn-card__price-section {
        flex-direction: column;
        align-items: stretch;
    }
}

.price-info {
    flex: 1;
    min-width: 0;
}

.price {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1;
}

.price__old {
    font-size: 1rem;
    color: var(--neutral-600);
    text-decoration: line-through;
    margin-right: var(--spacing-sm);
}

.price__currency {
    font-size: 1rem;
    font-weight: 600;
}

.price__period {
    font-size: 0.8125rem;
    color: var(--neutral-600);
    display: block;
    margin-top: var(--spacing-sm);
}

/* Enhanced CTA Button */
.cta-button {
    background: linear-gradient(135deg, #0ea5e9 0%, #7dd3fc 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    min-height: 48px;
    min-width: 44px;
}

/* Pulsing animation for top-3 */
.cta-button--pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    }
    50% {
        box-shadow: 0 10px 35px rgba(14, 165, 233, 0.5), 0 0 0 4px rgba(14, 165, 233, 0.2);
    }
}

/* Gold tier CTA */
.cta-button--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

@keyframes pulsegold {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6), 0 0 0 4px rgba(255, 215, 0, 0.3);
    }
}

.cta-button--gold.cta-button--pulse {
    animation: pulsegold 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Shimmer effect on hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.5);
}

.cta-button--gold:hover {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

@media (max-width: 640px) {
    .cta-button {
        width: 100%;
    }
}

/* Section styling */
.comparison-section {
    padding: clamp(2.5rem, 6vw, 4rem) var(--spacing-lg);
    background: linear-gradient(135deg, #f0f9ff 0%, #fdf4ff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.section-header__subtitle {
    font-size: 1rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

.vpn-grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
}

/* Focus states */
*:focus-visible {
    outline: 3px solid var(--primary-500);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   NEW COMPONENTS - CRO & UX IMPROVEMENTS
   ======================================== */

/* Hero Section Upgrades */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.badge-icon {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero__cta {
    display: inline-block;
    background: white;
    color: var(--primary-600);
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--transition-base);
    min-height: 56px;
    display: inline-flex;
    align-items: center;
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .hero__badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* Exit-Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.exit-popup__content {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #6b7280;
}

.exit-popup__close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
    color: #374151;
}

.exit-popup__emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1.2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.exit-popup__title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--neutral-900);
    line-height: 1.2;
}

.exit-popup__text {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.exit-popup__form {
    margin-bottom: 1rem;
}

.exit-popup__input {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
    min-height: 56px;
}

.exit-popup__input:focus {
    border-color: var(--primary-500);
    outline: none;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.exit-popup__button {
    width: 100%;
    background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
    color: white;
    padding: 1.125rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 56px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.exit-popup__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.exit-popup__button:active {
    transform: translateY(0);
}

.exit-popup__guarantee {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fafafa, #f3f4f6);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    line-height: 1.4;
}

.faq-item p {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    text-align: center;
    background: white;
}

.trust-heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-500);
    margin-bottom: 2rem;
    font-weight: 600;
}

.featured-logos {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    margin-bottom: 3rem;
    align-items: center;
}

.featured-logo {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.featured-logo:hover {
    opacity: 1;
}

.featured-logo strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-400);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1.5px solid #86efac;
    border-radius: 50px;
    color: #166534;
    font-size: 0.9375rem;
    font-weight: 600;
    min-height: 48px;
}

.security-badge svg {
    color: #16a34a;
}

/* Social Proof Notification */
.social-proof-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 350px;
    z-index: 1000;
    animation: slideInLeft 0.5s ease-out;
    border-left: 4px solid var(--primary-500);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.notification-text {
    font-size: 0.875rem;
    line-height: 1.5;
}

.notification-text strong {
    display: block;
    color: var(--neutral-900);
    font-weight: 600;
}

.notification-time {
    display: block;
    color: var(--neutral-500);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .social-proof-notification {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* Touch Target Improvements - Mobile First */
button,
a.cta-button,
.btn,
.exit-popup__close,
.exit-popup__input,
.exit-popup__button,
.hero__cta {
    min-height: 48px;
    min-width: 48px;
}

.discount-badge {
    padding: 0.625rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.spec {
    min-height: 72px;
}

.feature {
    min-height: 48px;
}

/* Desktop overrides */
@media (min-width: 768px) {
    .discount-badge {
        padding: 0.375rem 0.75rem;
        min-height: auto;
    }
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid #0ea5e9;
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-to-main:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.cta-button:focus-visible,
.exit-popup__button:focus-visible,
.hero__cta:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.5);
}

/* Countdown Timer (will be added by JS) */
.urgency-bar {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
    }
}

.urgency-icon {
    font-size: 1.5rem;
    animation: swing 1.2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

.urgency-text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.urgency-text strong {
    color: #92400e;
    font-weight: 700;
}

.countdown {
    font-family: 'Courier New', monospace;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #92400e;
    margin-left: 0.5rem;
    letter-spacing: 0.5px;
}

.countdown span {
    display: inline-block;
    min-width: 26px;
    text-align: center;
}

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3.footer-heading {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #7dd3fc;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-disclaimer {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    color: #fef3c7;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: #fbbf24;
}

.footer-copyright {
    text-align: center;
    margin: 1.5rem 0;
}

.footer-copyright p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.footer-tagline {
    color: #64748b;
    font-size: 0.8125rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: #94a3b8;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(226, 232, 240, 0.05);
}

.footer-social a:hover {
    color: #7dd3fc;
    background: rgba(125, 211, 252, 0.1);
    transform: translateY(-3px);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column h3.footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.625rem;
    }
    
    .footer-disclaimer {
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

