/* ========================================
   UX IMPROVEMENTS - Micro-SaaS Best Practices
   Simple Yet Powerful Design System
   ======================================== */

/* ==================== HERO IMPROVEMENTS ==================== */

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    padding: 80px 0 60px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 24px 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Enhanced Input Group */
/* ========================================
   ENHANCED HERO INPUT SECTION V2
   Top-notch UX/UI Design
   ======================================== */

.hero-input-group {
    margin: 40px auto 0;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Value Badges Above Input */
.input-value-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.value-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.08), rgba(16, 185, 129, 0.08));
    border: 1.5px solid rgba(10, 132, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
}

.value-badge:nth-child(1) {
    animation-delay: 0.7s;
}

.value-badge:nth-child(2) {
    animation-delay: 0.8s;
}

.value-badge:nth-child(3) {
    animation-delay: 0.9s;
}

.value-badge svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.value-badge:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.25);
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.12), rgba(16, 185, 129, 0.12));
}

/* Pulse Animation for First Badge */
.pulse-animation {
    animation: badgePulse 2s ease-in-out infinite, fadeInUp 0.6s ease-out 0.7s both;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(10, 132, 255, 0);
    }
}

.hero-input-container {
    margin-bottom: 24px;
    position: relative;
}

/* Enhanced Input Wrapper V2 */
.input-wrapper-enhanced-v2 {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(10, 132, 255, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Animated Glow Effect */
.input-glow-effect {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), #10b981, var(--primary));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.input-wrapper-enhanced-v2:hover .input-glow-effect,
.input-wrapper-enhanced-v2:focus-within .input-glow-effect {
    opacity: 1;
}

.input-wrapper-enhanced-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(10, 132, 255, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.input-wrapper-enhanced-v2:focus-within {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 60px rgba(10, 132, 255, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper */
.input-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.input-icon-enhanced-v2 {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.input-wrapper-enhanced-v2:focus-within .input-icon-enhanced-v2 {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-hover);
}

/* Input Content Area */
.input-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.url-input-enhanced-v2 {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 17px;
    padding: 4px 12px;
    outline: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    width: 100%;
}

.url-input-enhanced-v2::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Helper Text */
.input-helper-text {
    font-size: 12px;
    color: var(--text-primary);
    padding: 0 12px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-wrapper-enhanced-v2:focus-within .input-helper-text,
.input-wrapper-enhanced-v2:hover .input-helper-text {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced CTA Button V2 */
.cta-button-hero-v2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(10, 132, 255, 0.4);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button-hero-v2:hover::before {
    opacity: 1;
}

.cta-button-hero-v2:hover {
    transform: translateX(4px) scale(1.05);
    box-shadow: 0 8px 32px rgba(10, 132, 255, 0.5);
}

.cta-button-hero-v2:active {
    transform: translateX(2px) scale(1.02);
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.button-main-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.button-sub-text {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.button-icon-animated {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.cta-button-hero-v2:hover .button-icon-animated {
    transform: translateX(4px);
}

/* Floating Particles Effect - Ambient Animation */
.hero-input-container::before,
.hero-input-container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-input-container::before {
    background: radial-gradient(circle, rgba(10, 132, 255, 0.15) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation: float1 4s ease-in-out infinite;
}

.hero-input-container::after {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation: float2 5s ease-in-out infinite;
}

.hero-input-container:hover::before,
.hero-input-container:hover::after {
    opacity: 1;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

/* Success State Animation (when input has value) */
.url-input-enhanced-v2:valid:not(:placeholder-shown) ~ .input-icon-wrapper .input-icon-enhanced-v2 {
    color: #10b981;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Keep old classes for backward compatibility */
.input-wrapper-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.input-wrapper-enhanced:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.input-icon-enhanced {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    margin-left: 12px;
    flex-shrink: 0;
}

.url-input-enhanced {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 12px 8px;
    outline: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.url-input-enhanced::placeholder {
    color: #9ca3af;
}

.cta-button-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    font-family: 'Inter', sans-serif;
}

.cta-button-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.cta-button-hero:active {
    transform: translateY(0);
}

.cta-button-hero svg {
    width: 18px;
    height: 18px;
}

.hero-trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 16px;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.trust-divider {
    color: #d1d5db;
}

/* ==================== AUTH IMPROVEMENTS ==================== */

.auth-welcome {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 32px 0;
}

.auth-hint {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 16px;
}

/* ==================== LOADING STATES ==================== */

.loading-enhanced {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner-enhanced {
    width: 60px;
    height: 60px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

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

.loading-progress {
    background: #f3f4f6;
    height: 8px;
    border-radius: 100px;
    overflow: hidden;
    max-width: 400px;
    margin: 24px auto;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    border-radius: 100px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.loading-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* GTM Tips Container - Shows insights while loading */
.gtm-tips-container {
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gtm-tip-icon {
    font-size: 32px;
    flex-shrink: 0;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gtm-tip-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary, #1e293b);
    font-weight: 500;
}

@media (prefers-color-scheme: dark) {
    .gtm-tips-container {
        background: linear-gradient(135deg, rgba(10, 132, 255, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
        border-color: rgba(10, 132, 255, 0.3);
    }
    
    .gtm-tip-text {
        color: #e2e8f0;
    }
}

@media (max-width: 640px) {
    .gtm-tips-container {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
    
    .gtm-tip-icon {
        font-size: 28px;
    }
    
    .gtm-tip-text {
        font-size: 13px;
    }
}

.loading-steps {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.loading-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.loading-step.active {
    opacity: 1;
}

.loading-step.complete {
    opacity: 1;
}

.loading-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-tertiary);
}

.loading-step-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.loading-step.active .loading-step-icon {
    background: var(--primary);
    color: white;
    animation: pulse 2s infinite;
}

.loading-step.complete .loading-step-icon {
    background: #10b981;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.loading-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==================== RESULT CARDS IMPROVEMENTS ==================== */

.result-card-enhanced {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.result-card-enhanced:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

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

.result-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.result-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.result-card-actions {
    display: flex;
    gap: 8px;
}

.result-card-action {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.result-card-action:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary);
}

.result-card-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Collapsible cards */
.result-card-enhanced.collapsed .result-card-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== DASHBOARD IMPROVEMENTS ==================== */

.dashboard-stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 8px 0;
}

.stat-label {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.stat-progress {
    margin-top: 16px;
}

.stat-progress-bar {
    height: 8px;
    background: #f3f4f6;
    border-radius: 100px;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    border-radius: 100px;
    transition: width 1s ease;
}

/* Progress ring (circular) */
.progress-ring {
    width: 120px;
    height: 120px;
    margin: 16px auto;
}

.progress-ring-circle {
    transition: stroke-dashoffset 1s ease;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* ==================== EMPTY STATES ==================== */

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ==================== NOTIFICATION IMPROVEMENTS ==================== */

.notification-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.notification-enhanced {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid var(--primary);
}

.notification-enhanced.success {
    border-left-color: #10b981;
}

.notification-enhanced.error {
    border-left-color: #ef4444;
}

.notification-enhanced.warning {
    border-left-color: #f59e0b;
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.notification-message {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}

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

/* ==================== MOBILE OPTIMIZATIONS ==================== */

/* Extra Small Devices - Fine-tune badges */
@media (max-width: 480px) {
    .input-value-badges {
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .value-badge {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .value-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .input-wrapper-enhanced-v2 {
        padding: 14px;
    }
    
    .url-input-enhanced-v2 {
        font-size: 15px;
    }
    
    .button-main-text {
        font-size: 15px;
    }
    
    .button-sub-text {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    /* V2 Responsive */
    .input-value-badges {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .value-badge {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .value-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .input-wrapper-enhanced-v2 {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }
    
    .input-icon-wrapper {
        display: none; /* Hide icon on mobile to save space */
    }
    
    .input-content {
        width: 100%;
    }
    
    .url-input-enhanced-v2 {
        font-size: 16px;
        padding: 8px 4px;
    }
    
    .input-helper-text {
        opacity: 1;
        transform: translateY(0);
        font-size: 11px;
        white-space: normal;
    }
    
    .cta-button-hero-v2 {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .button-text {
        align-items: center;
    }
    
    /* Old version responsive */
    .input-wrapper-enhanced {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-signals {
        flex-direction: column;
        gap: 8px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .notification-stack {
        left: 12px;
        right: 12px;
        top: 12px;
        max-width: none;
    }
    
    .loading-steps {
        flex-direction: column;
    }
}

/* ==================== ACCESSIBILITY ==================== */

.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;
}

/* Focus visible styles */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ==================== PRINT STYLES ==================== */

@media print {
    .hero-badge,
    .cta-button-hero,
    .hero-trust-signals,
    .result-card-actions,
    header,
    footer {
        display: none;
    }
    
    .result-card-enhanced {
        page-break-inside: avoid;
    }
}
